Halo wrote:
Well from reading your diagram, you have a serial connection between R4's s0/0/0 and R1's s0/0/0.
The interface on R4 has an IP address of 192.168.4.1 /24
The RIP process on R4 does not, however, include the 192.168.4.1 interface.
Which means that the other routers running RIP (R5 and R6) won't have this network in their routing tables as they won't have been told about it.
Good observation! So I ran the command (network 192.168.4.1) in R4 and now that network is being advertised:
R5 show ip route
Quote:
R5#sh ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
i - IS-IS, 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
10.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
C 10.0.1.0/24 is directly connected, Serial0/0/0
C 10.0.2.0/24 is directly connected, Serial0/0/1
C 10.0.2.2/32 is directly connected, Serial0/0/1
R 10.0.3.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
[120/1] via 10.0.2.2, 00:00:24, Serial0/0/1
C 10.0.4.0/24 is directly connected, Loopback0
C 10.0.5.0/24 is directly connected, Loopback1
R 192.168.0.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
R 192.168.1.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
R 192.168.2.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
R 192.168.3.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
R 192.168.4.0/24 [120/1] via 10.0.1.1, 00:00:15, Serial0/0/0
R6 show ip route
Quote:
R6#sh ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
i - IS-IS, 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
10.0.0.0/8 is variably subnetted, 6 subnets, 2 masks
R 10.0.1.0/24 [120/1] via 10.0.2.1, 00:00:27, Serial0/0/1
[120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
C 10.0.2.0/24 is directly connected, Serial0/0/1
C 10.0.2.1/32 is directly connected, Serial0/0/1
C 10.0.3.0/24 is directly connected, Serial0/0/0
R 10.0.4.0/24 [120/1] via 10.0.2.1, 00:00:27, Serial0/0/1
R 10.0.5.0/24 [120/1] via 10.0.2.1, 00:00:27, Serial0/0/1
R 192.168.0.0/24 [120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
R 192.168.1.0/24 [120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
R 192.168.2.0/24 [120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
R 192.168.3.0/24 [120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
R 192.168.4.0/24 [120/1] via 10.0.3.1, 00:00:22, Serial0/0/0
R5 and R6 are now able to ping 192.168.4.1 (serial interface on R4) however they cannot ping 192.168.4.2 (serial interface on R1). Seeing as how R4 is advertising all my 192.168 networks, would I be wrong to assume that the packets can reach those networks, but cannot find their way back?
Halo wrote:
That's the first thing that came to mind. The second one was a little more pernicious. When you say redistribute, do you mean it in a specifically networking sense, or in a more general 'this is where my statically-addressed network meets my dynamically-addressed network'. There's quite a difference.
In theory in can be solved by entering the following commands on R4
router rip
redistribute static
But I think it's best if you hang fire on entering those commands (or save your topology before you do). Redistribution isn't something that's tackled in the CCNA syllabus, nor do I have any notable experience in its behaviour in packet tracer.
Like you said, this is out of my CCNA scope. I was literally just building a large packet tracer simulation with all the necessary elements for my CCNA studies, and I figured why not enable communication between all the different network types (instead of having a bunch of standalone networks). With that said, I guess I meant it in a general sense, where my static network meets my dynamic one.
Thanks for your answers so far!