Lesson 4 Flashcards
Used mostly for inbound server connections. Eg, when you want an inside server to always appear with a fixed address on the outside network.
Static NAT
Static NAT Configuration
static ( local_if,global_if) global_ip local_ip
“ INSIDE , OUTSIDE “ “ OUTSIDE , INSIDE “
____________or port redirection , is useful when the security appliance needs to statically map multiple inside servers to one global IP address.
Static Port Address Translation
I f d e s t = 1 4 2 . 2 3 2 . 0 . 1 0 1 : 8 0 , t r a n s l a t e t o 1 0 . 1 0 . 7 7 . 1 0
ASA1(config )# static (inside,outside) tcp 142.232.0.101 80 10.10.77.10 80 netmask 255.255.255.255
Dynamic NAT & PAT
nat (inside) 1 0 0
global (outside) 1 200.200.200.1 - 200.200.200. 5 255.255.255.0
global (outside) 1 200.200.200.200 255.255.255.0
When these addresses run out, PAT will be used with the 200.200.200.200 IP address for the remaining connections.
This example shows two separate PAT processes running for the two separate networks
nat (inside) 1 10.1.0.0 255.255.0.0
nat (inside) 2 10.2.0.0 255.255.0.0
global (outside) 1 200.200.200. 5 255.255.255.0
global (outside) 2 200.200.200. 10 255.255.255.0
The NAT ID can be in the range of 0 to ________
2 billion
nat id 0 means ________
do not NAT
PAT can handle a theoretical maximum of ___________ connections .
64000
Whenever you change a global pool you need to ___________ to activate it correctly.
clear the xlate table
__________ lets you establish translation rules by specifying both the real address (the source address) and the destination address (eg, partner connections).
Policy NAT
Policy NAT global example
access - list NET1 permit ip 10.1.2.0 255.255.255.0 209.165. 201. 0 255.255.255.224
nat (inside) 1 access - list NET1 global (outside) 1 209.165.202. 129 255.255.255.255
Policy NAT static example
Policy NAT - 3 Configuration for diagram using a static mapping: access - list NET1 permit ip host 10.1.2.27 209.165. 201 .0 255.255.255.224
static (inside,outside) 209.165.202. 129 access - list NET1
Access lists can only contain _______ statements
PERMIT
An access list can only be used_______ within the NAT process.
once
You can’t reuse the same list with a different NAT id.