当前位置:首页 » 数据仓库 » 思科交换机如何配置trunk
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

思科交换机如何配置trunk

发布时间: 2022-02-05 10:50:31

❶ 交换机的trunk接口怎么配置

楼上的那位,连协议都没配。cisco交换怎么会让你配置trunk,一看就是来的。
config)#int
f1/1
config-if)#switchport
trunk
encapsulation
dot1q/isl
config-if)#switchport
mode
trunk
config-if)#switchport
trunk
allowed
vlan
all

❷ 思科模拟器交换机trunk链路配置

你要先敲sw mode trunk,之后再敲和trunk相关的命令。

❸ Cisco交换机Trunk配置命令!

先要设置trunk的封装方式,常用的是802.1Q。所以先要用命令
switchport
trunk
encapsulation
dot1q

❹ 思科交换机配置问题vlan和trunk

个人之见,配置虽然能上去,但是要看实际运行结果。这配置导致的最终结果是,本接口实际运行模式是TRUNK,而非是ACCESS,因此即便配置了ACCESS的默认VLAN,在TRUNK模式下没太多意义。除非接口工作在TRUNK模式下,这个access vlan 100才有意义。 看看效果:
Name: Fa0/2
Switchport: Enabled
Administrative Mode: trunk
Operational Mode: trunk
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 100 (VLAN0100)
Trunking Native Mode VLAN: 1 (default)
Voice VLAN: none

其中,Operational Mode: trunk 实际模式是TRUNK,而另外那条命令影响的是这个结果

Access Mode VLAN: 100 (VLAN0100),也就是影响的是ACCESS模式下的默认VLAN

如果是在华为设备,这个VLAN被称为default VLAN ,用于接口的PVID。

❺ cisco 2个二层交换机 如何配置trunk

在全局配置模式下,先进入端口,然后no shutdown ,switchport mode trunk

❻ 思科交换机配置trunk遇到的问题怎么解决

思科的交换机接口在配置trunk的时候需要先进行封装dot1q的,在接口下面使用以下两个命令就可以实现了,注意先后顺序 。
interface GigabitEthernet1/0/25
switchport trunk encapsulation dot1q
switchport mode trunk

❼ cisco2960交换机做TRUNK如何设置

en
conf t
int f0/1
sw m trunk
end

❽ 思科交换机怎样将端口划入trunk

1、首先通过电脑终端软件连接思科交换机。

❾ 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模式

(9)思科交换机如何配置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摘要信息