Changes between Version 1 and Version 2 of Nortel 5520 V-Lan Programming
- Timestamp:
- 05/31/25 09:54:45 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Nortel 5520 V-Lan Programming
v1 v2 2 2 3 3 {{{ 4 config 4 5 Select CLI Interface from Main Menu 6 7 at cli prompt 8 9 enable<enter> 10 11 configt 5 12 Create a New VLAN. 6 13 Code 7 14 8 vlan create <vlan_id> name <vlan_name> type port-based 15 vlan create <vlan_id> name <vlan_name> type port 9 16 Replace <vlan_id> with the desired VLAN ID (e.g., 10, 20) and <vlan_name> with a descriptive name. 10 17 Assign Ports to a VLAN (Untagged/Access Port): 11 18 Code 12 19 13 20 vlan members <vlan_id> <port_list> untagged 14 21 Replace <vlan_id> with the VLAN ID and <port_list> with the port(s) you want to assign to this VLAN (e.g., 1/1, 1/5-1/10). Untagged ports are typically used for end devices. 15 22 Assign Ports to a VLAN (Tagged/Trunk Port): 16 23 Code 17 24 18 25 vlan members <vlan_id> <port_list> tagged 19 26 Replace <vlan_id> and <port_list> accordingly. Tagged ports are used for inter-switch links or connections to devices that understand 802.1Q tagging. 20 27 Set the Port VLAN ID (PVID) for a Port: 21 28 Code 22 29 23 interface ethernet <port_number> 24 pvid <vlan_id> 25 exit 30 interface ethernet <port_number> 31 pvid <vlan_id> 32 exit 33 26 34 Replace <port_number> with the specific port (e.g., 1/1) and <vlan_id> with the VLAN ID that untagged traffic entering this port should be assigned to. This is crucial for access ports. Verify VLAN Configuration. 27 35 Code 28 36 29 30 37 show vlan 38 show vlan port <port_number> 31 39 Save the Configuration. 32 40 Code 33 41 34 save config 42 save config 43 35 44 Example: Creating VLAN 10 and assigning port 1/1 as an untagged member: 36 45 Code