Hi all. Great forum.
I have these 2 routers connected in the following manner.
R1
R2
HUB
PC
s0/0(dte)(192.168.2.11/24)
s0/0(dce)(192.168.2.10) fe0/0(192.168.1.10/24)
(192.168.1.2/24)
I want to be able to boot R1 using a tftp image residing on PC through R2 because R1 doesn't have any ethernet interface.
For that I have added a static route from R1 to PC and here's the output of "show ip route" of both routers.
R1#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
S 192.168.1.0/24 [1/0] via 192.168.2.10
C 192.168.2.0/24 is directly connected, Serial0/0
R2#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
C 192.168.1.0/24 is directly connected, FastEthernet0/0
C 192.168.2.0/24 is directly connected, Serial0/0
The problem is that I can ping left and right through all connected routes, but not PC -> R1 and vice versa.
Any idea what I am missing here?