Configuring a Fixed Default Route: Example
A default static route is often used in simple router topologies. In the following example, a route is configured
with an administrative distance of 110.
configure
router static
address-family ipv4 unicast
0.0.0.0/0 2.6.0.1 110
end
Configuring a Floating Static Route: Example
A floating static route is often used to provide a backup path if connectivity fails. In the following example,
a route is configured with an administrative distance of 201.
configure
router static
address-family ipv6 unicast
2001:0DB8::/32 2001:0DB8:3000::1 201
end
Configuring a Static Route Between PE-CE Routers: Example
In the following example, a static route between PE and CE routers is configured, and a VRF is associated
with the static route:
configure
router static
vrf vrf_A
address-family ipv4 unicast
0.0.0.0/0 2.6.0.2 120
end
Additional References
The following sections provide references related to implementing Static Routes.
Related Documents
Document TitleRelated Topic
Static Routing Commands in Cisco ASR 9000 Series
Aggregation Services Router Routing Command
Reference
Static routes commands: complete command syntax,
command modes, command history, defaults, usage
guidelines, and examples
Cisco ASR 9000 Series Aggregation Services Router
MPLS Configuration Guide
MPLS Layer 3 VPN configuration: configuration
concepts, task, and examples
Cisco ASR 9000 Series Aggregation Services Router Routing Configuration Guide, Release 5.1.x
OL-30423-03 565
Implementing Static Routes
Configuring a Fixed Default Route: Example