Understand static routing, dynamic routing, NAT, PAT, FHRP, VIPs, and route preference in branch and enterprise scenarios.
Routing questions are really path-selection questions. CompTIA is not just checking whether you can expand acronyms like NAT or OSPF. It is checking whether you can explain how a packet chooses a next hop, when address translation belongs in the path, and why a resilient default gateway is different from upstream route learning.
FHRP: First hop redundancy protocol, a way to keep a default-gateway function available even if one router fails.
PAT: Port address translation, a form of NAT where many internal hosts share one public address by using different source-port mappings.
The exam usually wants you to distinguish:
flowchart LR
A["Host sends packet"] --> B["Default gateway receives packet"]
B --> C["Router checks routing table"]
C --> D["Best route selected"]
D --> E["Optional NAT or PAT translation"]
E --> F["Packet forwarded to next hop or exit interface"]
What to notice:
| Concept | What it does | Best exam clue |
|---|---|---|
| static route | manually defines a path | small environment, predictable path, low change rate |
| dynamic routing | learns and adjusts paths automatically | larger environment, multiple routers, changing paths |
| NAT | translates one address space to another | private-to-public reachability or overlapping networks |
| PAT | lets many hosts share one public address using ports | internet access for many clients through one edge IP |
| FHRP | keeps the local default gateway available | gateway failover on a VLAN or user subnet |
Network+ expects you to think in this order:
The exact vendor mechanics can vary, but the exam mostly wants the big idea: the device chooses the most appropriate known path, not a random available path.
1C 10.10.10.0/24 is directly connected, Gi0/1
2S* 0.0.0.0/0 [1/0] via 203.0.113.1
3O 10.20.0.0/16 [110/20] via 10.10.10.2
What to notice:
C shows a directly connected networkS* is a static default route, often the branch path toward the internet or upstream edgeO is a route learned dynamically through OSPF, a routing protocol that advertises reachability between routersCompTIA often hides the right answer inside this question:
“Is the problem about learning a route, or is it about translating an address?”
1Inside local: 10.10.20.44:51532
2Inside global: 198.51.100.20:40014
3Destination: 93.184.216.34:443
What to notice:
Continue with 2.2 Switching Technologies, VLANs & Layer 2 Design to keep the domain flow intact.