web-dev-qa-db-ja.com

Linuxサーバーでオートネゴシエーションをyesに変更する方法

eth0でethtoolコマンドを実行すると(VM machine redhat version 6.7)

オートネゴシエーションをサポートしているようです:いいえ

これを-オートネゴシエーションに変更できますか:はい? 、構成可能ですか?

 ethtool eth0
 Settings for eth0:
       Supported ports: [ TP ]
       Supported link modes:   1000baseT/Full
                            10000baseT/Full
       Supported pause frame use: No
       Supports auto-negotiation: No
       Advertised link modes:  Not reported
       Advertised pause frame use: No
       Advertised auto-negotiation: No
       Speed: 10000Mb/s
       Duplex: Full
       Port: Twisted Pair
       PHYAD: 0
       Transceiver: internal
       Auto-negotiation: off
       MDI-X: Unknown
       Supports Wake-on: uag
       Wake-on: d
       Link detected: yes
1
dandan

ザ・

/ etc/sysconfig/network-scripts/ifcfg-eth0

ファイルにethtool設定を追加して、デバイスがアクティブ化されるたびに設定が保存されて使用されるようにすることができます。

設定ファイルオプション

ETHTOOL_OPTS="speed <100|1000|10000> duplex <half|full> autoneg <on|off>"

構成ファイルの最後に次の行を追加します。

ETHTOOL_OPTS = "速度1000デュプレックス全自動オン"

そして

/etc/init.d/network restart

2
stambata