ethtool 配置物理接口或绑定的优先级?

ethtool 配置物理接口或绑定的优先级?

如果我有一个物理接口(例如)将large-receive-offload配置为“off”,并且该接口是将large-receive-offload设置为“on”的mode4绑定组的一部分,那么哪个接口将优先?在此配置中,large-receive-offload 实际上是打开还是关闭?

bond0 配置

[me@host1 ~]$ ethtool -k bond0 | grep large
large-receive-offload: on

eth0配置

[me@host1 ~]$ ethtool -k eth0 | grep large
large-receive-offload: off

eth0 接口配置(从属到绑定)

[me@host1 ~]$ cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
USERCTL="no"
MASTER="bond0"
SLAVE="yes"
BOOTPROTO="none"
ONBOOT="yes

债券配置

[me@host1 ~]$ cat /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE="bond0"
USERCTL="no"
TYPE="Bond"
BOOTPROTO="none"
ONBOOT="yes"
IPADDR="10.0.0.100"
NETMASK="255.255.255.0"
BONDING_OPTS="mode=4 xmit_hash_policy=layer3+4 updelay=0 lacp_rate=1 ad_select=0 "

答案1

并非所有 tx 卸载功能都像 bond 和 vlan 一样从从属设备复制到上层设备。 Bond 设备继承了从设备的一些 tx 卸载功能。 Vlan 设备继承了 bond 的一些 tx 卸载功能。

来源,红帽文章。

相关内容