So, we log in to the Cisco and go into enable mode.
Creating a VLAN on Cisco switches:
>enable
#config t
(config)#vlan 100
(config-vlan)# name MyVlanName
(config-vlan)# end
In this example we created a VLAN with the name "MyVlanName" and ID #100.
Renaming a VLAN:
>enable
#config t
(config)#vlan 100
(config-vlan)# name MyNewVlanName
(config-vlan)# end
As you can see - it's no different from creating one - you just assign a new name.
Deleting a VLAN:
>enable
#config t
(config)#no vlan 100
Comments