HP Procurve 2610 VLAN 路由

HP Procurve 2610 VLAN 路由

有人能告诉我为什么除了我新创建的 vlan 4 之外,所有 vlan 之间的路由都能正常工作吗?我有一台 hp procurve 2610。任何帮助都将不胜感激。我基本上有这 1 个交换机,所有非托管交换机都连接到核心。我们在端口 28 上有第二个 2610

Running configuration:


; J9085A Configuration Editor; Created on release #R.11.25

hostname "Core_HP"
interface 22
   speed-duplex 100-full
exit
ip routing
snmp-server community "public" Unrestricted
vlan 1
   name "DEFAULT_VLAN"
   untagged 1-12,17-22,26-27
   ip address 192.168.4.6 255.255.255.0
   no untagged 13-16,23-24,28
   exit
vlan 2
   name "WAN"
   untagged 28
   ip address 10.254.254.3 255.255.255.0
   exit
vlan 3
   name "Wireless"
   untagged 13-16,24
   ip address 192.168.7.6 255.255.255.0
   ip helper-address 192.168.4.2
   tagged 27
   exit
vlan 35
   name "guest"
   untagged 23
   tagged 24
   exit
vlan 4
   name "esxi"
   untagged 25
   ip address 10.10.1.1 255.255.248.0
   exit
ip route 192.168.5.0 255.255.255.0 10.254.254.1
ip route 192.168.6.0 255.255.255.0 10.254.254.1
ip route 0.0.0.0 0.0.0.0 192.168.4.10


show ip route


                        IP Route Entries

  Destination        Gateway         VLAN Type      Sub-Type   M
etric     Dist.
  ------------------ --------------- ---- --------- ---------- -
--------- -----
  0.0.0.0/0          192.168.4.10    1    static               1
          1
  10.10.0.0/21       esxi            4    connected            0
          0
  10.254.254.0/24    WAN             2    connected            0
          0
  127.0.0.0/8        reject               static               0
          250
  127.0.0.1/32       lo0                  connected            0
          0
  192.168.4.0/24     DEFAULT_VLAN    1    connected            0
          0
  192.168.5.0/24     10.254.254.1    2    static               1
          1
  192.168.6.0/24     10.254.254.1    2    static               1
          1
 192.168.7.0/24     Wireless        3    connected            0
          0

show ip 

 Internet (IP) Service

  IP Routing : Enabled


  Default TTL     : 64
  Arp Age         : 20

  VLAN         | IP Config  IP Address      Subnet Mask     Prox
y ARP
  ------------ + ---------- --------------- --------------- ----
-----
  DEFAULT_VLAN | Manual     192.168.4.6     255.255.255.0   No

  WAN          | Manual     10.254.254.3    255.255.255.0   No

  Wireless     | Manual     192.168.7.6     255.255.255.0   No

  esxi         | Manual     10.10.1.1       255.255.248.0   No

  guest        | Disabled

我无法从 192.168.4.22 或该 vlan 上的任何主机 ping 通 10.10.1.1,也无法从该 vlan ping 通 192.168.4.10 或 192.168.4.22,那么是什么原因呢?

当我说不起作用时,我的意思是没有路由到新的 VLAN。连接到 25 的是一个哑交换机(trend net)80 美元的交换机。在 VLAN 内,我可以 ping 10.10.1.1 并且它可以工作。我可以 ping VLAN 上地址为 10.10.1.2 的主机。

答案1

将我的评论转换为答案:(感谢更新,用户 19039!)

如果我大胆猜测一下,如果您目前可以在 VLAN 1 和 3 上的主机之间 ping 通,但不能在 VLAN 1 和 4 上 ping 通,那么 VLAN 1 上的主机要么具有返回 HP 交换机 IP 192.168.4.6 的静态路由(IP 范围为 192.168.7.0/24),要么 192.168.4.10 处的 WAN 路由器具有指向 HP 交换机 192.168.7.6/24 的静态路由,并且您错过了台式计算机或 WAN 路由器上所需的静态路由,以使主机知道如何到达 10.10.1.1

相关内容