Unsolved
This post is more than 5 years old
36 Posts
0
968644
April 10th, 2007 14:00
Difference between General ports and Trunk ports
Hai.
Can you please tell me the exact difference between tagged and untagged port in VLANs and the main use for implementing this.? What is the difference between general ports and trunk ports? If two switches have the same configuration (VLANs & LAGs), how is it possible to logically extend the switch (i mean connect them in a daisy chain fashion) so that the devices on the ports in the same VLAN on both the switch are able to communicate?
Regards
Rumhy.
0 events found
No Events found!


bh1633
909 Posts
1
April 10th, 2007 17:00
A tagged Ethernet packet has extra data in the packet that defines the vlan it is a member of. The different port modes (Trunk, Access, General) define how tagged and untagged packets are handled.
Ingress means packets entering a port. Egress means traffic exiting a port.
console(config)# vlan database
console(config-vlan)# vlan 101,102,310
console(config-vlan)# exit
console(config)# interface Ethernet g1
console(config-if)# switchport access vlan 101
console(config-if)# exit
console(config)# interface Ethernet g2
console(config-if)# switchport access vlan 102
console(config-if)# exit
console(config)# interface Ethernet g3
console(config-if)# switchport access vlan 310
console(config-if)# exit
console(config)# interface Ethernet g24
console(config-if)# switchport mode general
console(config-if)# switchport general allowed vlan add 101,102,310 tagged
console(config-if)# switchport general pvid 4095
console(config-if)# exit
Rumhy
36 Posts
0
April 11th, 2007 07:00