Changes between Initial Version and Version 1 of Nortel 5520 V-Lan Programming


Ignore:
Timestamp:
05/31/25 09:51:06 (4 weeks ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nortel 5520 V-Lan Programming

    v1 v1  
     1= Nortel 5520 V-Lan Programming =
     2
     3{{{
     4   config
     5Create a New VLAN.
     6Code
     7
     8    vlan create <vlan_id> name <vlan_name> type port-based
     9Replace <vlan_id> with the desired VLAN ID (e.g., 10, 20) and <vlan_name> with a descriptive name.
     10Assign Ports to a VLAN (Untagged/Access Port):
     11Code
     12
     13    vlan members <vlan_id> <port_list> untagged
     14Replace <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.
     15Assign Ports to a VLAN (Tagged/Trunk Port):
     16Code
     17
     18    vlan members <vlan_id> <port_list> tagged
     19Replace <vlan_id> and <port_list> accordingly. Tagged ports are used for inter-switch links or connections to devices that understand 802.1Q tagging.
     20Set the Port VLAN ID (PVID) for a Port:
     21Code
     22
     23    interface ethernet <port_number>
     24    pvid <vlan_id>
     25    exit
     26Replace <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.
     27Code
     28
     29    show vlan
     30    show vlan port <port_number>
     31Save the Configuration.
     32Code
     33
     34    save config
     35Example: Creating VLAN 10 and assigning port 1/1 as an untagged member:
     36Code
     37
     38config
     39vlan create 10 name DataVLAN type port-based
     40vlan members 10 1/1 untagged
     41interface ethernet 1/1
     42pvid 10
     43exit
     44save config
     45
     46}}}