- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2014 07:00 AM - edited 03-07-2019 05:30 PM
Hello
I'm doing Redistribute in GNS3, please download my lab first in attached file.
You can see four routers, R1,R2,R3 running OSPF in vlan 10,20,30, can ping each ip address between three routers, then I added R4 and R5 for testing
redistribute static route. In R3, I have create default route to R4 and R4 create default route to R3 and so on. In R2 also create default route to R5 and R5
create default route to R2 and so on.
But still cannot ping between R4 and R5, please help.
Thanks
Solved! Go to Solution.
- Labels:
-
Other Switching

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2014 04:57 AM
On R4, run "debug ip icmp" and start your ping again from R5. Post the results....
HTH,
John
*** Please rate all useful posts ***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2014 05:13 AM
Log from R4
R4#
00:07:14: ICMP: echo reply sent, src 192.168.10.2, dst 172.17.228.2
00:07:14: ICMP: echo reply sent, src 192.168.10.2, dst 172.16.228.2
00:07:14: ICMP: dst (192.168.10.2) host unreachable rcv from 192.168.30.1
R4#
00:07:16: ICMP: echo reply sent, src 192.168.10.2, dst 10.10.228.2
00:07:16: ICMP: dst (192.168.10.2) host unreachable rcv from 192.168.10.1
R4#
00:07:18: ICMP: echo reply sent, src 192.168.10.2, dst 172.17.228.2
00:07:18: ICMP: echo reply sent, src 192.168.10.2, dst 172.16.228.2
00:07:18: ICMP: dst (192.168.10.2) host unreachable rcv from 192.168.30.1
Ping from R5
R5#ping 192.168.10.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.10.2, timeout is 2 seconds:
!..!.
Success rate is 40 percent (2/5), round-trip min/avg/max = 80/90/
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2014 06:23 AM
Wilson,
You have a default route on R5 that points to 3 different gateways. You've advertised only one of those networks on R2 so R4 would know about it. Since you have 3 equal cost routes, the router will load balance and send a packet out of each one, so that's why you're seeing drops and different destination addresses because R3 doesn't know about the other two networks that are on R2/R5:
00:07:14: ICMP: echo reply sent, src 192.168.10.2, dst 172.17.228.2
00:07:14: ICMP: echo reply sent, src 192.168.10.2, dst 172.16.228.2
You'll need to advertise 172.17.228.0/24 and 10.10.228.0/24 on R2 as well and you're problem would be resolved:
R5#ping 192.168.10.2 rep 50
Type escape sequence to abort.
Sending 50, 100-byte ICMP Echos to 192.168.10.2, timeout is 2 seconds:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Success rate is 100 percent (50/50), round-trip min/avg/max = 64/83/116 ms
R5#
HTH,
John
*** Please rate all useful posts ***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2014 09:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2014 04:43 AM
No ping delay now, thanks !

- « Previous
-
- 1
- 2
- Next »