Browse CompTIA Certification Guides

Study Routing Technologies, NAT & Route Selection for Network+ (N10-009)

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.

What CompTIA is really testing

The exam usually wants you to distinguish:

  • static reachability from dynamic path learning
  • address translation from routing itself
  • default-gateway resilience from full routing-protocol convergence
  • simple branch design from multi-path enterprise behavior

Start with the packet decision

    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:

  • routing decides where the packet should go
  • NAT or PAT changes addressing as part of the path, but it is not the same thing as path selection
  • FHRP protects the first hop for hosts on the local segment, not the entire WAN design

Keep these concepts distinct

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

Route selection is a logic question

Network+ expects you to think in this order:

  1. Is the destination directly connected?
  2. Is there a specific route that matches?
  3. Is there a default route if no better match exists?
  4. If several routes qualify, which one is preferred by the routing process?

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.

Small routing-table example

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 network
  • S* is a static default route, often the branch path toward the internet or upstream edge
  • O is a route learned dynamically through OSPF, a routing protocol that advertises reachability between routers

NAT and PAT are usually edge choices

CompTIA often hides the right answer inside this question:

“Is the problem about learning a route, or is it about translating an address?”

  • if users can reach internal networks but not the public internet, translation or edge policy may be the issue
  • if users can reach some destinations but not others across routers, route learning or route selection may be the issue
  • if end hosts lose the local gateway when one router fails, the issue points to first-hop resilience more than to WAN routing

Small PAT translation example

1Inside local: 10.10.20.44:51532
2Inside global: 198.51.100.20:40014
3Destination: 93.184.216.34:443

What to notice:

  • the inside host keeps its private address locally
  • the edge device presents a translated public address to the outside
  • PAT works because the translation also tracks port mappings

Common traps

  • treating NAT as a security control instead of as address translation
  • choosing a dynamic protocol when the scenario only needs one stable upstream path
  • confusing gateway redundancy with enterprise route learning
  • assuming two routers automatically mean dynamic routing is required

What strong answers usually do

  • identify whether the problem is local default-gateway availability, upstream path learning, or address translation
  • pick static routing when the design is simple and stable enough for it
  • pick dynamic routing when scale or change makes manual path control fragile
  • remember that NAT or PAT often sits at the edge, while FHRP protects the local subnet experience

Quiz

Loading quiz…

Continue with 2.2 Switching Technologies, VLANs & Layer 2 Design to keep the domain flow intact.