Dec 17, 2015

エクストリーム・ネットワークス:EASP(XOS)

このポストでは、エクストリーム・ネットワークスのスイッチ(XOS)についてご紹介したいです。

今回、ご利用しているトポロジーは下記となります。


EAPS のコンフィグは、下記の5つのステップがございます。
1.  EAPS control vlan を設定する
2.  EAPS protected vlan を設定する
3.  EAPS domain を設定する
4.  control vlan と protected vlan にポートをアサインする
5.  EAPS を enable する


//1.  EAPS のcontrol vlan を設定する//
create vlan <control_vlan_name>
configure vlan <control_vlan_name> tag <vlan_tag>
configure vlan <control_vlan_name> add port <primary_port_#> tagged
configure vlan <control_vlan_name> add port <secondary_port_#> tagged

//2.  EAPS のprotected vlan を設定する//
create vlan <protected_vlan_name>
configure vlan <protected_vlan_name> tag <vlan_tag>
configure vlan <protected_vlan_name> add port <primary_port_#> tagged
configure vlan <protected_vlan_name> add port<secondary_port_#> tagged

//3.  EAPS domain を設定する//
create eaps
configure eaps mode master 
configure eaps mode transit 

//4.  EAPS のcontrol vlan と protected vlan にポートをアサインする//
configure eaps primary port

configure eaps secondary port
configure eaps <name> add control vlan <control_vlan_name>
configure eaps <name> add protect vlan <protected_vlan_name>

//5.  EAPS を enable する//
enable eaps
enable eaps <name>
configure eaps fast-convergence [off | on]


#### Master node の SW480 のコンフィグ例 ####
#
# Module eaps configuration.
#
configure eaps fast-convergence on
enable eaps
create eaps ED
configure eaps ED mode master
configure eaps ED primary port 3
configure eaps ED secondary port 2
enable eaps ED
configure eaps ED add protected vlan Data
configure eaps ED add control vlan Contr
####


// EAPS を確認する //
* X480-24x(10G4X).3 # show eaps detail

EAPS Enabled: Yes
EAPS Fast-Convergence: On
EAPS Display Config Warnings: On
EAPS Multicast Add Ring Ports: Off
EAPS Multicast Send IGMP and MLD Query: On
EAPS Multicast Temporary Flooding: Off
EAPS Multicast Temporary Flooding Duration: 15 sec
Number of EAPS instances: 1

  Name: ED                                      Priority: Normal
  State: Complete                               Running: Yes
  Enabled: Yes    Mode: Master
  Primary port:   3             Port status: Up Tag status: Tagged
  Secondary port: 2             Port status: Blocked    Tag status: Tagged
  Hello Egress Port: Primary
  Hello timer interval: 1  sec  0  millisec
  Fail timer interval:  3  sec  0  millisec
  Fail Timer expiry action: Send alert
  Last update: From Master Id 00:04:96:51:94:55, at Tue Dec 15 19:11:07 2015
  EAPS Domain has following Controller Vlan:
    Vlan Name                    VID
    Contr                        11
  EAPS Domain has following Protected Vlan(s):
    Vlan Name                    VID
    Data                         61
  Number of Protected Vlans: 1