We have set up OSPF between our 2 ASA 5540 running in Active/Passive and our Internet provider's Juniper routers. We would like to advertise routes based on the content of an ACL through a route-map :
router ospf 1
router-id X.X.X.A
network X.X.X.B 255.255.255.248 area 0
area 0 authentication message-digest
log-adj-changes
redistribute static metric 10 subnets route-map annonce_ospf_isp
route-map annonce_ospf_isp permit 1
match ip address redistribute_isp
access-list redistribute_isp standard permit Y.Y.Y.C 255.255.255.252
If I advertise a /30, no problem : it shows up in the ospf database and the route is inserted in other routers.
However if I advertise a /32 then nothing happens: it's not in the database, it's not advertised :
access-list redistribute_neo standard permit host Y.Y.Y.D
What is the problem?