cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
954
Views
3
Helpful
4
Replies

Eigrp Distance for specific External Eigrp routes.

Patrick Laidlaw
Level 4
Level 4

I have an external eigrp network in my table that I want to change its distance to 171 but I do not want any of my other eigrp external network distances to change.

I've tried

router eigrp 100

distance 171 192.168.1.0 0.0.0.3 50

access-list 50 permit 192.168.25.0 0.0.0.255

I get hits on the acl when I have the distance command applied for that neighbor but it doesn't change my distance for the 25.0/24 route. If I change that network to an internal eigrp route then it the distance will change to 171. Any ideas how to do this with an external eigrp route.

Patrick

1 Accepted Solution

Accepted Solutions

pkhatri
Level 11
Level 11

Hey Patrick,

That is a known limitation. You cannot use this form of the distance command to change the AD for external routes from an EIGRP neighbor.

One option may be to 'convert' the external route to an internal one by configuring the neighbor advertising that route with a summary-address of 192.168.25.0/24. Then, you can use the distance statement as you configured above to give it an AD of 50.

Paresh

View solution in original post

4 Replies 4

pkhatri
Level 11
Level 11

Hey Patrick,

That is a known limitation. You cannot use this form of the distance command to change the AD for external routes from an EIGRP neighbor.

One option may be to 'convert' the external route to an internal one by configuring the neighbor advertising that route with a summary-address of 192.168.25.0/24. Then, you can use the distance statement as you configured above to give it an AD of 50.

Paresh

Paresh Thanks

Not what I wanted to hear but thanks.

Patrick

Patrick,

Just wondering whether you tried out the summary-address workaround I was suggesting ? Or is that not a legal option for what you are trying to do ?

Paresh

I have tried the summary-address and this way it worked. Converted the external route into internal by summary-address.