10-20-2010 02:47 PM - edited 03-11-2019 11:57 AM
I'm trying to release a default route learned via OSPF into EIGRP in an ASA running version 8.2.2. my config is
router eigrp 1
redist ospf 1 metric 10000 100 100 100 1500 route-map STATIC
access-list DEFAULT permit 0.0.0.0 0.0.0.0
route-map STATIC permit 10
match ip address DEFAULT
however, my upstream eigrp neig peering with the ASA seem to see all my other routes beside the default route. I can filter it out by putting a deny lines ahead fo the permit 0.0.0.0 of course but wondering am I writing to ACL correctly ?
on a side note, if try to use this config instead, I don't see the default route on my upstream eigrp neig at all.
router eigrp 1
default-information out DEFAULT
access-list DEFAULT permit 0.0.0.0 0.0.0.0
route-map STATIC permit 10
match ip address DEFAULT
Thanks
10-20-2010 06:25 PM
Hello,
I am looking into this at this point, Normally what you would do is to redistribute the whole protocol and filter. The ACL is not wrong, it is created as an standard ACL and what it is telling the ASA is not to redistribute only the default route, but you are telling him to redistribute everything.
Let me get back to you.
Mike
10-20-2010 07:23 PM
sounds like 2 things ?
1) you have to redistribute the 'ENTIRE' protocol in a ASA....
2) that's not how you write a 'default route' only ACL unlike a router ACL...