在两台HP procurve交换机上configurationVLAN

试图从我的一个出门大楼到我的电脑室,因此我的防火墙路由一个新的ISP(微波链路)。 旧的ISP直接进入防火墙。 在附属build筑中,微波调制解调器与cat5连接到HP Procurve 2524交换机。 由于这个ISP是通过我的内部networking来的,我打算使用一个名为“空速”的新的vlan,只为这个ISPstream量。 到目前为止,我已经在两台HP交换机(4108 + 2524)上使用了Default_vlan

到目前为止,我一直无法ping我的笔记本电脑到ISP调制解调器,这两个都在新的vlan 2(“空速”)。 没有stream量需要从vlan 2交叉到vlan 1,所以我已经把这些端口作为untagged。 我用我的ISP提供的子网作为新的vlan 2子网。 任何人都可以看到我在这里做错了吗? 我在下面添加了两个开关的configuration。

粗略图:

 Microwave modem (Gateway IP 77.75.00.49) | HP 2524 switch (port 24) | HP 2524 switch fibre link | HP 4108GL switch fibre link | HP 4108GL switch (port D1) | Laptop configured with IP 77.75.00.50 (for testing but will be connected to firewall) 

而我的4108GLconfiguration:

 ; J4865A Configuration Editor; Created on release #G.07.21 hostname "HP ProCurve Switch 4108GL" cdp run module 1 type J4864A module 2 type J4862B module 3 type J4862B module 4 type J4862B ip default-gateway 128.1.146.50 snmp-server community "public" Unrestricted snmp-server host 128.1.146.51 "public" Not-INFO snmp-server host 128.1.146.38 "public" vlan 1 name "DEFAULT_VLAN" untagged A1-A3,B1-B24,C1-C24,D2-D24 ip address 128.1.146.203 255.255.0.0 no untagged D1 exit vlan 2 name "Airspeed" untagged D1 ip address 77.75.00.51 255.255.255.248 exit 

最后我的2524configuration:

 ; J4813A Configuration Editor; Created on release #F.04.08 hostname "HP ProCurve Switch 2524" cdp run ip default-gateway 0.0.0.0 snmp-server community "public" Unrestricted snmp-server host 128.1.146.51 "public" Not-INFO snmp-server host 128.1.146.51 "public" snmp-server host 128.1.146.38 "public" vlan 1 name "DEFAULT_VLAN" untagged 1-23,25-26 no untagged 24 ip address 128.1.146.204 255.255.0.0 exit vlan 2 name "Airspeed" untagged 24 ip address 77.75.00.51 255.255.255.248 exit no aaa port-access authenticator active 

根据您发布的configuration,您只有交换机的一个端口(24)configuration为vlan2。 如果您的笔记本电脑和调制解调器在不同的端口(我认为他们是),那么这两个端口都需要vlan 2的untagged成员为此工作。

例如,如果其他设备在端口25上,则应该有:

 vlan 1 name "DEFAULT_VLAN" untagged 1-23,26 no untagged 24-25 ip address 128.1.146.204 255.255.0.0 exit vlan 2 name "Airspeed" untagged 24-25 ip address 77.75.00.51 255.255.255.248 exit no aaa port-access authenticator active 

而不是你发布的内容。