◆ Juniper EX - リンクアグリゲーション
Juniper EXのリンクアグリゲーションの実装は「Static Link Aggregation」と「Dynamic Aggregation」
の2つがサポートされています。一般的に、前者は「Trunk」と呼び、後者は「LACP」と呼ばれています。
◆ Juniper EX - Static Link Aggregationの設定
◆ スイッチに設定するLAGの数を定義( 設定例:1つ )
root@EX01# set chassis aggregated-devices ethernet device-count 1 |
◆ LAGの作成( 設定例:L2アクセスポートとして ae0 の作成 )
root@EX01# set interfaces ae0 unit 0 family ethernet-switching |
◆ LAGに参加させる既存のインターフェースの設定の削除( 設定例:ge-0/0/1とge-0/0/2 )
root@EX01# delete interfaces ge-0/0/1 unit 0
root@EX01# delete interfaces ge-0/0/2 unit 0
|
◆ LAGに参加させるインターフェースの設定( 設定例:ge-0/0/1とge-0/0/2 )
root@EX01# set interfaces ge-0/0/1 ether-options 802.3ad ae0
root@EX01# set interfaces ge-0/0/2 ether-options 802.3ad ae0
|
◆ LAGポートの設定( 設定例:ae0のLAGをアクセスポートとしてVLAN10を割り当て )
root@EX01# set interfaces ae0 unit 0 family ethernet-switching port-mode access
root@EX01# set interfaces ae0 unit 0 family ethernet-switching vlan members V10
|
◆ LAGインターフェースを、全てのVLANトラフィックを転送するL2トランクポートする場合の設定は以下のように設定
root@EX01# set interfaces ae0 unit 0 family ethernet-switching port-mode trunk vlan
members all |
◆ Juniper EX - LACPの設定
LACPとして設定する場合、上記のStatic Link Aggregationの設定に加えて次の設定を追加するだけです。
◆ LACPの有効化
root@EX01# set interfaces ae0 aggregated-ether-options lacp active
root@EX01# set interfaces ae0 aggregated-ether-options lacp periodic fast
|
※ LAGのステータスは「 show interfaces ae0 」「 show interfaces terse 」「 show lacp
interfaces ae0 」で確認できます。
|