Linux下改变网卡速度的的解决方法(3)

  作为最后的一个办法,你可以把他们放在/etc/rc.local文件中。在/etc/rc.local文件中,把ethtool和mii-tool字符串和设置选项分别放在一个新行中。下面的例子会对你的配置有帮助:

   #!/bin/sh
   #
   # This script will be executed *after* all the other init scripts.
   # You can put your own initialization stuff in here if you don't
   # want to do the full Sys V style init stuff.

   ethtool -s eth0 speed 100 duplex full autoneg off
   mii-tool -F 100baseTx-FD eth1
   touch /var/lock/subsys/local

  如果你保存了这些改变,当系统下次启动的时候,网卡的速度和工作模式就会按照你设置的来工作(如果你的设置选项对于这个网卡是合适的)。

  注: 有些网卡对于ethtool是不工作的,如果是这种情况,可以尝试使用mii-tool反之亦然。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/29c5d8871e935943fe1200322839f6cd.html