09-28-2017 05:44 PM - edited 03-08-2019 12:12 PM
Hi, now I am practicing the network.
And redistributing, It is difficult for me.
I don't know how do I redistribute between static routing and RIPv2?
I attached the topology,, please let me know.
I setted ..
R1
#int f0/0
#ip add 172.100.100.1 255.255.255.0
#int s0/0/0
#ip add 172.110.100.100 255.255.255.0
#rou rip
#v 2
#net 172.100.100.0
#net 172.110.100.0
#no au
R2
#int s0/0/0
#ip add 172.110.100.200 255.255.255.0
#int s0/0/1
#ip add 172.120.100.100 255.255.255.0
#rou rip
#v 2
#net 172.110.100.0
#net 172.120.100.0
#no au
R3
#int s0/0/0
#ip add 172.120.100.200 255.255.255.0
#int s0/0/1
#ip add 192.168.100.100 255.255.255.0
#int s0/1/0
#ip add 192.168.110.100 255.255.255.0
#ip route 0.0.0.0 0.0.0.0 192.168.100.200
#ip route 0.0.0.0 0.0.0.0 192.168.110.200
#ip route 0.0.0.0 0.0.0.0 172.120.100.100
R4
#int s0/0/0
#ip add 192.168.10.200 255.255.255.0
#int f0/0
#ip add 192.168.140.1 255.255.255.0
#ip route 192.168.130.0 255.255.255.0 192.168.100.100
R5
#int s0/0/0
#ip add 192.168.110.200 255.255.255.0
#int f0/0
#ip add 192.168.130.1 255.255.255.0
#ip route 192.168.140.0 255.255.255.0 192.168.110.100
In this,,,
What can I do to connect everything?
Thank you.
Solved! Go to Solution.
09-28-2017 11:47 PM - edited 09-28-2017 11:48 PM
Hi,
Please look at the link provided by Philip above.
Change the configuration on R3, R4 and R5:-
R3
int s0/0/0
ip add 172.120.100.200 255.255.255.0
int s0/0/1
ip add 192.168.100.100 255.255.255.0
int s0/1/0
ip add 192.168.110.100 255.255.255.0
!
ip route 192.168.130.0 255.255.255.0 192.168.110.200
ip route 192.168.140.0 255.255.255.0 192.168.100.200
!
router rip
version 2
network 172.120.100.0 255.255.255.0
network 192.168.100.0
network 192.168.110.0
redistribute static
!
R4
int s0/0/0
ip add 192.168.10.200 255.255.255.0
int f0/0
ip add 192.168.140.1 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 192.168.100.100
R5
int s0/0/0
ip add 192.168.110.200 255.255.255.0
int f0/0
ip add 192.168.130.1 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 192.168.110.100
You should have end to end reachability.
Please do not forget to rate it if you found it helpful : )
HTH,
Meheretab
09-28-2017 06:50 PM
router rip
redistribute static
09-28-2017 06:57 PM
It applied at R2 or R3 or every router?
09-28-2017 06:58 PM
09-28-2017 08:43 PM
sorry, isn't work...
static router(r4, r5) couldn't reading the rip router(r1,r2)
09-28-2017 11:15 PM
Hello,
Since you're practicing in the PT. I'd suggest you to share your lab. Someone will config redistribution and share it with you. You can compare the config. Hope it helps you learn more.
If you find a post helpful. Mark it as helpful.
Regards,
Moses.
09-28-2017 11:47 PM - edited 09-28-2017 11:48 PM
Hi,
Please look at the link provided by Philip above.
Change the configuration on R3, R4 and R5:-
R3
int s0/0/0
ip add 172.120.100.200 255.255.255.0
int s0/0/1
ip add 192.168.100.100 255.255.255.0
int s0/1/0
ip add 192.168.110.100 255.255.255.0
!
ip route 192.168.130.0 255.255.255.0 192.168.110.200
ip route 192.168.140.0 255.255.255.0 192.168.100.200
!
router rip
version 2
network 172.120.100.0 255.255.255.0
network 192.168.100.0
network 192.168.110.0
redistribute static
!
R4
int s0/0/0
ip add 192.168.10.200 255.255.255.0
int f0/0
ip add 192.168.140.1 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 192.168.100.100
R5
int s0/0/0
ip add 192.168.110.200 255.255.255.0
int f0/0
ip add 192.168.130.1 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 192.168.110.100
You should have end to end reachability.
Please do not forget to rate it if you found it helpful : )
HTH,
Meheretab
08-23-2023 01:58 AM
maybe there is no need to advertise networks 192.168.100.0 and 192.168.110.0 via rip from R3.
Its enough to distribute the connected networks via rip using the following:
R3(config-router)# redistribute connected
and we will be ok as bellow:
R2#show ip route rip
172.100.0.0/24 is subnetted, 1 subnets
R 172.100.100.0 [120/1] via 172.110.100.100, 00:00:25, Serial0/0/0
172.120.0.0/16 is variably subnetted, 2 subnets, 2 masks
R 192.168.100.0/24 [120/1] via 172.120.100.200, 00:00:18, Serial0/0/1
R 192.168.110.0/24 [120/1] via 172.120.100.200, 00:00:18, Serial0/0/1
R 192.168.130.0/24 [120/1] via 172.120.100.200, 00:00:18, Serial0/0/1
R 192.168.140.0/24 [120/1] via 172.120.100.200, 00:00:18, Serial0/0/1
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide