Link to home
Start Free TrialLog in
Avatar of Evolutionzz
Evolutionzz

asked on

OSPF Redistribution

How do I get a route to redistribute into OSPF 100 from OSPF 1?  And how to I create a route-map?
Avatar of Soulja
Soulja
Flag of United States of America image

On the ASBR that has both OSPF processes

conf t

router ospf 100
redistribute ospf 1 subnets

router ospf 1
redistribute ospf 100 subnets


For the route-map


access-list 1 permit x.x.x.x 0.0.0.x

route-map Filter permit 10
match ip address 1     ***matches the network or host you put in the above ACL.

You can add this to the redistribute to determine what you want to filter.


Example:

router ospf 100
redistribute ospf 1 subnets router-map Filter
Avatar of Evolutionzz
Evolutionzz

ASKER

how can I set up the access list using extended access list?
this is what I had.  Where's the mistake?

router ospf 100
 redistribute ospf 1 subnets route-map ospf1-to-ospf100
^Z
wr mem

conf t
route-map ospf1-to-ospf100
route-map ospf1-to-ospf100 permit    (not sure what goes here)

WA2-DATA-CORE-1#
conf t
ip access-list extended ospf1-to-ospf100
permit ip 10.0.0.0 0.255.255.255 any
permit ip 172.16.24.0 0.0.7.255 any                          
permit ip 172.16.128.0 0.0.7.255 any
deny ip any any
ASKER CERTIFIED SOLUTION
Avatar of Soulja
Soulja
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