Lesson 4 Flashcards

1
Q

Used mostly for inbound server connections. Eg, when you want an inside server to always appear with a fixed address on the outside network.

A

Static NAT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Static NAT Configuration

A

static ( local_if,global_if) global_ip local_ip

“ INSIDE , OUTSIDE “ “ OUTSIDE , INSIDE “

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

____________or port redirection , is useful when the security appliance needs to statically map multiple inside servers to one global IP address.

A

Static Port Address Translation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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

A

ASA1(config )# static (inside,outside) tcp 142.232.0.101 80 10.10.77.10 80 netmask 255.255.255.255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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

A

When these addresses run out, PAT will be used with the 200.200.200.200 IP address for the remaining connections.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

This example shows two separate PAT processes running for the two separate networks

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The NAT ID can be in the range of 0 to ________

A

2 billion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

nat id 0 means ________

A

do not NAT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

PAT can handle a theoretical maximum of ___________ connections .

A

64000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Whenever you change a global pool you need to ___________ to activate it correctly.

A

clear the xlate table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

__________ lets you establish translation rules by specifying both the real address (the source address) and the destination address (eg, partner connections).

A

Policy NAT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Policy NAT global example

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Policy NAT static example

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Access lists can only contain _______ statements

A

PERMIT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

An access list can only be used_______ within the NAT process.

A

once

You can’t reuse the same list with a different NAT id.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

___________can be used in some cases where local IP addresses need to bypass NAT and not be translated .

A

NAT exemption , which uses the nat 0 access - list command

17
Q

NAT Exemption-2

A

FW(config )# access - list EXEMPT - VPN permit ip 10.10.1.0 255.255.255.0 10.100.0.0 255.255.0.0
FW(config )# nat - control
FW(config )# nat (inside) 0 access - list EXEMPT - VPN
FW(config )# nat (inside) 1 10.10.1.0 255.255.255.0
FW(config )# global (outside) 1 interface

18
Q

Using the__________________ allows the appliance to “doctor” the DNS reply being sent back to the internal user.

A

A - record translation feature ( DNS Doctoring )

19
Q

_____must be enabled to support this functionality (Check using show run dns - guard ).

A

DNS inspection