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


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Nortel 5520 V-Lan Programming

    v1 v2  
    22
    33{{{
    4    config
     4
     5Select CLI Interface from Main Menu
     6
     7at cli prompt
     8
     9enable<enter>
     10
     11configt
    512Create a New VLAN.
    613Code
    714
    8     vlan create <vlan_id> name <vlan_name> type port-based
     15vlan create <vlan_id> name <vlan_name> type port
    916Replace <vlan_id> with the desired VLAN ID (e.g., 10, 20) and <vlan_name> with a descriptive name.
    1017Assign Ports to a VLAN (Untagged/Access Port):
    1118Code
    1219
    13     vlan members <vlan_id> <port_list> untagged
     20vlan members <vlan_id> <port_list> untagged
    1421Replace <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.
    1522Assign Ports to a VLAN (Tagged/Trunk Port):
    1623Code
    1724
    18     vlan members <vlan_id> <port_list> tagged
     25vlan members <vlan_id> <port_list> tagged
    1926Replace <vlan_id> and <port_list> accordingly. Tagged ports are used for inter-switch links or connections to devices that understand 802.1Q tagging.
    2027Set the Port VLAN ID (PVID) for a Port:
    2128Code
    2229
    23     interface ethernet <port_number>
    24     pvid <vlan_id>
    25     exit
     30interface ethernet <port_number>
     31pvid <vlan_id>
     32exit
     33
    2634Replace <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.
    2735Code
    2836
    29     show vlan
    30     show vlan port <port_number>
     37show vlan
     38show vlan port <port_number>
    3139Save the Configuration.
    3240Code
    3341
    34     save config
     42save config
     43
    3544Example: Creating VLAN 10 and assigning port 1/1 as an untagged member:
    3645Code