赞
踩
一、简述
使用lspci可以看到万兆网卡,ifconfig -a却看不到网卡,无法配置ip。
二、问题现象
公司的测试服务器(centos7 5.15.52)使用的万兆网卡是Intel Corporation 82599ES 10-Gigabit SFI/SFP+ Network Connection,在直连环境下为光卡接口配置IP时,发现ifconfig -a中看不到网卡信息,但是使用lspci可以看到万兆网卡信息,当时遇到这个问题时觉得很奇怪,然后就求助百度。
三、排查过程
1.使用 ifconfig -a 确认是否确实看不到网卡,我这里确实是找不到网卡。
2.使用 lspci | grep Ethernet 可以看到,在硬件上能识别到该网卡。
3.查看一下dmesg日志(dmesg是显示内核缓冲区系统控制信息的工具 ,比如系统在启动时的信息会写到/var/log/中)其命令:dmesg -c 显示所有日志。
在dmesg日志中发现了报错:
ixgbe 0000:02:00.0: failed to initialize because an unsupported SFP+ module type was detected.
ixgbe 0000:02:00.0: Reload the driver after installing a supported module.
ixgbe 0000:02:00.0: removed PHC on ens5f0
ixgbe 0000:02:00.1: failed to initialize because an unsupported SFP+ module type was detected.
ixgbe 0000:02:00.1: Reload the driver after installing a supported module.
ixgbe 0000:02:00.1: removed PHC on ens5f1
四、解决方法:
1.删除网卡驱动:rmmod ixgbe
2.重新加载网卡驱动:modprobe ixgbe
3.系统中再次执行 ifconfig -a 即可看到网卡信息(如果还是不显示,重启网卡服务就能看到)
=========================================================================
这些就是当我遇到网卡不显示问题的解决思路与方法,希望对大家有所帮助,感谢大家的阅览,喜欢的朋友不妨点个赞,给我一些鼓励,我会不定时的更新,愿永无Bug。天行健,君子以自强不息!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。