dot1q协议是思科专有吗
⑴ cisco 2960交换机可以在trunk上封装dot1q嘛命令是什么
2960默认封装就是dot1q,不再支持cisco的私有封装ISL,因此2960系列交换机在配置trunk的时候不需要指定封装。
⑵ 思科的trunk默认是ISL还是802.1q的呀
二层交换机只支持802.1q因此做trunk时不需要先封装,直接switchport mode trunk 就行了三层交换机支持ISL和版802.1q,配置时权要先封装switchport trunk encapsulation dot1q /islswitchport mode trunk
⑶ cisco路由器与cisco交换机怎么设置才可以实现之间的通信
1. 设置交换机的vlan 2和
switch#vlan database
switch(vlan)#vlan 2
switch(vlan)#exit
switch#conf t
switch(config)#hostname SWA
SWA(config)#int f0/6
SWA(config-if)#switchport access vlan 2
SWA(config-if)#int f0/7
SWA(config-if)#switchport access vlan 2
SWA(config-if)#int f0/1
SWA(config-if)#switchport mode trunk
SWA(config-if)#switchport trunk allowed vlan 1,2,3
SWA(config-if)#switchport trunk encap dot1q
SWA(config-if)#end
SWA#sh vlan
SWA#sh run
检查设置情况,应该能正确的看到vlan和trunk等信息。
dot1q是vlan中继协议802.1q,有的设备上使用的是cisco的isl协议,它们的作用
是一样的。
计算机的ip地址分别为10.65.1.1、10.66.1.1,网关分别指向路由器的子接口
10.65.1.2、10.66.1.2。
现在从PCA向PCB发关Ping 的ICMP数据包肯定是不通的。即:
[root#PCA root]# ping 10.66.1.1 (不通)
2. 设置路由器f0/0 为两个子接口
roa(config)#int f0/0
roa(config-if)#no shut
roa(config-if)#int f0/0.1
roa(config-subif.1)#encapsulation dot1q 1
roa(config-subif.1)#ip address 10.65.1.2 255.255.0.0
roa(config-subif.1)#int f0/0.2
roa(config-subif.2)#encapsulation dot1q 2
roa(config-subif.2)#ip address 10.66.1.2 255.255.0.0
roa(config-subif.2)#exit
roa(config)#ip routing
roa#sh run
3. 测试可通性
[root#PCA root]# ping 10.66.1.1 (通)
[root#PCA root]# ping 10.66.1.2 (通)
[root#PCB root]# ping 10.65.1.1 (通)
[root#PCB root]# ping 10.65.1.2 (通)
⑷ 思科3650如何进行封装协议,switchport trunk encapsulation {isl|dotlq} 肯定不行,求大神指导
如果想启用trunk的话,直接使用 switchport mode trunk 启用trunk即可。
交换机默认使用dot1q进行封装。
你可以使用show interface g1/0/1 switchport 查看端口详细封装信息
!--
Office_36# sh int g1/1/3 switchport
Name: Gi1/1/3
Switchport: Enabled
Administrative Mode: trunk
Operational Mode: trunk
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)
Administrative Native VLAN tagging: enabled
Voice VLAN: none
Administrative private-vlan host-association: none
Administrative private-vlan mapping: none
Administrative private-vlan trunk native VLAN: none
Administrative private-vlan trunk Native VLAN tagging: enabled
Administrative private-vlan trunk encapsulation: dot1q
Administrative private-vlan trunk normal VLANs: none
Administrative private-vlan trunk associations: none
Administrative private-vlan trunk mappings: none
Operational private-vlan: none
Trunking VLANs Enabled: ALL
Pruning VLANs Enabled: 2-1001
Capture Mode Disabled
Capture VLANs Allowed: ALL
Protected: false
Unknown unicast blocked: disabled
Unknown multicast blocked: disabled
Appliance trust: none
!--
⑸ cisco交换机默认trunk封装是802.1q(dot1q)么
不同厂商的交换机,封装用dot1q协议,同为思科的,用isl
⑹ cisco模拟器中dot1Q 2是什么意思
大多数思科交换机设备trunk口支持vlan 需要先封装dot1协议,否则不能成功设置端口为trunk口
2就是vlan2
⑺ ccna思科cisco路由器交换机:配置vlan不同厂家交换机可以混用吗
可以混用的,只要保证trunk口封装一样(都是dot1Q)及都有相应的vlan信息就可以.同种设备版可以通过协议(比如权cisco的vtp)同步vlan信息,不同厂家的你就在每个交换机上手工创建相应的vlan号就可以.
⑻ CISCO 2960-24TT交换机 怎么没法在接口下封装dot1q协议呢
原因是复2950(2960一样)只支持制dot1q,所以不用写switchport
trunk
encapsulation
dot1q/isl的命令。
3560以上才支持dot1q和isl,才有encapsulation的命令。
⑼ cisco交换机中接口还用封装成802.1q吗
你好 如果说你的设备都是思科设备的话 就不用打这个命令 因为思科设备默认的的是isl封装,而且是cisco专有的协议。如果是思科和华为或者是其他不同设备的话,就要用dot1q封装了。