09-03-2017 12:32 PM - edited 03-05-2019 09:05 AM
Hello guys i'm new to configuring routing protocols and I'm trying to understand why I keep getting a "destination host unreachable message"when I ping from router to router across a frame-relay cloud or from one host in vlan 40 or 50 to another host in vlan 20 or 30.
Anyone care to share where I should fix my mistake in configuration? Thank you for helping in advance
Attached packet tracer file below
Solved! Go to Solution.
09-04-2017 09:14 AM
Hello,
you have simply misconfigured your serial interfaces with IP addresses that do not belong to the same subnet, and subsequently advertise the wrong network in EIGRP (which keeps EIGRP from establishing a neighbor). Here is what you should configure:
ro
interface Serial2/0
bandwidth 64
ip address 200.90.80.2 255.255.255.0
encapsulation frame-relay
frame-relay map ip 200.90.80.1 101 broadcast
!
router eigrp 1
network 200.90.80.0
network 192.168.20.0
network 192.168.30.0
no auto-summary
r1
interface Serial3/0
bandwidth 64
ip address 200.90.80.1 255.255.255.0
encapsulation frame-relay
frame-relay map ip 200.90.80.2 201 broadcast
clock rate 2000000
!
router eigrp 1
network 200.90.80.0
network 192.168.40.0
network 192.168.50.0
no auto-summary
09-04-2017 09:14 AM
Hello,
you have simply misconfigured your serial interfaces with IP addresses that do not belong to the same subnet, and subsequently advertise the wrong network in EIGRP (which keeps EIGRP from establishing a neighbor). Here is what you should configure:
ro
interface Serial2/0
bandwidth 64
ip address 200.90.80.2 255.255.255.0
encapsulation frame-relay
frame-relay map ip 200.90.80.1 101 broadcast
!
router eigrp 1
network 200.90.80.0
network 192.168.20.0
network 192.168.30.0
no auto-summary
r1
interface Serial3/0
bandwidth 64
ip address 200.90.80.1 255.255.255.0
encapsulation frame-relay
frame-relay map ip 200.90.80.2 201 broadcast
clock rate 2000000
!
router eigrp 1
network 200.90.80.0
network 192.168.40.0
network 192.168.50.0
no auto-summary
09-04-2017 10:30 AM
Thank you so much George! Do the interfaces of the devices going towards the cloud frame-relay setup have to always be in the same subnet weather multi-point or point-to-point ?
09-04-2017 10:48 AM
Chris,
the short answer is: yes, IP addresses from the same subnet are required.
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