我的意思是
kernel: bnx2: eth1 NIC Link is Down
kernel: bnx2: eth1 NIC Link is Up, 100 Mbps full duplex, receive & transmit flow control ON
当日志中Down之后 让起启动的时候直接就不是自适应
默认应该是加在/etc/sysconfig/network-scripts/ifcfg-eth1中的
ethtool工具来禁用网卡eth0驱动模块的网卡自适应特性
# ethtool -s eth0 autoneg off speed 1000 duplex full
[ 本帖最后由 xuledw 于 2009-9-23 14:52 编辑 ]作者: xuledw 时间: 2009-09-23 15:10
测试机中加入/etc/sysconfig/network-scripts/ifcfg-eth1中加入
ETHTOOL_OPTS="speed 1000 duplex full autoneg off
没有问题 但是在服务器
# ethtool -s eth1 speed 1000 duplex full autoneg off
Cannot set new settings: Invalid argument
not setting speed
not setting duplex
not setting autoneg
就报这个 郁闷了作者: marsaber 时间: 2009-09-26 13:01