Dell PowerConnect 5424上的中继端口

我需要在PowerConnect 5424上configuration一个端口作为Trunk端口。 该端口将连接到一个Cisco路由器,该路由器将为2个独立的VLAN传送stream量 – 我需要交换机将stream量传送到正确的VLAN。

从Webconfiguration工具中,我可以configuration一个端口在Trunk模式下工作,但是我看不到一种方法来设置我希望端口参与的VLANS。 当我将端口设置为Trunk的端口VLAN模式时,PVID被设置为1,并且我没有看到改变PVID或向其添加多个值的方式。

任何有关如何做到这一点的见解?

谢谢,琼

您应该能够返回到端口VLAN成员资格屏幕,并为该端口selectVLAN。 你可以逐个端口地进行,而不是逐个VLAN,这对于中继端口来说倒是有些不好。

回想一下,PVID或Priority VLAN ID是交换机将分配非标记数据包给该端口看到这样的数据包的VLAN。 所以你要确保没有设置你希望通过端口标记的VLAN。

我不能告诉你如何在Web界面上进行configuration,因为在configuration交换机时我将它们closures,但是这里是在CLI上执行它的命令(它是从5424和一个思科交换机):

interface ethernet 1/7 description some_description no negotiation switchport allowed vlan add 1 untagged switchport native vlan 1 switchport mode trunk switchport allowed vlan add 1,3-10 tagged 

是的,是的,我知道使用VLAN1是一个不错的…但老实说,这些皮卡是让他们工作 – 让他们工作 – 所有除了vlan 1之外的东西都是不值得的。 只要我把最后一个从我的networking中删除,它就会被更改。

这里是CLI解决scheme,顶端是一个通用解决scheme,底部专门设置端口23和24作为中继端口。

中继端口

console> enable

控制台#configuration

console(config)#vlan数据库

console(config-vlan)#vlan 2(根据需要重复编号,重复每个在交换机上尚未创build的VLAN)

console(config-vlan)#exit

控制台(configuration)#接口以太网g24(使用任何你喜欢的端口)

console(config-if)#switchport mode trunk

console(config-if)#switchport trunk allowed vlan add 2(使用所需的VLAN号码,对于除了VLAN 1之外的每个需要在中继线上的VLAN重复。

控制台(config-if)#结束控制台#复制运行开始

=======================具体================

启用

configuration

vlan数据库

vlan 100

vlan 101

vlan 103

出口

接口以太网g23

switchport模式中继

switchport trunk允许vlan添加100

switchport trunk允许vlan add 101

switchport trunk允许vlan add 103

接口以太网g24

switchport模式中继

switchport trunk允许vlan添加100

switchport trunk允许vlan add 101

switchport trunk允许vlan add 103

结束控制台#复制运行开始