发布网友 发布时间:2022-04-23 12:30
共1个回答
热心网友 时间:2023-09-24 23:21
dot1q就是802.1q,是vlan的一种封装方式。dot就是点的意思,就简写为dot1q了.
DOT1Q和 ISL的区别:DOT1Q是各类产品的VLAN通用协议模式,Dot1q是一种普遍使用的标准,适用所有交换机与路由设备。DOT1Q支持4096个vlan,而ISL最多支持1024个vlan。ISL是CISCO设备的专用协议,适用于Cisco设备。 ISL(Interior Switching Link)交换机间协议用于实现CISCO交换机间的VLAN中继。它是一个信息包标记协议,在支持ISL接口上发送的帧由一个标准以太网帧及相关的VLAN信息组成。
R2(config)#interface fastethernet 0/0.1
R2(config-subif)#encapsulation dot1q 100 /封装802.1q协议,并把该端口划分到vlan 100
R2(config-subif)#ip address 202.114.12.1 255.255.255.192
R2(config-subif)#no shutdown
R2(config-subif)#exit
R2(config)#interface fastethernet 0/0.2
R2(config-subif)#encapsulation dot1q 200
R2(config-subif)#ip address 202.114.12.65 255.255.255.192
R2(config-subif)#no shutdown
R2(config-subif)#exit
R2(config)#interface fastethernet 0/0.3
R2(config-subif)#encapsulation dot1q 300
R2(config-subif)#ip address 202.114.12.129 255.255.255.192
R2(config-subif)#no shutdown
R2(config-subif)#exit
R2(config)#interface fastether0/0
R2(config-if)#no shutdown
Switch0(config)#interface f0/24
Switch0(config-if)# switchport mode trunk
Switch0 (config-if)#switchport trunk encapsulation dot1q
Switch0(config-if)# switchport trunk allowed all
Switch0(config-if)#exit