Lab 11 1: VLANs in Packet Tracer Part 1 - devinziegler/Devin-Tech-Journal GitHub Wiki
Assignment VLANS in Packet Tracer:
- Configure 3 VLANS on separate switches and test connectivity.
Create a VLAN:
vlan <vlan_id>
Name your vlan:
name <vlan_name>
- An access port is a type of connection on a switch that is used to connect a single VLAN Go to chosen interface:
int <switch_interface>
Change mode to access:
switchport mode access
Set VLAN on switchport
switchport access vlan <vlan_id>
- A trunk port is a port that connects to a switch or router allowing multiple VLAN's. Go to chosen interface:
int <switch_interface>
Change mode to Trunk:
switchport mode trunk
Allow specific interfaces on port:
switchport trunk allowed vlan {all |
none | vlan-list }