Link to home
Start Free TrialLog in
Avatar of leblanc
leblanc

asked on

Cisco router route-map

I have a sample of the following code on the Cisco router and I am trying to understand the purpose of the route map BGP-OSPF:

ip prefix-list BGP-OSPF-DENY seq 5 permit 192.168.0.0/16
!
route-map BGP-OSPF deny 10
 match ip address prefix-list BGP-OSPF-DENY
!
route-map BGP-OSPF permit 100
 set metric-type type-1
...
router bgp 65001
 bgp router-id 1.1.1.1
 neighbor 192.168.1.1 remote-as 65010

router ospf
 router-id 1.1.1.1
 network 192.168.0.0 0.0.255.255 area 0
default-information originate metric-type 1 metric 100
redistribute bgp 65010 subnets route-map BGP-OSPF

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Don Johnston
Don Johnston
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