2019-05-30发表2023-03-17更新网络2 分钟读完 (大约286个字)解决服务器千兆网卡显示只有百兆速度1234567891011121314151617181920212223242526272829303132333435363738394041<!--more-->ethtool eno1Settings for eno1: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: Symmetric Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: Symmetric Advertised auto-negotiation: Yes Speed: 100Mb/s# 使用命令查看时,虽然显示是千兆网卡,但Speed只有100Mb/sethtool -s eno1 speed 1000# 使用上面命令可能将网卡重新设置为1000Mb/svim /etc/sysconfig/network-scripts/ifcfg-eno1ETHTOOL_OPTS="speed 1000 duplex full autoneg off"# 在网卡配置中加入上面一行,可以强制将网卡设置为千兆。==============================================================================================ethtool命令的简单使用ethtool ethX# 查看网卡信息ethtool –h # 显示ethtool的命令帮助(help)ethtool –i ethX # 查询ethX网口的相关信息ethtool –d ethX # 查询ethX网口注册性信息ethtool –r ethX # 重置ethX网口到自适应模式ethtool –S ethX # 查询ethX网口收发包统计ethtool –s ethX [speed 10|100|1000] [duplex half|full] [autoneg on|off] [port tp|aui|bnc|mii] # [speed 10|100|1000] 设置网口速率10/100/1000M# [duplex half|full] 设置网口半/全双工# [autoneg on|off] 设置网口是否自协商# [port tp|aui|bnc|mii] 设置网口类型 解决服务器千兆网卡显示只有百兆速度https://python0.netlify.app/2019/05/30/解决服务器千兆网卡显示只有百兆速度/作者John Doe发布于2019-05-30更新于2023-03-17许可协议#网络问题解决