如何修改mellanox网卡的xoff threshold和xon threshold
时间: 2024-03-05 18:52:44 浏览: 185
mellanox网卡驱动.zip
要修改Mellanox网卡的XOFF threshold和XON threshold,可以使用`ethtool`命令。这里有一些示例命令:
1. 查看当前的XOFF threshold和XON threshold:
```
ethtool -a eth0
```
2. 将XOFF threshold设置为8192,将XON threshold设置为8192:
```
ethtool -A eth0 rx on tx on rx-flow-control 8192 tx-flow-control 8192
```
3. 将XOFF threshold设置为256,将XON threshold设置为512:
```
ethtool -A eth0 rx on tx on rx-flow-control 256 tx-flow-control 512
```
请根据你的需要调整这些值。
阅读全文