setup the MTU for ubuntu

临时修改

  • 查看网卡信息
ifconfig

该命令会打印出所有的网卡信息, 根据打印出的信息, 找到需要设置的网卡进行设置。

  • 临时设置网卡 mtu
ifconfig eth0 mtu 9000
  • 检查效果
    使用 ifconfig eth0 命令, 根据打印出的信息, 查看修改的效果。

永久的修改

修改配置文件 /etc/network/interfaces ,增加一行, 保存退出

mtu 1280
  • 重启网络
/etc/init.d/networking restart
  • 查看效果
ifconfig eth0

相关资料

添加新评论