查询网卡:
ip a|grep 本机ip地址
输出示例:
inet 192.168.5.22/16 brd 192.168.255.255 scope global noprefixroute ens32
查看网卡当前mtu值("ens32"替换为上方命令1查询出的最后一项)
ifconfig ens32|grep mtu
修改网卡mtu: ("ens32"替换为上方命令1查询出的最后一项)
ip link set dev ens32 mtu 1300