Trunk Port(Tag Port)
1-1 What's Trunk port?
A trunk port is a port that is assigned to carry traffic for all the VLANs.Trunk send Untagged and Tagged information. There are two standards for Trunking:
ISL(Cisco)
802.1Q(Industry Standard) is 4 Byte which is considered without Native Vlan
Example:

sw1(config)# int fa0/1
sw1(config-if)# switchport mode trunksw2(config)# int fa0/1
sw2(config-vlan)# switchport mode trunk1-2 Changing Native Vlan
For changing Native Vlan just write:
sw1(config)# int fa0/1
sw1(config-if)# switchport trunk native vlan 201-3 Allow Specific Vlan
To allow specific vlan just write:
sw1(config)# int fa0/1
sw1(config-if)# switchport allowed vlan 10,20,30In above-mentioned code, just vlan 10, 20, 30 allowed through trunk port
1-4 How to see trunk port
switch# show interface trunk
or
switch# show interface fa0/1 switchportLast updated