如何仅在一个网络接口上启用巨型帧?


12

我有一台带有存储网络的服务器,该服务器当前支持巨型帧。

我只想让eth1拥有这种能力。我要更改哪些设置,什么是测试配置的最佳方法?

Answers:


16

问题的表达方式是好像有一种方法可以全局启用它。我不知道该方法,这是我将其打开的方法:

sudo ip link set eth1 mtu 9000

或者(因为这是服务器),如果您使用的是/etc/network/interfaces配置,则可以像下面这样简单地将其粘贴在最后:

auto eth1
iface eth1 inet static
        address ...
        netmask ...
        network ...
        broadcast ...
        gateway ...
        dns-nameservers ...
        mtu 9000

我建议您ip 先将 MTU速率测试为,然后再坚持/etc/network/interfaces。哦,sudo service networking restart如果您仅在此处使用第二种方法,则需要运行。

您可以使用以下命令验证配置ip

ip link show eth1

诸如此类的各种事情traceroute --mtu可以衡量和测试该MTU。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.