In RUCKUS ICX switches, VLAN 1 is the default VLAN and is typically used for management purposes. By default, all ports are members of VLAN 1 as untagged. Attempting to configure VLAN 1 as tagged on a port can result in an error, as the system restricts tagging the default VLAN.
Understanding the Error:
RKUS-01(config)# vlan 1
RKUS-01(config-vlan-1)# tagged ethernet 1/2/1
Invalid input -> tagged ethernet 1/2/1
Type ? for a list
This error occurs because the switch does not allow tagging of the default VLAN (VLAN 1) on any interface.
Resolution:
Option 1: Use a Different VLAN for Tagging
Create a new VLAN (e.g., VLAN 2) and configure it as tagged on the desired port.
RKUS-01(config)# vlan 2
RKUS-01(config-vlan-2)# tagged ethernet 1/2/1
Option 2: Change the Default VLAN ID
If you must use VLAN 1 as tagged, you can change the default VLAN ID to another VLAN (e.g., VLAN 2), allowing VLAN 1 to be configured as tagged.
RKUS-01(config)# default-vlan-id 2
RKUS-01(config)# vlan 1
RKUS-01(config-vlan-1)# tagged ethernet 1/2/1
[Reference: For more information on VLAN configuration and best practices on RUCKUS ICX switches, refer to the following community discussion:, ICX 7150 tag port VLAN1, ]
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit