When you need to group ports on a cisco switch into a VLAN do the following
- Log onto terminal
- enable
- conf t
- vlan 1001 (where 1001 is the vlan id to be assigned
- name ExampleVLANname
- exit
This creates the VLAN. Now it is time to assign the ports to the VLAN
Whicle still in “conf t”
- interface fastethernet 0/1 (where 0/1 is the port to be edited)
- switchport access vlan 1001
- no shutdown
- exit
Make sure to copy the running config to startup
#copy run start
Leave a Reply