ETH_TXQ_FLAGS_NOOFFLOADS*/, }; 另: /* 修订接口默认配置,如启用TX VLAN OFFLOAD */ struct rte_eth_dev_info dev_info; struct rte_eth_txconf *txconf; rte_eth_dev_info_get (port_id, &dev_info); txconf = &dev_info.default_txconf; /* Enable vlan offload */ txconf->txq_flags ...
> Previously I've mentioned that both tx-vlan-offload AND rx-vlan-offload > should be switched off in order to get ping over VLAN work again. > It appears that switching tx-vlan-offload is enough, and after switching > it off ping over VLAN works again. > > root@ng-bond1:~# etht...
The other side looks identical except IP-addresses (they both end with '1'). Workaround: disable tx-vlan-offload and and rx-vlan-offload: ethtool -K enp132s0f0 tx-vlan-offload off rx-vlan-offload off Checked with CISCO NEXUS 7000 and NEXUS 9000 as remote counterparts - they behave iden...
Workaround: disable tx-vlan-offload and and rx-vlan-offload: ethtool -K enp132s0f0 tx-vlan-offload off rx-vlan-offload off Checked with CISCO NEXUS 7000 and NEXUS 9000 as remote counterparts - they behave identically to described above. ...