A network administrator needs to configure a one-to-one static Network Address Translation (NAT) mapping on a Cisco IOS router. The internal host with private IPv4 address must be statically translated to the public IPv4 address . What exact Cisco IOS global configuration command should be entered to establish this static NAT mapping?
Answer: ip nat inside source static 10.1.1.50 198.51.100.50 / ip nat inside source static 10.1.1.50 198.51.100.50
Answer
ip nat inside source static 10.1.1.50 198.51.100.50
The correct command syntax for establishing static NAT in Cisco IOS global configuration mode is `ip nat inside source static <inside-local-ip> <inside-global-ip>`. Substituting as the inside local IP and as the inside global IP yields `ip nat inside source static 10.1.1.50 198.51.100.50`.
Step-by-Step Solution
Key Concept
Static Inside Source Network Address Translation (NAT) Configuration