Dell FCX624-I Laptop User Manual


  Open as PDF
of 1494
 
954 PowerConnect B-Series FCX Configuration Guide
53-1002266-01
Configuring OSPF
29
The commands in this example configure some static IP routes, then configure a route map and
use the route map for redistributing static IP routes into OSPF.
The ip route commands configure the static IP routes. The route-map command begins
configuration of a route map called “abc”. The number indicates the route map entry (called the
“instance”) you are configuring. A route map can contain multiple entries. The software compares
packets to the route map entries in ascending numerical order and stops the comparison once a
match is found.
The match command in the route map matches on routes that have 5 for their metric value (cost).
The set command changes the metric in routes that match the route map to 8.
The redistribution static command enables redistribution of static IP routes into OSPF, and uses
route map “abc“ to control the routes that are redistributed. In this example, the route map allows
a static IP route to be redistributed into OSPF only if the route has a metric of 5, and changes the
metric to 8 before placing the route into the OSPF route table.
Syntax: [no] redistribution bgp | connected | rip | static [route-map <map-name>]
The bgp | connected | rip | static parameter specifies the route source.
The route-map <map-name> parameter specifies the route map name. The following match
parameters are valid for OSPF redistribution:
match ip address | next-hop <ACL-num>
match metric <num>
match tag <tag-value>
The following set parameters are valid for OSPF redistribution:
set ip next hop <ip-addr>
set metric [+ | - ]<num> | none
set metric-type type-1 | type-2
set tag <tag-value>
NOTE
You must configure the route map before you configure a redistribution filter that uses the route
map.
NOTE
When you use a route map for route redistribution, the software disregards the permit or deny action
of the route map.
PowerConnect(config)#ip route 1.1.0.0 255.255.0.0 207.95.7.30
PowerConnect(config)#ip route 1.2.0.0 255.255.0.0 207.95.7.30
PowerConnect(config)#ip route 1.3.0.0 255.255.0.0 207.95.7.30
PowerConnect(config)#ip route 4.1.0.0 255.255.0.0 207.95.6.30
PowerConnect(config)#ip route 4.2.0.0 255.255.0.0 207.95.6.30
PowerConnect(config)#ip route 4.3.0.0 255.255.0.0 207.95.6.30
PowerConnect(config)#ip route 4.4.0.0 255.255.0.0 207.95.6.30 5
PowerConnect(config)#route-map abc permit 1
PowerConnect(config-routemap abc)#match metric 5
PowerConnect(config-routemap abc)#set metric 8
PowerConnect(config-routemap abc)#router ospf
PowerConnect(config-ospf-router)#redistribution static route-map abc