A network administrator is configuring Port Address Translation (PAT) on a Cisco router so that internal hosts on the subnet can access the Internet using the public IP address assigned to the WAN interface . Access List has already been configured to permit traffic from . Which two actions are required to complete this PAT configuration? (Select two.)
- Configure the command `ip nat inside source list 1 interface GigabitEthernet0/0/1 overload` in global configuration mode.Answer
- BConfigure the command `ip nat inside source list 1 interface GigabitEthernet0/0/1` in global configuration mode.
- Apply the command `ip nat inside` under the interface connected to the internal LAN.Answer
- DConfigure Access List to match public IPv4 addresses in the range.
Answer
To complete PAT using an exit interface IP address, the administrator must designate the LAN interface with `ip nat inside` and configure the global translation statement `ip nat inside source list 1 interface GigabitEthernet0/0/1 overload`.
Port Address Translation (PAT) using an exit interface requires defining the internal interface with `ip nat inside` and executing `ip nat inside source list <acl> interface <interface> overload` globally. The `overload` keyword ensures multiple internal hosts can share the single public IP address by assigning unique source ports to each session.
Step-by-Step Solution
Key Concept
Inside Source Port Address Translation (PAT) Interface Overload Configuration
Estimated Time:1m 0s