A network administrator is configuring IPv4 static routing on router R1. Router R1 currently learns the primary route to destination network via iBGP, which has an Administrative Distance of 200. The administrator must configure two static routes:
1. A standard static route to reach network via next-hop IPv4 address .
2. A backup floating static route to reach network via next-hop IPv4 address that remains inactive until the primary iBGP route fails.
Which two `ip route` commands must the administrator configure on router R1?
- ip route 10.100.1.0 255.255.255.0 172.16.1.2Answer
- ip route 192.168.50.0 255.255.255.0 172.16.1.2 210Answer
- Cip route 192.168.50.0 255.255.255.0 172.16.1.2 180
- Dip route 192.168.50.0 255.255.255.0 172.16.1.2 200
Answer
The commands 'ip route 10.100.1.0 255.255.255.0 172.16.1.2' and 'ip route 192.168.50.0 255.255.255.0 172.16.1.2 210' are correct.
The command 'ip route 10.100.1.0 255.255.255.0 172.16.1.2' is correct because it follows standard IPv4 static route syntax to direct traffic destined for network 10.100.1.0/24 to next-hop address 172.16.1.2. The command 'ip route 192.168.50.0 255.255.255.0 172.16.1.2 210' is correct because a floating static route requires an Administrative Distance higher than the primary route (iBGP AD = 200); setting the AD to 210 ensures it remains inactive until the primary route fails.
Step-by-Step Solution
Key Concept
IPv4 Static Route Syntax and Floating Static Route Administrative Distance Selection