How To Create and Delete VLAN On Cisco Catalyst Switch
How To Create and Delete VLAN On Cisco Catalyst Switch
One of the typical configuration activities youll perform on a Cisco Switch is to manipulate VLANs. VLAN stands for Virtual Local Area Network. In one physical cisco switch, you can create multiple VLANs that connect to different networks. For example, a VLAN for 10.10.191.0 network, a VLAN for 10.10.192.0 network, and a VLAN for 10.10.193.0 network. All three of these can be configured in the same physical switch. While these commands were tested on a cisco catalyst switch 3750 series, similar commands (may be with slight variation to the port number format) should work on all cisco switches.
In the following example, we are creating 192 VLAN network (for 10.10.192.0 network). While creating a VLAN you also need to specify the range of ports from the switch that needs to be part of this VLAN network. In this example, ports 3 through 6 are configured as part of 192 VLAN network.
config t vlan 192 interface range gigabitEthernet 1/0/3-6 switchport access vlan 192 exit
config t Goes into the configuration mode vlan 192 Creates VLAN 192
interface range gigabitEthernet 1/0/3-6 Indicates that the port numbers 3 through 6 are assigned to this VLAN swithport access vlan 192 Indicates that the access to the vlan 192 is enabled
Apart from providing the access to the vlan 192 for the port numbers 3 through 6, you can also specify the following additional switchport configuration parameters (for example, nonegotiate and mode access)
config t interface range gigabitEthernet 1/0/3-6 switchport mode access switchport nonegotiate exit
Finally, verify that the VLAN 192 got deleted as shown below.
#show vlan VLAN Name Status Ports ---- -------------------------------- --------- -----------1 default active Gi1/0/1, Gi1/0/2, Gi1/0/3, Gi1/0/4 Gi1/0/5, Gi1/0/6, Gi1/0/7, Gi1/0/8
As a final note, if you dont know what you are doing, do not execute any of the above commands on production switch, as you might bring down your network. Do this only on a test system, where you can play around and learn how to manipulate VLANs on cisco switch.