|
发表于 2006-6-9 13:16:23
|
显示全部楼层
栓查你的网卡配置文件
以下操作为root完成
1、备份文件/etc/sysconfig/network-scripts/ifcfg-eth0
2、执行netconfig或setup -> Network configuration,重新配置eth0的网络
3、执行chkconfig --list network,查看你的网卡的守程是否在--level 235 init等级里为on,如果为off,执行 chkconfig --level 235 network on
4、查看你网卡的模块的关联性
执行:
service network stop
lsmod查看你的网卡模块
rmmod 网卡模块
执行depmod 网卡模块
执行 depmod -a
vi /etc/modules.conf (RedHat 9.0)
或
vi /etc/modprobe.conf
查看
alias eth0 网卡模块是否正确。
执行service network start
查dmesg |
|