本帖最后由 task 于 2009-8-4 16:08 编辑
首先分析下路由表
R1: C 140.1.0.0/16 is directly connected, FastEthernet0/0
R2: C 140.1.0.0/16 is directly connected, FastEthernet0/0
R3: 140.1.0.0/24 is subnetted, 1 subnets
C 140.1.2.0 is directly connected, FastEthernet0/0
A: ip 140.1.1.10 mask 255.255.0.0
B: ip 140.1.2.11 mask 255.255.0.0
C: ip 140.1.2.12 mask 255.255.255.0
R1的掩码是255.255.0.0,同网段的IP是140.1.0.1-140.1.255.254,包括了R2和R3的IP。
R2的掩码是255.255.0.0,同网段的IP是140.1.0.1-140.1.255.254。包括了R1和R3的IP。
R3的掩码是255.255.255.0,同网段的IP是140.1.2.1-140.1.2.254,不包括R1的IP,但包括了R2的IP。
所以:
R1:ping得通R2 ,ping不通R3(回包不了)
R2:ping得通R1,R3
R3:ping不通R1(发包不了,路由表没有),ping得通R2
debug ip packet不通的下看看:
R1:IP: s=140.1.1.10 (local), d=140.1.2.12 (FastEthernet0/0), len 100, encapsulation failed.
R3:IP: s=140.1.2.12 (local), d=140.1.1.10, len 100, unroutable. |