A network administrator is configuring static routes on router R1 to reach two remote networks: Subnet A () connected across a point-to-point serial interface (Serial0/0/0), and Subnet B () connected across a multiaccess Ethernet interface (GigabitEthernet0/0, with next-hop IP address ). Which two static route configuration commands follow Cisco IOS best practices and prevent unnecessary ARP resolution overhead?
- ip route 10.2.2.0 255.255.255.0 Serial0/0/0Answer
- ip route 10.3.3.0 255.255.255.0 192.168.1.2Answer
- Cip route 10.3.3.0 255.255.255.0 GigabitEthernet0/0
- Dip route 10.3.3.0 0.0.0.255 192.168.1.2
Answer
The two correct static route statements are 'ip route 10.2.2.0 255.255.255.0 Serial0/0/0' for the point-to-point serial connection and 'ip route 10.3.3.0 255.255.255.0 192.168.1.2' for the multiaccess Ethernet connection.
In Cisco IOS IPv4 static routing, the ideal syntax depends on the physical media type of the outgoing interface. For point-to-point links like Serial interfaces, referencing the exit interface directly is complete and efficient because there is only one potential receiver on the segment. For broadcast multiaccess links like Ethernet, referencing the next-hop IPv4 address is mandatory for clean Layer 2 frame encapsulation without generating excessive ARP broadcasts.
Step-by-Step Solution
Key Concept
IPv4 Static Route Syntax and Next-Hop Resolution on Point-to-Point vs Multiaccess Interfaces