設定例(ApresiaLightGM200シリーズ)
ポートの設定例
ポートの設定例
ポートの設定 | |
# enable # configure terminal (config)# interface range Port 1/0/1-1/0/8 (config-if-port-range)# speed 100 (config-if-port-range)# mdix cross (config-if-port-range)# exit (config)# | ポート1-8の速度を100M/full、MDIXをクロスに設定 |
(config)# interface Port 1/0/1 (config-if-port)# shutdown (config-if-port)# no shutdown |
ポート1を無効化 ポート1を有効化 |
VLANの作成・ポートへの割当 | |
(config)# vlan 100 (config-vlan)# name v100 |
VLAN名「v100」、VLAN ID「100」を作成 |
(config)# interface range Port 1/0/9-1/0/10 (config-if-port-range)# switchport mode trunk (config-if-port-range)# switchport trunk allowed vlan 100 |
ポート9-10をtagでv100に設定 |
(config)# interface range Port 1/0/1-1/0/8 (config-if-port-range)# switchport access vlan 100 |
ポート1-8をuntagでv100に設定 |
リンクアグリゲーションの設定(静的) | |
(config)# interface range Port 1/0/5-1/0/6 | グループID:1の構成ポートの設定
|
(config-if-port-range)# channel-group 1 mode on | ポートチャネルグループID:1を静的LAGとして作成 ※動的[lacp],静的にリンクアグリゲーションを設定可能です。 |
(config)# interface Port-channel 1 (config-if-port-channel)# switchport access vlan 100 |
ポートチャネルグループID:1をuntagでv100に設定 |
リンクアグリゲーションの設定(LACP) | |
(config)# interface range Port 1/0/7-1/0/8 | グループID:2の構成ポートの設定
|
(config-if-port-range)# channel-group 2 mode active | ポートチャネルグループID:2を動的LAGとして作成 |
(config)# interface Port-channel 2 (config-if-port-channel)# switchport access vlan 100 |
ポートチャネルグループID:2をuntagでv100に設定 |
確認コマンド
- show interface
- show interfaces status
- show vlan
- show channel-group