Link to home
Start Free TrialLog in
Avatar of ally0000
ally0000Flag for United Kingdom of Great Britain and Northern Ireland

asked on

EIGRP advertised routes - not what I expected

Hi,

I have a fairly easy EIGRP question...see diagram.

I want to have router A and router B configured with EIGRP so that when the Primary microwave wireless link goes down the spread spectrum backup link comes up after the hold time has expired. I also want to be able to advertise all the networks behind each router as follows:

Router A                              Router B
10.10.10.0 /30                     10.10.30.0 /30
10.10.20. /30                       192.168.5.0 /24
172.16.0.0 /20

There is a Layer 3 switch on 172.16.15.254 which is the default gateway for the 172.16.0.0 LAN and I am thinking that this might be used to advertise the relevant networks it connects to however when i turned on EIGRP 100 is wasn't recognised by router A.

Site B's design is a bit screwed up but that will be changing soon to be the same topology as Site A. But that isn't too important right now, I just need to get this failover working.

Site A Router config
--------------------
interface GigabitEthernet0/0
 description Primary Wireless
 bandwidth 100000
 ip address 10.0.0.1 255.255.255.0
 ip mask-reply
 no ip proxy-arp
 ip flow ingress
 ip flow egress
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 description Link to 3650G (L3 Switch) Port G0/2 (Subnet 10.10.10.0/30)
 ip address 10.10.10.2 255.255.255.252
 ip mask-reply
 no ip proxy-arp
 ip flow ingress
 ip flow egress
 duplex auto
 speed auto
!
interface FastEthernet0/3/0
 description Backup Wireless
 bandwidth 18000
 ip address 10.1.0.1 255.255.255.0
 ip mask-reply
 duplex auto
 speed auto
!
router eigrp 100
 network 10.0.0.0 0.0.0.255
 network 10.1.0.0 0.0.0.255
 network 10.10.10.0 0.0.0.3
 no auto-summary

Site B Router config
--------------------
interface GigabitEthernet0/0
 description Site B LAN
 ip address 192.168.5.1 255.255.255.0
 ip mask-reply
 no ip proxy-arp
 ip flow ingress
 duplex auto
 speed auto
!
interface GigabitEthernet0/1
 description Primary Wireless
 bandwidth 100000
 ip address 10.0.0.6 255.255.255.0
 ip mask-reply
 no ip proxy-arp
 ip flow ingress
 duplex auto
 speed auto
!
interface FastEthernet0/3/0
 description Backup Wireless
 bandwidth 18000
 ip address 10.1.0.6 255.255.255.0
 ip mask-reply
 duplex auto
 speed auto
!
router eigrp 100
 network 10.0.0.0 0.0.0.255
 network 10.1.0.0 0.0.0.255
 network 192.168.5.0 0.0.0.255
 no auto-summary

Thanks a lot.

Ally

EIGRP-failover--EE-.jpg
SOLUTION
Avatar of Don Johnston
Don Johnston
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial