Difficulty: Easy
Correct Answer: PAT
Explanation:
Introduction / Context:
IPv4 scarcity led to widespread use of address translation at network edges. When many users must share one public address, Port Address Translation (PAT) is typically used to distinguish sessions by port numbers while rewriting source addresses.
Given Data / Assumptions:
Concept / Approach:
PAT, often called NAT overload, maps many inside local addresses to a single inside global address by translating source transport ports (TCP/UDP) uniquely per flow. Static NAT maps one-to-one between a private and a public address; Dynamic NAT maps from a pool on a one-to-one basis per session but still consumes one public per inside host at a time. Only PAT allows many-to-one at the same time without exhausting the public address pool.
Step-by-Step Solution:
Identify the requirement: many hosts, single public IP.Eliminate static and dynamic one-to-one mappings.Choose PAT (overload) to multiplex flows by ports.Confirm with typical configuration: ip nat inside source list ACL interface
Verification / Alternative check:
Observe NAT translation tables: many inside sources map to one global address with distinct port tuples under PAT.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “dynamic NAT” with PAT; only PAT provides many-to-one simultaneous connections using port translation.
Final Answer:
PAT
Discussion & Comments