Link to home
Start Free TrialLog in
Avatar of ccie13026
ccie13026

asked on

Access-list for a redistribution

just wondering if the following access-list for a route-map to be used for ospf redistribution will work?  
I am trying to deny just a host within a network and redistribute all IPs on that network.  The access-list and route-map
is below:

!
router ospf 10
 redistribute static metric 1 metric-type 1 subnets route-map REDISTRIBUTE-STATIC

!
route-map REDISTRIBUTE-STATIC permit 10
 match ip address 30
 set metric 1
!
access-list 30 deny host 192.168.5.80
access-list 30 permit 192.168.5.0 0.0.0.255
access-list 30 permit 172.1.1.0 0.0.0.255
access-list 30 deny any log

 Thanks much,
Paula
ASKER CERTIFIED SOLUTION
Avatar of John Meggers
John Meggers
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ccie13026
ccie13026

ASKER

This was something to try and not a complete solution.