CentOS 修改网卡队列长度

前端之家收集整理的这篇文章主要介绍了CentOS 修改网卡队列长度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  • 查看网卡配置
    ethtool -g eth1

  • 修改网卡配置
    ethtool -G eth1 rx 4096
    ethtool -G eth1 tx 4096

这样,对于流量非常重的网卡会稍微好点。具体效果还在观察。

[root@localhost ~]# ethtool -g eth1
Ring parameters for eth1:
Pre-set maximums:
RX:     4096
RX Mini:    0
RX Jumbo:   0
TX:     4096
Current hardware settings:
RX:     1024
RX Mini:    0
RX Jumbo:   0
TX:     512

[root@localhost ~]# ethtool -G eth1 rx 4096
[root@localhost ~]# ethtool -G eth1 tx 4096
[root@localhost ~]# 
[root@localhost ~]# 
[root@localhost ~]# ethtool -g eth1
Ring parameters for eth1:
Pre-set maximums:
RX:     4096
RX Mini:    0
RX Jumbo:   0
TX:     4096
Current hardware settings:
RX:     4096
RX Mini:    0
RX Jumbo:   0
TX:     4096
原文链接:/centos/379408.html

猜你在找的CentOS相关文章