cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
683
Views
10
Helpful
3
Replies

Routing router

Ragounee
Level 1
Level 1

Hello,

As part of a project in my diploma I am asked to interconnect 4 routers together as on the screenshot you can see the IP configuration of each of the ports

Cisco P7-1.PNG


Here is my problem, I can't get the routers to communicate with each other, each of which is in a different network, for example if I try to ping from router B:

 

Ping 132.186.32.41


I have no feedback I tried to create routes for example


From Router S :

IP Route 132.186.32.36 255.255.255.252 132.186.32.40


Ping still not working

I'm a little lost I don't know how to make them communicate, can someone guide me? Thanks

1 Accepted Solution

Accepted Solutions

Hello

@Ragounee wrote:

As part of a project in my diploma I am asked to interconnect 4 routers together 

The most simplistic way would be to remove all static routes and then enable dynamic routing for all routed interfaces
Example:

all rtrs
conf t
router eigrp 100
no auto-summary
network 0.0.0.0
exit

Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

View solution in original post

3 Replies 3

router to router can ping each other if they have direct connect 
if not 
you need to have routing protocol or static route 

Joseph W. Doherty
Hall of Fame
Hall of Fame

". . . you can see the IP configuration of each of the ports"

Yea, but cannot see all the information, e.g. cannot see which router is "B" or "S".

Routers (actually any host) "knows" how to reach any other host on a shared network.

So, by default

Ping 132.186.32.41

should only work from the router in the lower left, because it shares 132.186.32.40/30 with the top right router, which has the interface with 132.186.32.41.

For any network not directly connected to a router, it needs to be "informed" of the existence of the network, and what's the next hop to move toward that network.

So, for example for your lower left router to ping 132.186.32.37 or .38, it needs to know of network 132.186.32.36/30 and what the next hop is.

In your topology, all the other routers could be used as next hops.

I.e.: (from lower left router) (BTW you only need one of the following, if path is "up" to work, but others provide alternative paths)

ip route 132.186.32.36 255.255.255.252 132.186.32.49
ip route 132.186.32.36 255.255.255.252 132.186.32.41
ip route 132.186.32.36 255.255.255.252 132.186.32.33

BTW, the top left router must have its own static route statement to 132.186.32.36/30 as it's not directly connected to that network.

Further, for ping to work, return path static route statements will be needed.

In a topology like yours, you might begin to notice, you have quite a few static route statements that would need to be added to each router.

The alternative to static routing is using a dynamic routing protocol and then the routers will "share" what they "know".

E.g.  if each router had:

router ospf 10
network 132.186.32.0 0.0.0.255 area 0

should do the trick too.

Hello

@Ragounee wrote:

As part of a project in my diploma I am asked to interconnect 4 routers together 

The most simplistic way would be to remove all static routes and then enable dynamic routing for all routed interfaces
Example:

all rtrs
conf t
router eigrp 100
no auto-summary
network 0.0.0.0
exit

Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul
Review Cisco Networking for a $25 gift card