Difficulty: Easy
Correct Answer: 1 and 5 only
Explanation:
Introduction / Context:
When two end hosts are connected directly without a hub or switch, the physical and Layer 3 parameters must be appropriate for link negotiation and IP communication. Many classic NICs require a crossover cable for transmit/receive pair alignment. Additionally, both hosts must share a common IP subnet mask so that ARP resolution and local delivery occur without a gateway.
Given Data / Assumptions:
Concept / Approach:
Back-to-back host links traditionally need a crossover cable so that one host’s transmit pair hits the other’s receive pair. A rollover cable is for console connections, not Ethernet data. At Layer 3, hosts must share an IP network; a common /24 like 255.255.255.0 is typical for lab setups. A default gateway is unnecessary for local traffic; ARP resolves peer MACs directly on the same subnet.
Step-by-Step Solution:
Verification / Alternative check:
Run ipconfig /all (Windows) or ip a (Linux) to verify mask and ARP table entries. Modern NICs with auto-MDI/MDIX may work with straight-through cabling; the core requirement remains that both hosts be in the same IP subnet.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1 and 5 only
Discussion & Comments