在工作的时候,遇到一个现象,网口插上网线,对端是PC,用ethtool查看link状态是yes,网络速率和各项信息都是正常的,但是无法ping通。在使用miitool -r eth0 后网络还是无法ping通,使用 ethtool -r eth0 或者 ethtool -s eth0 autteng on 就可以ping通了,我就是很疑惑,这两个命令之间有什么区别,我看网上说的都是重置网络到自协商模式,为什么miitool不起作用,ethtool起作用了,请各位辛苦答疑解惑一下
-r eth0
-s eth0
上边两个参数意思是对第一个网口ping
如果不加,不知道ping哪个网卡呢
在高并发应用场景下,Linux 虚拟机可能会出现丢包现象,可以通过调整网卡的 Buffer size 来缓解此问题。
本文使用 ethtool 来查看和修改 RX/TX 值来获取更好性能,以下为参考示例:
在 ethtool 配置文件中可以看到,RX/TX 值的单位是 section size:
shell复制
#define NETVSC_SEND_SECTION_SIZE 6144
#define NETVSC_RECV_SECTION_SIZE 1728
查看当前网卡 RX/TX 参数:
shell复制
[root@centos75 ~]# ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX: 18811
RX Mini: 0
RX Jumbo: 0
TX: 2560
Current hardware settings:
RX: 10486
RX Mini: 0
RX Jumbo: 0
TX: 192
重要
Pre-set maximums 中的 RX/TX 值为该网卡的 Buffer size 最大值;
Current hardware settings 中 RX/TX 值代表该网卡当前的 Buffer size 大小。
所以,设置的 Current hardware settings 的 RX/TX 值必须在 Pre-set maximums 的限制之内。
调整 RX/TX 参数:
shell复制
[root@centos75 ~]# ethtool -G eth0 rx 18000 tx 2500
查看调整后的 RX/TX 参数:
shell复制
[root@centos75 ~]# ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX: 18811
RX Mini: 0
RX Jumbo: 0
TX: 2560
Current hardware settings:
RX: 18000
RX Mini: 0
RX Jumbo: 0
TX: 2500
由于重启之后修改会失效,您可以在 rc.local 中设置为开机自动运行修改命令,参考如下:
添加可执行权限:
shell复制
[root@centos75 ~]# chmod -x /etc/rc.d/rc.local
添加修改命令,并保存:
shell复制
[root@centos75 ~]# vi /etc/rc.d/rc.local
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.
touch /var/lock/subsys/local
ethtool -G eth0 rx 18000 tx 2500
重启并验证:
shell复制
[root@centos75 ~]# ethtool -g eth0
Ring parameters for eth0:
Pre-set maximums:
RX: 18811
RX Mini: 0
RX Jumbo: 0
TX: 2560
Current hardware settings:
RX: 18000
RX Mini: 0
RX Jumbo: 0
TX: 2500