As always, correction are encouraged.
You can configure an EIGRP router to filter routes from being advertised or from being accepted.
Objective: Filter out the route to 10.0.254.1/32 from being advertised to the rest of the network via EIGRP.
ip prefix-list PRE1 deny 10.0.254.1/32 ip prefix-list PRE1 permit 0.0.0.0/0 le 32 ! router eigrp 1 distribute-list prefix PRE1 out -- OR -- ip access-list standard ACL1 deny 10.0.254.1 0.0.0.255 permit any ! router eigrp 1 distribute-list ACL1 out
Latest posts by jac (see all)
- Updating Stuff on Netbox with Pynetbox - January 25, 2023
- Adding Stuff to Netbox with Pynetbox - January 17, 2023
- Query Filtering with Pynetbox - January 16, 2023
1 comment for “EIGRP Notes – Route Filtering”