Linux下网卡混淆时如何辨别
操作方法
- 01
linux有个自带的工具,检查网口的情况:ethtool 帮住可以通过man ethtool 来查看具体帮助 查看是否安装了这个工具: [root@linux /]# rpm -qf /sbin/ethtool ethtool-1.6-5 如果没有安装,插上光盘安装ethtool即可。 ethtool DESCRIPTIONethtool is used for querying settings of an ethernet device and changingthem. ethX is the name of the ethernet device on which ethtool should operate. 也可以通过ethtool -h查看帮助ethtool ethX //查询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]\ //设置网口速率10/100/1000M ethtool -p DEVNAME 查看相应设备名称对应的设备位置 使用方法如下:ethtool -p eth0 回车后与eth0 相对应的网卡接口旁边的指示灯就会闪烁,这样你就能很快确定eth0 网口的位置啦。 按下Ctrl+C 结束命令,停止闪烁
赞 (0)