A network security architect is defining address translation policies for a corporate infrastructure. Match each technical network requirement on the left with its corresponding NAT/PAT implementation method on the right.
- Providing thousands of internal workstation hosts with simultaneous outbound internet access through a single external interface IP address.Port Address Translation (PAT / Interface Overload)
- Exposing an internal application server at a fixed private IPv4 address to external partners using a permanent public IPv4 mapping.Static 1:1 Network Address Translation
- Temporarily assigning public IPv4 addresses from a shared pool to internal hosts on a first-come, first-served basis without port multiplexing.Dynamic NAT
- Redirecting external inbound connections targeting a custom public port () to an internal web server listening on standard HTTP port .Port Forwarding (Static PAT)
Answer
1. Thousands of hosts sharing a single external IP maps to Port Address Translation (PAT / Interface Overload).
2. Exposing an internal server via permanent public IP mapping maps to Static 1:1 Network Address Translation.
3. Temporarily assigning public IPs from a pool without port multiplexing maps to Dynamic NAT.
4. Redirecting custom public port traffic to an internal web server port maps to Port Forwarding (Static PAT).
2. Exposing an internal server via permanent public IP mapping maps to Static 1:1 Network Address Translation.
3. Temporarily assigning public IPs from a pool without port multiplexing maps to Dynamic NAT.
4. Redirecting custom public port traffic to an internal web server port maps to Port Forwarding (Static PAT).
The mappings accurately distinguish between Layer 3 IP translation (Static 1:1 NAT and Dynamic NAT) and Layer 4 port translation/multiplexing (PAT and Port Forwarding). Multiple internal hosts sharing one public IP requires PAT (Overload). A fixed public-to-private server mapping requires Static 1:1 NAT. Temporary 1:1 allocation from a public pool without port multiplexing requires Dynamic NAT. Translating an incoming external port to a different internal IP and port requires Port Forwarding.
Step-by-Step Solution
Key Concept
NAT and PAT Implementation Types and Address Mapping Mechanisms
Estimated Time:2m 0s