今回はCiscoスイッチの基本設定として、ホスト名の設定、インターフェースの有効化/無効化の設定方法をまとめてみました。
設定
<ホスト名設定>
Switch> enable
Switch#
Switch# configure terminal
Switch(config)#
Switch(config)# hostname SW1
SW1(config)#
[ enable ]
モード移行
[ configure terminal ]
グローバルコンフィギュレーションモードへ移行
[ hostname <hostname> ]
ホスト名を指定
<インターフェースの有効化/無効化>
● 有効化
SW1# configure terminal
SW1(config)#
SW1(config)# interface GigabitEthernet 0/0/1
SW1(config-if)#
SW1(config-if)# no shutdown
SW1(config-if)#
[ interface <interface-id> ]
設定を行うインターフェースを指定し、インターフェースコンフィギュレーションモードへ移行
[ no shutdown ]
インターフェースの有効化
● 無効化
SW1(config)# interface GigabitEthernet 0/0/1
SW1(config-if)#
SW1(config-if)# shutdown
SW1(config-if)#
[ shutdown ]
インターフェースの無効化