Although the router does not support a default-metric command, the redistribute command provides two ways to set a default metric for redistributed routes.
You can simply configure a metric with the redistribute command to apply to all routes redistributed from the specified source protocol:
- host1(config)#router ospf 5
- host1(config-router)#redistribute bgp metric
5
Alternatively, you can create one or more route maps that set the metric and apply them selectively to redistributed routes:
- host1(config)#access-list 1 permit any any
- host1(config)#route-map defmetric
- host1(config-route-map)#match ip address 1
- host1(config-route-map)#set metric 10
- host1(config-route-map)#exit
- host1(config)#router ospf 5
- host1(config-router)#redistribute bgp route-map
defmetric
- host1(config-router)#redistribute isis route-map
defmetric
See JUNOSe IP Services Configuration Guide, for information about configuring route maps.