An enterprise edge router R1 connects to two distinct Internet Service Providers via Ethernet interfaces. The network team requires primary outbound traffic to traverse ISP-1 via next-hop IPv4 address on interface GigabitEthernet0/0/1. A backup path must traverse ISP-2 via next-hop IPv4 address on interface GigabitEthernet0/0/2, taking effect only if the primary route fails.
Which two configuration statements or operational characteristics are correct for implementing this routing strategy?
- Configuring `ip route 0.0.0.0 0.0.0.0 203.0.113.1` creates the primary default route with an implicit Administrative Distance of .Cevap
- Configuring `ip route 0.0.0.0 0.0.0.0 198.51.100.1 130` establishes a floating static route that remains inactive in the routing table while the primary route is reachable.Cevap
- CConfiguring `ip route 0.0.0.0 0.0.0.0 198.51.100.1 1` configures the secondary route as a floating backup by matching the administrative distance of the primary route.
- DConfiguring `ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0/2` for the backup route eliminates the need for Proxy ARP on the ISP-2 router.
Cevap
The primary default static route is configured with `ip route 0.0.0.0 0.0.0.0 203.0.113.1` using the default Administrative Distance of 1, while the backup default route is configured with `ip route 0.0.0.0 0.0.0.0 198.51.100.1 130` with a higher Administrative Distance to serve as a floating backup.
The command defining the primary static route uses the standard `ip route 0.0.0.0 0.0.0.0 <next-hop>` syntax, which automatically assigns a default Administrative Distance of 1. The command setting the floating static backup specifies an Administrative Distance of 130, which is higher than the primary route's AD of 1, ensuring it is installed in the active forwarding table only when the primary path becomes unreachable.
Adım Adım Çözüm
Anahtar Kavram
IPv4 Default and Floating Static Route Configuration Mechanics