How to dynamic NAT on Cisco ASA ASDM


Dynamic NAT / PAT / HIDE NAT / NAT Overload

Dynamic PAT (Port Address Translation), HIDE NAT and NAT Overload all refer to the same meaning – which is to dynamically NAT your internal network address segment to one IP address. This is usually done when you want to translate your unroutable private network address to a publically routable address on your outside Internet address.

Here’s how on ASDM 6.3+

  1. Under Configuration > Network Objects/Groups > Add a new network object
  2. Give the internal network a name and enter the internal subnet you want to perform NAT/PAT
  3. Check Add Automatic Address Translation Rules
  4. Select Dynamic PAT (Hide)image
  5. Select your outside interface in the section labeled “Translated Address”
    image
  6. Make sure you click the “Translated Addr –>” to populate the field with OUTSIDE
  7. Next Click Advanced…to go into Advanced NAT Settings
  8. Select “INSIDE” as your source interface and “OUTSIDE” as your destination interface. This sets the NAT direction to be from your inside network to the outside (Internet)image

Once complete setup click apply and save to complete your configuration.

Here’s how on CLI 8.3+

Often on CLI you will find it maybe much easier to configure. Below are the 3 lines that you will need to configure a your dynamic NAT.

object network INSIDE_DYN_PAT
subnet 10.100.0.0 255.255.0.0
nat (INSIDE,OUTSIDE) dynamic interface

Here are some commands to verify your NAT

show nat 
show xlate
Related Posts with Thumbnails