cisco二层交换机和三层交换机怎么设置trunk

如题所述

cisco二层交换机设置trunk:

S1>enable //进入特权模式

S1#config terminal //进入全局配置模式

S1(config)# interface vlan [vlanID] //进入vlan端口

S1(config-if)#switchport mode trunk //端口设置为trunk模式

三层交换机设置trunk:

S1>enable //进入特权模式

S1#config terminal //进入全局配置模式

S1(config)# interface vlan [vlanID] //进入vlan端口

S1(config-if)#switchport trunk encapsulation dot1q //封装协议

S1(config-if)#Switchport mode trunk //端口设置为trunk模式

扩展资料

交换机常见命令:

S1(config-if)#switchport trunk native vlan [vlanID] //设置为本征vlan

S1(config-if)#switchport trunk allowed vlan word/add/all/except/none/remove

//运行哪些vlan在本征vlan通信

S1(config-if)# do show interface trunk //查看端口trunk

S1#Show interface trunk //查看中继接口状态

S1#Show vlan brief //查看VLAN摘要信息

温馨提示:内容为网友见解,仅供参考
第1个回答  2017-10-17
trunk的配置方法在二层交换机和三层交换机的配置方法都是一样的。
en
conf t
int f0/24 (端口号自己定,我这个就是个例子)
Switchport mode trunk (指定端口类型为trunk,如果不行就是先设置为access,然后在设置为trunk)
switchport trunk encapsulation dot1q (指定trunk封装协议为dot1q)
switchport trunk allowed vlan 10,20 (思科trunk默认允许所有vlan通过,可以使用改名了设置允许通过trunk的vlan)
步骤和命令都一样,注意要做trunk链路两端的端口都要配置。本回答被网友采纳
相似回答