Connect ports to the external router.
Configure these ports as trunk ports that allow tagged packets. The blade system chassis switches require explicit enabling of VLANs allowed on trunk connections. Configure all VLANs except the switch management VLAN (factory default set to VLAN 2) to pass through.
On the blade system chassis switch, the set of commands used to achieve this is as follows:
Vty-0(config)#interface ethernet NETP0 Vty-0(config-if)# description External RJ-45 connector NETP0 Vty-0(config-if)# switchport allowed vlan add 1 untagged Vty-0(config-if)# switchport native vlan 1 Vty-0(config-if)# switchport mode trunk Vty-0(config-if)# switchport allowed vlan add 10-1024 tagged Vty-0(config-if)# switchport forbidden vlan add 2 Vty-0(config-if)# |
In the above example VLANs 10-1024 are allowed on tagged port NETP0. All other VLANs are forbidden.
Connect ports to the external switch ports.
These connections may be of two types: trunk connections to the external switch using the NetP7 port and control plane connections using the NetMgt port.
For trunk connections using the NetP7 port, the configuration requirements and commands to do this are the same as in the previous step.
For control plane connections using the NetMgmt port, the NetMgmt port must be in the management VLAN of the switch (by default, VLAN 2). This is a factory default setting, but verify this during the configuration phase.
interface ethernet NETMGT
switchport allowed vlan add 2 untagged
switchport native vlan 2
switchport allowed vlan remove 1
switchport forbidden vlan add 1
When done creating all VLANs, press Ctrl Z or end to leave the configuration mode.
For ports connected to switch ports of other chassis, the requirements and commands are the same as in step 1.
For ports connected to VLAN-aware NIC of the provisioning server, the requirements and commands are the same as in step 3.