歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> centos 6.0網卡問題總結

centos 6.0網卡問題總結

日期:2017/3/3 16:27:44   编辑:關於Linux

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

本文出自 “有志者事竟成!” 博客,請務必保留此出處http://zh888.blog.51cto.com/1684752/775447

Copyright © Linux教程網 All Rights Reserved