EIGRP || Advertise Loopback as /32 instead of /24 ||
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 07:31 AM
Hello everyone,
Assuming that we have 2 routers as EIGRP neighbors directly connected via the Gi0/0.
R1 is configured with a Loopback IP (192.168.1.1/24).
I would like to ask if there is a way to advertise two separate routes to R2:
1. one route for 192.168.1.0/24
2. one route for 192.168.1.1/32
In other worlds, i would like to include the /32 Loopback1 in the EIGRP route domain and the /24 Network simultaneously.
Configuration as follows:
R1
!
int Lo1
ip add 192.168.1.1 255.255.255.0
int Gi0/0
ip add 172.28.12.1 255.255.255.0
!
router eigrp 12
no auto
passive-interface default
no passive-interface Gi0/0
net 172.28.12.0 0.0.0.255
net 192.168.1.0 0.0.0.255
R2
!
int Gi0/0
ip add 172.28.12.2 255.255.255.0
!
router eigrp 12
no auto
passive-interface default
no passive-interface Gi0/0
net 172.28.12.0 0.0.0.255
---------------------------
P.S: In case the Loopback is configured as /32 this can be accomplished using summary-address & leak-map.
This solution has been discussed in the threat
Here, I am looking for a solution in case the Loopback is configured as /24
Thanks
- Labels:
-
Routing Protocols
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 07:50 AM
I am not clear why you would want to advertise both 192.168.1.0/24 and 192.168.1.1/32. But if you want to do this I would think that a static route ip route 192.168.1.1 255.255.255.255 null0 (or some other next hop) and under router eigrp redistribute static should accomplish what you want.
HTH
Rick
Rick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 08:21 AM
Richard, that won't work because of the "L" type route on the source router. The "L" route will always be preferred, because it has AD of 0, being type "Connected", so static to Null0 will lose. I don't think there is a way to advertise that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 08:22 AM
A. Androul, unfortunately I don't think there is a solution for such a case. Is there a reason for such a strange requirement or is it just a lab exercise?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 08:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2019 08:48 AM
