A systems administrator is configuring a dual-homed backup server equipped with two network interface cards (NICs). NIC 1 connects to the corporate LAN () with IP address , subnet mask , and default gateway . NIC 2 connects directly to a dedicated local iSCSI storage network () with IP address , subnet mask , and default gateway . While local LAN management access functions normally, outbound traffic destined for remote subnets experiences unpredictable routing drops. Which configuration change will resolve the routing issue while maintaining connectivity to both networks?
- Remove the default gateway address entry from the NIC 2 configuration.Answer
- BReconfigure NIC 2 to auto-assign an APIPA address so iSCSI targets can be dynamically discovered without gateways.
- CSet the primary DNS server IP on NIC 1 to match the IP address of NIC 2 so DHCP leases update route targets.
- DReplace the router on the corporate LAN with an unmanaged Layer 2 switch to bridge the two IP subnets.
Answer
Removing the default gateway address from the secondary NIC (NIC 2) resolves the routing conflict while preserving communication across both network segments.
On a multihomed operating system, defining default gateways on multiple network adapters creates multiple default routes () with equal or competing metrics. This leads to asymmetric routing or packet loss when traffic destined for external networks is sent out of an adapter connected to a isolated segment. Since the iSCSI network is local (), host-to-storage traffic is routed directly via the connected subnet interface without requiring a default gateway. Removing the default gateway from the secondary adapter ensures all off-subnet traffic is predictably sent through the primary interface gateway.
Step-by-Step Solution
Key Concept
Multihomed Default Gateway Routing Constraints