PrepAway - Latest Free Exam Questions & Answers

Which of the following features is used with the ip nat…

Which of the following features is used with the ip nat inside command to translate multiple devices in the
internal network to the single address in the IP address pool?

PrepAway - Latest Free Exam Questions & Answers

A.
static

B.
override

C.
overload

D.
dynamic

Explanation:
The overload keyword, when specified with the ip nat inside command, translates multiple devices in the
internal network to a single address in the IP address pool.
For example:
ip nat pool test 172.28.15.1 172.28.15.1 prefix 24
In this example, the NAT pool named “test” only has a range of one address. Another variation of this
command is as follows:
ip nat inside source list 3 interface serial 0 overload
This command configures NAT to overload on the address assigned to the serial 0 interface.When this variation is used, the command uses a list named 3 to determine the addresses in the pool
With static NAT, translation mappings are created statically and are placed in the translation tables regardless
of whether there is traffic flowing.
With dynamic NAT, the translation mappings table is populated as the required traffic flows through NATenabled devices.
Override is not a valid NAT option. There is no such option.
Objective:
Infrastructure Services
Sub-Objective:
Configure, verify, and troubleshoot inside source NAT

Cisco > Technology Support > IP > IP Routing > Design Technotes > Configuring Network Address Translation:
Getting Started > Document ID: 13772 > Quick Start Steps for Configuring and Deploying NAT

One Comment on “Which of the following features is used with the ip nat…

  1. ccnaa says:

    funny how questions are bad worded or outdated. For me the answer should be “Dynamic NAT with PAT”

    ISP gave you more than one public IP addresses, but not enough for a dynamic or static mapping. The configuration is the same as for dynamic NAT, but this time we will add overload for the router to know to use traffic flow identification using port numbers, instead of mapping a private to a public IP address dynamically.

    Router(config)#ip nat pool NAT-POOL 209.165.200.226 209.165.200.240 netmask 255.255.255.224
    Router(config)#access-list 1 permit 192.168.0.0 0.255.255.255
    Router(config)#ip nat inside source list 1 pool NAT-POOL overload
    Router(config)#interface FastEthernet 0/1
    Router(config-if)#ip nat inside
    Router(config-if)#interface Serial 0/0/0
    Router(config-if)#ip nat outside

    So its still Dynamic NAT




    0



    0

Leave a Reply