新しい会話を開始

この投稿は5年以上前のものです

Solved!

ソリューションへ移動

3 Apprentice

 • 

1.3K メッセージ

467

2013年1月17日 04:00

VNX CS Port Speed変更に関して

VNXのCSのポート(eth3)に関してPort SpeedはAutoが推奨されていますが、

このPort Speedの変更方法を教えていただけないでしょうか。

28 メッセージ

2013年1月17日 20:00

ethtoolコマンドで変更する事ができます。

(ethtoolコマンドにつきましては、manページをご確認いただければと思います。)

例えば、100MB/Fullに変更する場合は以下のコマンドで実施いたします。

# /sbin/ethtool -s eth3 speed 100 duplex full autoneg off

ただ、Control Stationを再起動しますと元の設定に戻ってしまいますので、

/etc/rc.d/rc.localに上記コマンドを追記してください。

【サンプル】

[root@VNX5300 nasadmin]# /sbin/ethtool -s eth3 speed 100 duplex full autoneg off

[root@VNX5300 nasadmin]# /sbin/ethtool eth3

Settings for eth3:

        Supported ports: [ TP ]

        Supported link modes:   10baseT/Half 10baseT/Full

                                100baseT/Half 100baseT/Full

                                1000baseT/Full

        Supports auto-negotiation: Yes

        Advertised link modes:  Not reported

        Advertised auto-negotiation: No

        Speed: 100Mb/s

        Duplex: Full

        Port: Twisted Pair

        PHYAD: 1

        Transceiver: internal

        Auto-negotiation: off

        Supports Wake-on: pumbag

        Wake-on: d

        Current message level: 0x00000001 (1)

        Link detected: yes

[root@VNX5300 nasadmin]# cat /etc/rc.d/rc.local
#!/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.

touch /var/lock/subsys/local
/sbin/ethtool -s eth3 speed 100 duplex full autoneg off

3 Apprentice

 • 

1.3K メッセージ

2013年1月21日 17:00

詳細な手順&注意事項までありがとうございました。

イベントは見つかりませんでした!

Top