Linux

具有 BCM57800 NIC (bnx2x) 的 Debian 7.10 伺服器上的巨型幀 (mtu 9000)

  • July 21, 2016

我正在使用 Broadcom Corporation NetXtreme BCM57800 1/10 Gigabit ethernet 在 Debian 7.10 下的 2 台伺服器上工作。

我對兩台伺服器都做了以下操作:

ethtool -g eth0 Ring parameters for eth0: Pre-set maximums: RX: 4078 RX Mini: 0 RX Jumbo: 0 TX: 4078 Current hardware settings: RX: 4078 RX Mini: 0 RX Jumbo: 0 TX: 4078

我將 mtu 更改為 9000: ifconfig eth0 mtu 9000

ifconfig eth0 值已更改:

UP BROADCAST RUNNING MULTICAST MTU:9000 Metric:1

但是當我嘗試發送 9000 字節數據包時它不起作用: ping -M do -s 8972 10.0.0.3 PING 10.0.0.3 (10.0.0.3) 8972(9000) bytes of data. ^C --- 10.0.0.3 ping statistics --- 13 packets transmitted, 0 received, 100% packet loss, time 12095ms

但是它仍然可以處理 1500 字節的數據包:

ping -M do -s 1472 10.0.0.3 PING 10.0.0.3 (10.0.0.3) 1472(1500) bytes of data. 1480 bytes from 10.0.0.3: icmp_seq=1 ttl=64 time=0.054 ms 1480 bytes from 10.0.0.3: icmp_seq=2 ttl=64 time=0.041 ms

網卡韌體:

/sbin/modinfo bnx2x filename: /lib/modules/3.16.0-4-amd64/kernel/drivers/net/ethernet/broadcom/bnx2x/bnx2x.ko firmware: bnx2x/bnx2x-e2-7.8.19.0.fw firmware: bnx2x/bnx2x-e1h-7.8.19.0.fw firmware: bnx2x/bnx2x-e1-7.8.19.0.fw version: 1.78.19-0 license: GPL description: Broadcom NetXtreme II BCM57710/57711/57711E/57712/57712_MF/57800/57800_MF/57810/57810_MF/57840/57840_MF Drive

我在這裡錯過了什麼嗎?

很可能交換機沒有讓數據包通過。一些 pcaps 也可能在診斷上有用。

引用自:https://serverfault.com/questions/791104