Inside Source NAT and PAT Configuration and Verification
46 soru
To permit multiple internal private hosts to share the single public IPv4 address assigned to the GigabitEthernet0/0/0 WAN interface, which Cisco IOS command correctly implements Port Address Translation (PAT) for traffic permitted by Access Control List 15?
A network administrator is setting up Port Address Translation (PAT) on a Cisco IOS router using a public address pool named `PAT_POOL` and Access Control List `5`. Which two commands are required to correctly establish PAT and configure the LAN interface to participate in address translation? (Select two.)
Geçerli olan tümünü seçin
A network engineer is configuring Port Address Translation (PAT) on a Cisco IOS router using an IP NAT pool named `INTERNET_POOL` for internal endpoints matched by access list `10`. Which global configuration command correctly enables PAT using this address pool?
An administrator needs to configure Port Address Translation (PAT) on a Cisco IOS router so that all internal hosts on the subnet can access the Internet using the IPv4 address assigned to the WAN interface GigabitEthernet0/1. Interface GigabitEthernet0/0 connects to the internal LAN. Which configuration set correctly accomplishes this requirement?
ip nat inside
!
interface GigabitEthernet0/1
ip nat outside
!
access-list 15 permit 172.16.50.0 0.0.0.255
ip nat inside source list 15 interface GigabitEthernet0/1 overload
ip nat inside
!
interface GigabitEthernet0/1
ip nat outside
!
access-list 15 permit 172.16.50.0 0.0.0.255
ip nat inside source list 15 interface GigabitEthernet0/1
ip nat inside
!
interface GigabitEthernet0/1
ip nat outside
!
access-list 15 permit 172.32.50.0 0.0.0.255
ip nat inside source list 15 interface GigabitEthernet0/1 overload
ip nat outside
!
interface GigabitEthernet0/1
ip nat inside
!
access-list 15 permit 172.16.50.0 0.0.0.255
ip nat inside source list 15 interface GigabitEthernet0/1 overload
A network engineer is troubleshooting internet connectivity issues on a Cisco IOS router configured for Network Address Translation. Internal hosts on the network report that only one host can access external resources at any given time. Subsequent host traffic is dropped. The engineer inspects the router configuration and operational state using verification commands:
text
Router# show ip nat statistics
Total active translations: 1 (0 static, 1 dynamic, 1 extended)
Outside interfaces:
GigabitEthernet0/1
Inside interfaces:
GigabitEthernet0/0
Hits: 48 Misses: 12
CEF Translated packets: 48, Fast Switched packets: 0
Expired translations: 15
Dynamic mappings:
-- Inside Source
[id 1] access-list 101 pool INTERNET-POOL refcount 1
pool INTERNET-POOL: netmask 255.255.255.252
start 203.0.113.1 end 203.0.113.1
type generic, total addresses 1, allocated 1 (100%), misses 12
Router# show running-config | include ip nat
ip nat pool INTERNET-POOL 203.0.113.1 203.0.113.1 netmask 255.255.255.252
ip nat inside source list 101 pool INTERNET-POOL
access-list 101 permit ip 10.10.10.0 0.0.0.255 any
Which configuration change is required to allow all internal hosts on the network to share the single public IPv4 address simultaneously?
A network administrator is configuring Port Address Translation (PAT) on an enterprise Cisco IOS router. The internal subnets matched by Access Control List 15 require multiple internal IP addresses to share a dynamic pool of public IPv4 addresses named . Which Cisco IOS global configuration command correctly enables PAT using this dynamic address pool?
A network engineer on router R1 configures dynamic Network Address Translation using an IP pool containing two public addresses ( to ) to service the internal subnet . Access Control List 10 permits traffic from . The router configuration includes the statement `ip nat inside source list 10 pool NAT_POOL`. During peak operating hours, users report that after two simultaneous connections are established, all additional internal hosts fail to reach external destinations. Output from `show ip nat statistics` displays active translations at maximum pool capacity with zero port translation entries. Which configuration change will allow all internal hosts to share the public addresses concurrently?
A network engineer is configuring Port Address Translation (PAT) on a Cisco IOS router using an IP address pool. Access Control List 10 matches internal private IPv4 addresses, and the NAT pool is named `OUTSIDE_POOL`. To allow multiple internal hosts to share the addresses in `OUTSIDE_POOL` by multiplexing Layer 4 port numbers, which single keyword must be appended to the end of the `ip nat inside source list 10 pool OUTSIDE_POOL` command?
A network administrator configures Port Address Translation (PAT) on a Cisco IOS router to allow hosts on the internal subnet to access external servers using a dynamic NAT pool. After applying the configuration, only the first host to send traffic successfully establishes an outbound connection. All subsequent internal hosts fail to reach external destinations.
The router configuration is as follows:
text
ip nat pool EDGE_POOL 198.51.100.10 198.51.100.10 netmask 255.255.255.252
access-list 105 permit ip 192.168.10.0 0.0.0.255 any
ip nat inside source list 105 pool EDGE_POOL
!
interface GigabitEthernet0/0
ip address 192.168.10.1 255.255.255.0
ip nat inside
!
interface GigabitEthernet0/1
ip address 198.51.100.9 255.255.255.252
ip nat outside
Which modification to the router configuration will resolve the connectivity failure for all remaining internal hosts?
A network engineer is troubleshooting outbound connectivity failures on a Cisco IOS router. Internal devices on subnet can establish a maximum of two concurrent Internet connections. Additional hosts experience connection timeouts. The output of `show ip nat statistics` displays:
Total active translations: 2 (0 static, 2 dynamic, 0 extended)
Outside interfaces: GigabitEthernet0/1
Inside interfaces: GigabitEthernet0/0
Hits: 842 Misses: 412
Dynamic mappings:
-- Inside Source
[id 1] access-list 10 pool PUBLIC_POOL refcount 2
pool PUBLIC_POOL: netmask 255.255.255.252
start 198.51.100.1 end 198.51.100.2
type generic, total addresses 2, allocated 2 (100%), misses 412
The current running configuration contains `ip nat inside source list 10 pool PUBLIC_POOL`.
Which configuration change on the router will allow all internal hosts on subnet to share the existing pool addresses concurrently without adding new public IP addresses?
A network engineer is configuring Port Address Translation (PAT) on a Cisco IOS router using a dynamic interface-based configuration. The engineer enters the following global configuration command to map inside addresses matched by Access List 10 to the GigabitEthernet0/1 interface:
`ip nat inside source list 10 interface GigabitEthernet0/1`
Which single Cisco IOS keyword must be added to the end of this command to allow multiple internal hosts to share the single public IP address using unique source port numbers?
A network administrator is configuring Port Address Translation (PAT) on a Cisco IOS router to allow multiple internal hosts on the 192.168.1.0/24 subnet to share the single public IPv4 address assigned to the GigabitEthernet0/1 interface. The administrator enters the following CLI commands:
Router(config)# access-list 1 permit 192.168.1.0 0.0.0.255
Router(config)# ip nat inside source list 1 interface GigabitEthernet0/1
During testing, only the first internal host that generates outbound traffic successfully connects to the Internet. Subsequent traffic from all other internal hosts is dropped. Which configuration change resolves this issue and enables all internal hosts to share the interface IP address simultaneously?
A network administrator is configuring Port Address Translation (PAT) on a Cisco IOS router. Internal private IP hosts defined in Access Control List 1 (ACL 1) must share the single public IPv4 address assigned to the GigabitEthernet0/0 interface when communicating with the internet. Which Cisco IOS global configuration command correctly enables PAT for this scenario?
A network administrator needs to verify the operational summary of Network Address Translation (NAT) on a Cisco IOS router, including active translation totals, hit/miss counters, expired translations, and dynamic pool usage. Which Cisco IOS EXEC command displays these summary statistics?
An enterprise router is configured to perform dynamic NAT for an internal LAN subnet using a NAT pool containing a single public IP address (). Network users report that while the first host connecting to an external server successfully establishes a session, all subsequent internal hosts fail to reach external destinations simultaneously.
Review the following excerpt from the router's configuration:
text
interface GigabitEthernet0/0
ip address 10.50.0.1 255.255.255.0
ip nat inside
!
interface GigabitEthernet0/1
ip address 203.0.113.1 255.255.255.248
ip nat outside
!
ip access-list standard LAN_SERVERS
permit 10.50.0.0 0.0.255.255
!
ip nat pool PUBLIC_POOL 203.0.113.2 203.0.113.2 netmask 255.255.255.248
ip nat inside source list LAN_SERVERS pool PUBLIC_POOL
Which configuration change will resolve the issue and permit concurrent internet access for multiple internal hosts?
A network administrator configures dynamic NAT on a Cisco IOS router to enable hosts on the internal network to reach the Internet using an address pool defined as to . After deployment, only two internal hosts can access external servers at any given time. Subsequent connection attempts from other internal hosts fail until one of the active hosts disconnects. Verification with the command `show ip nat translations` shows exactly two active entries without any transport layer port numbers listed. Which configuration change must be made on the router to allow all internal hosts to access external resources simultaneously?
During network troubleshooting on router R3, users on subnet report that only one internal host can access the Internet at a time. The network administrator runs `show ip nat statistics` and observes the following output:
Total active translations: 1 (0 static, 1 dynamic, 0 extended)
Outside interfaces:
GigabitEthernet0/1
Inside interfaces:
GigabitEthernet0/0
Hits: 142 Misses: 18
Dynamic mappings:
-- Inside Source
access-list 15 pool CORP_PAT refcount 1
The running configuration contains:
`ip nat pool CORP_PAT 203.0.113.10 203.0.113.10 prefix-length 29`
`ip nat inside source list 15 pool CORP_PAT`
Which configuration change on R3 will resolve the issue and permit multiple internal hosts to access external resources simultaneously?
To enable multiple internal devices to share the single public IPv4 address assigned to WAN interface Serial0/1/0 using Port Address Translation (PAT), which Cisco IOS command must be executed?
A network engineer needs to configure static Port Address Translation (Port Forwarding) on a Cisco IOS router to allow public users on the Internet to access an internal HTTP web server. The internal web server is assigned private IPv4 address and listens on TCP port . External connections should be directed to the router's public IPv4 address on TCP port .
What exact Cisco IOS global configuration command must be entered to establish this static NAT mapping?
A network administrator is configuring Port Address Translation (PAT) on a Cisco IOS router. Internal hosts on subnet connect to interface `GigabitEthernet0/0/0`, while interface `GigabitEthernet0/0/1` connects to the Internet Service Provider. Standard access list 10 has been configured with `access-list 10 permit 10.45.10.0 0.0.0.255`. Which TWO configurations are required on the router to correctly enable inside source PAT sharing the public IPv4 address of `GigabitEthernet0/0/1`?
Geçerli olan tümünü seçin