A systems engineer is configuring an edge router for a secondary data center. The site has 50 internal servers on the private IP range that require outbound Internet access to update external software repositories using a single public IP address (). Additionally, external administrators must be able to initiate inbound SSH connections directly to a dedicated internal management server at . Which combination of address translation implementations should the engineer configure on the edge router?
- Configure Port Address Translation (PAT / Overload) using public IP address for the subnet, and configure a static port translation rule mapping inbound TCP port 22 on to .Cevap
- BConfigure one-to-one Static NAT for all 50 hosts in the subnet using , and rely on Dynamic NAT to handle incoming SSH requests.
- CConfigure Dynamic NAT for outbound connections to automatically convert TCP port 22 into UDP port 22 across outgoing packet headers to bypass inbound firewall filters.
- DConfigure Layer 2 Media Access Control address translation on the LAN switch interface to map internal MAC addresses directly to public IP addresses before routing frames.
Cevap
Port Address Translation (PAT / Overload) should be configured for outbound host access sharing the public IP, along with a static port translation (port forwarding) mapping rule for inbound SSH access to the management server.
Port Address Translation (PAT / Overload) uses unique source port numbers at Layer 4 to allow multiple internal private IP addresses to share a single public IP address for outbound traffic. For inbound connections to internal resources, a static translation entry (such as port forwarding TCP port 22) must be created so the router knows which internal host should receive traffic initiated from external networks.
Adım Adım Çözüm
Anahtar Kavram
Combining Port Address Translation (PAT/Overload) for outbound host multiplexing with Static NAT/Port Forwarding for inbound server availability.