使用下面描述的布局,以下情况属实:
- 任一路由器都可以 ping 任一子网上的任何主机
- 192.168.2.0/25 主机可以 ping(和 ssh 到)192.168.3.0/24 主机
但
- 192.168.3.0/24 主机无法 ping 192.168.2.0/25 上的主机
我做错了什么?
我有以下布局:
Linux路由器ip route
:
192.168.2.0/25 dev bond0 proto kernel scope link src 192.168.2.1
a.b.c.d/24 dev eth0 proto kernel scope link src a.b.c.e ### Internet upstream
192.168.3.0/24 via 192.168.2.63 dev bond0
169.254.0.0/16 dev eth0 scope link
default via a.b.c.d dev eth0
思科路由器show ip route
:
router-2600#show ip route
192.168.2.0/25 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, FastEthernet0/0
C 192.168.3.0/24 is directly connected, FastEthernet1/0
S* 0.0.0.0/0 [1/0] via 192.168.2.1
(在 Linux 路由器上配置了 iptables 防火墙,但无论防火墙是否处于活动状态,故障都会继续)