子网内的某些IP不可达

我正在运行3个Debian-Servers,每个都有自己的IPMI。 所有的IP都在同一网关的同一个子网内。 问题是,每台服务器可以ping自己的IPMI,但不能ping其他2台服务器的IPMI。

也就是说,所有3个IPMI和服务器都可以通过IP从外部进行ping命令和访问。

每个服务器有2个网卡,eth0是外部networking,eth1用于服务器之间的内部stream量。

我的networkingconfiguration如下所示:

为eth0

1.2.3.84 (Server1) 1.2.3.85 (Server2) 1.2.3.86 (Server3) 1.2.3.71 (IPMI Server1) 1.2.3.76 (IPMI Server2) 1.2.3.66 (IPMI Server3) 1.2.3.65 (Gateway) 255.255.255.224 (Netmask) 

ETH1

 10.10.10.1 (Server1) 10.10.10.2 (Server2) 10.10.10.3 (Server3) 

/ etc / network / interfaces (在本例中是Server1的一个)

 auto eth0 iface eth0 inet static address 1.2.3.84 netmask 255.255.255.224 gateway 1.2.3.65 # default route to access subnet up route add -net 1.2.3.64 netmask 255.255.255.224 gw 1.2.3.65 eth0 auto eth1 iface eth1 inet static address 10.10.10.1 netmask 255.255.255.0 

路由-n (在server1上)

 Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 1.2.3.64 1.2.3.65 255.255.255.224 UG 0 0 0 eth0 1.2.3.64 0.0.0.0 255.255.255.224 U 0 0 0 eth0 10.10.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1 0.0.0.0 1.2.3.65 0.0.0.0 UG 0 0 0 eth0 

任何想法,为什么IPMI不能从其他服务器访问?

编辑

所使用的IPMI是一个“Intel远程pipe理模块(RMM)”,它使用configuration用于pipe理并与操作系统共享的共享NIC(根据手册)。

服务器 – 以及子网外的任何外部服务器 – 连接到IMPI都没有问题。

Server1的RMM的networkingconfiguration是:

 IP Address: 1.2.3.71 Subnet Mask: 255.255.255.224 Default Gateway: 1.2.3.65 

从服务器到它自己的IPMI的跟踪路由显示如下

 traceroute to 1.2.3.71 (1.2.3.71), 30 hops max, 60 byte packets 1 static.25.184.xyclients.your-server.de (yx184.25) 0.921 ms 0.914 ms 0.941 ms 2 static.71.3.2.1.clients.your-server.de (1.2.3.71) 10.457 ms 10.460 ms 10.446 ms