eth0: error fetching interface information: Device not found


轉載,原文出處:http://zh888.blog.51cto.com/1684752/775447

親測有效,感謝作者!!!

----------------------------分割線----------------------------------------------------

eth0不見了的處理方法
 
1.剛開始運行ifconfig eth0發現網卡不見了。
[root@localhost ~]# ifconfig eth0
eth0: error fetching interface information: Device not found //但是network-scripts里的配置文件全部是eth0的,為什么獲取不到也不知道為什么?
處理解決方法只能用eth1替換eth0了,自己創建modprobe.conf文件里面alias eth0 e1000e但是不能識別。
 
2.[root@localhost network-scripts]# mii-tool //查看網卡連接狀態
   eth1: negotiated 100baseTx-FD, link ok
 
3.[root@localhost network-scripts]# ifconfig eth1//能發現eth1網卡
 
4.[root@localhost network-scripts]# mv ifcfg-eth0 ifcfg-eth1//修改eth0為eth1
 
5.[root@localhost network-scripts]# vi ifcfg-eth1
DEVICE=eth1//把eth1修改為eth0
ONBOOT=yes//啟動激活
TYPE=Ethernet
BOOTPROTO=static//靜態ip
IPADDR=192.168.xx.40
NETMASK=255.255.255.0
GATEWAY=192.168.xx.254
 
6.[root@localhost ~]# cd /etc/sysconfig/networking/ //進入networking目錄
[root@localhost networking]# ls//里面有兩個文件把里面的設備修改為ifcfg-eth1即可。
devices  profiles
 
7.[root@localhost devices]# /etc/rc.d/init.d/network restart //重新啟動network守護進程。
Shutting down interface eth1:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth1:                                [  OK  sss]
 
8.[root@localhost devices]# ping  www.baidu.com //最后ping 百度通了
PING  www.a.shifen.com (220.181.111.148) 56(84) bytes of data.
64 bytes from 220.181.111.148: icmp_seq=1 ttl=52 time=33.1 ms
64 bytes from 220.181.111.148: icmp_seq=2 ttl=52 time=33.3 ms
64 bytes from 220.181.111.148: icmp_seq=3 ttl=52 time=33.4 ms
 
遇到的問題:
剛開始因為以為驅動問題,lsmod看了一下加載的驅動為e1000e,所以在 /etc/modprobe.d/里添加了modprobe.conf文件可是還是不行。
dmesg查看啟動信息查看網卡信息為e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
后來查看/lib/modules/2.6.32-71.el6.i686/modules.alias 添加alias eth0 e1000e 還是不行,只能用eth1代替eth0


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM