1 | | = Configuration of aggregate sw-sb = |
2 | | The aggregate sandbox switch will replace legacy sandbox switches for sb 1,2,5,6,7, and 8. |
| 1 | = The Aggregate SandBox Switch = |
| 2 | The aggregate sandbox switch is a replacement for legacy sandbox switches for sb 1,2,5,6,7, and 8. Therefore it encompasses the VLANs required for all 6 testbeds to function. |
15 | | ||Port(s)||VLAN(s)|| |
16 | | ||1-12||3|| |
17 | | ||SB1||13,14||11|| |
18 | | ||15,16||13|| |
19 | | ||17,18||19|| |
20 | | ||19,20||21|| |
21 | | ||21,22||23|| |
22 | | ||23,24||25|| |
| 22 | The final port VLAN assignments: |
| 23 | |
| 24 | ||Port(s)||VLAN(s)||Description|| |
| 25 | ||0/1-12||3||CM|| |
| 26 | ||Control-to nodes || |
| 27 | ||0/13,14||11||sb1_ctrl|| |
| 28 | ||0/15,16||13||sb2_ctrl|| |
| 29 | ||0/17,18||19||sb5_ctrl|| |
| 30 | ||0/19,20||21||sb6_ctrl|| |
| 31 | ||0/21,22||23||sb7_ctrl|| |
| 32 | ||0/23,24||25||sb8_ctrl|| |
| 33 | ||Control-to Consoles || |
| 34 | ||0/25||11||sb1_ctrl|| |
| 35 | ||0/26||13||sb2_ctrl|| |
| 36 | ||0/27||19||sb5_ctrl|| |
| 37 | ||0/28||21||sb6_ctrl|| |
| 38 | ||0/29||23||sb7_ctrl|| |
| 39 | ||0/30||25||sb8_ctrl|| |
| 40 | ||Data || |
| 41 | ||0/31,32||12||sb1_data|| |
| 42 | ||0/33,34||14||sb2_data|| |
| 43 | ||0/35,36||20||sb5_data|| |
| 44 | ||0/37,38||22||sb6_data|| |
| 45 | ||0/39,40||24||sb7_data|| |
| 46 | ||0/41,42||26||sb8_data|| |
| 47 | ||0/43-48||3,11-14,19-26||Trunk|| |
| 48 | |
| 49 | == Legacy Configurations == |
| 50 | All forms of spanning tree (STP, PVST+) are disabled for compliance with !OpenFlow and Node-handler/Agent services. From configuration mode: |
| 51 | {{{ |
| 52 | spanning-tree disable |
| 53 | no spanning-tree vlan 1,3,11-14,19-26 |
| 54 | }}} |
| 55 | |
| 56 | vlans are named from the `vlan` context. |
| 57 | |
| 58 | Interface-range contexts are used for batch configuration of similar ports. Below is the configuration of the CM and SB1 Control VLAN ports: |
| 59 | {{{ |
| 60 | !(config)# interface range gi 0/1-12 |
| 61 | !(config-if-range)# switchport access vlan 3 |
| 62 | !(config-if-range)# interface range gi 0/13-14 |
| 63 | !(config-if-range)# sw acc vlan 11 |
| 64 | }}} |
| 65 | |
| 66 | Similarly, the trunk ports: |
| 67 | {{{ |
| 68 | interface range gi 0/43-48 |
| 69 | switchport mode trunk |
| 70 | switchport trunk allowed vlan 3,11-14,19-26 |
| 71 | switchport trunk native vlan 1 |
| 72 | }}} |
| 73 | |
| 74 | == !OpenFlow configurations == |
| 75 | To be added. |
| 76 | |