在 LINUX 下,如果使用 ifconfig 会出现错误使用:
# ifconfig eth0 media 100baseTx
port: SIOCSIFMAP: Operation not supported
此时,应该使用以下命令:
# mii-tool -F 100baseTx-FD eth0
或者在设定之前可以用以下命令查看网卡的当前情况:
# mii-tool eth0
eth0: negotiated 100baseTx-FD ,link ok
-----
而在 FreeBSD 下面,可以直接使用 ifconfig 进行设置:
# ifconfig fxp0 media 100BaseTX mediaopt full-duplex
或直接将配置写入 /etc/rc.conf 里面,下次启动时也会生效。
ifconfig_fxp0="inet x.x.x.x netmask x.x.x.x media 100BaseTX mediaopt full-duplex"
阅读(3937) | 评论(0) | 转发(0) |