CiscoのCatalyst 2960Sをラックのメインスイッチにしています。
10G対応モデルなのでそれで接続してましたが、スタックモジュールがついていたので、冗長化も兼ねてスタックに変えます。
こんな感じのケーブルをebayで買いました。1本5千円しないぐらいです。
後ろのスタックモジュールにつなぎます。
show versionしてみると見えるので、確認してみます。
C2690-S_2>show version ####中略#### Switch Ports Model SW Version SW Image ------ ----- ----- ---------- ---------- * 1 28 WS-C2960S-24TD-L 15.2(1)E C2960S-UNIVERSALK9-M 2 28 WS-C2960S-24TD-L 15.2(1)E C2960S-UNIVERSALK9-M
真ん中あたりにこんな形で、つながってるSwitchが見えます。
今回、コンソールで見えるように2号機のつもりのSwitchがマスターになってたので、優先度を変えます。
まずはshow switchでメンバーとプライオリティを確認します。
C2690-S_2>show switch Switch/Stack Mac Address : xxxx.xxxx.xxxx H/W Current Switch# Role Mac Address Priority Version State ---------------------------------------------------------- *1 Master xxxx.xxxx.xxxx 10 1 Ready 2 Member yyyy.yyyy.yyyy 5 1 Ready
プライオリティは高いほうがマスターになります。
Switch2になっているものをマスターにしたいので、プライオリティを15に変えます。
C2690-S_2>enable Password: C2690-S_2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. C2690-S_2(config)#switch 2 priority 15 Changing the Switch Priority of Switch Number 2 to 15 Do you want to continue?[confirm] ###何も入力せずエンターキー New Priority has been set successfully
ついでにマスター側を1,メンバーを2にしたいので、入れ替えます。
一旦2を3に、1を2に変えます。
C2690-S_2(config)#switch 2 renumber 3 WARNING: Changing the switch number may result in a configuration change for that switch. The interface configuration associated with the old switch number will remain as a provisioned configuration. Do you want to continue?[confirm] ###何も入力せずエンターキー Changing Switch Number 2 to Switch Number 3 New Switch Number will be effective after next reboot C2690-S_2(config)#switch 1 renumber 2 WARNING: Changing the switch number may result in a configuration change for that switch. The interface configuration associated with the old switch number will remain as a provisioned configuration. Do you want to continue?[confirm] ###何も入力せずエンターキー Changing Switch Number 1 to Switch Number 2 New Switch Number will be effective after next reboot
2,1の順で再読み込みします。
C2690-S_2#reload slot 2 Proceed with reload? [confirm] ###何も入力せずエンターキー C2690-S_2#reload slot 1 System configuration has been modified. Save? [yes/no]: yes Building configuration... [OK] Proceed with reload? [confirm] ###何も入力せずエンターキー Switch 1 reloading...
マスター側をリロードするとSwitchに繋がらなくなるので、しばらく待って再接続します。
再接続後に、スタックメンバーを確認します。
C2690-S_2> Switch/Stack Mac Address : xxxx.xxxx.xxxx H/W Current Switch# Role Mac Address Priority Version State ---------------------------------------------------------- 1 Member 0000.0000.0000 0 0 Provisioned 2 Member xxxx.xxxx.xxxx 10 1 Ready *3 Master yyyy.yyyy.yyyy 15 1 Ready
1だったのが2、2だったのが3になって、3がマスターになってます。
3を1に戻します。
#switch 3 renumber 1 WARNING: Changing the switch number may result in a configuration change for that switch. The interface configuration associated with the old switch number will remain as a provisioned configuration. Do you want to continue?[confirm] ###何も入力せずエンターキー Changing Switch Number 3 to Switch Number 1 New Switch Number will be effective after next reboot C2690-S_2(config)#exit #reload slot 3 Proceed with reload? [confirm] ###何も入力せずエンターキー Switch 3 reloading...
再起動すると、2がマスターになるので、2を再起動します。
C2690-S_2>show switch Switch/Stack Mac Address : xxxx.xxxx.xxxx H/W Current Switch# Role Mac Address Priority Version State ---------------------------------------------------------- 1 Member yyyy.yyyy.yyyy 15 1 Ready *2 Master xxxx.xxxx.xxxx 10 1 Ready 3 Member 0000.0000.0000 0 0 Removed C2690-S_2>enable Password: C2690-S_2#reload slot 2 Proceed with reload? [confirm] ###何も入力せずエンターキー Switch 2 reloading...
最終的に以下になっていれば設定通りです。
1がマスター、2がメンバーです。
C2690-S_2>show switch Switch/Stack Mac Address : yyyy.yyyy.yyyy H/W Current Switch# Role Mac Address Priority Version State ---------------------------------------------------------- *1 Master yyyy.yyyy.yyyy 15 1 Ready 2 Member xxxx.xxxx.xxxx 10 1 Ready 3 Member 0000.0000.0000 0 0 Provisioned
最後にSwitch3を削除します。
C2690-S_2#configure terminal Enter configuration commands, one per line. End with CNTL/Z. C2690-S_2(config)#no switch 3 provision C2690-S_2(config)#exit C2690-S_2#show switch Switch/Stack Mac Address : yyyy.yyyy.yyyy H/W Current Switch# Role Mac Address Priority Version State ---------------------------------------------------------- *1 Master yyyy.yyyy.yyyy 15 1 Ready 2 Member xxxx.xxxx.xxxx 10 1 Ready