Hi all
I need a support to configure an EIGRP distribute list on a Nexus 7000 running 5.1(3) version
I would like distribute all subents 192.168.0.0/16 except 192.168.101.0/24
I tried to configure the following prefix-list and everything runs well:
ip prefix-list DL-EIGRP seq 10 deny 192.168.101.0/24
ip prefix-list DL-EIGRP seq 20 permit 192.168.0.0/16 le 32
interface Vlan100
ip distribute-list eigrp 10 prefix-list DL-EIGRP out
instead if I configure a distribute list using route-map and access-list, I cannot stop the 192.168.101.0/24 distribution
ip access-list DL-EIGRP
10 deny ip any 192.168.101.0/24
20 permit ip any 192.168.0.0/16
route-map DL-EIGRP permit 10
match ip address DL-EIGRP
interface Vlan100
ip distribute-list eigrp 10 route-map DL-EIGRP out
someone could explain me why?
thank you in advance
Marco