Day 8 - NAT Flashcards

1
Q

NAT is defined in RFC _____

A

3022

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

NATs key use is to conserve __________ by allowing networks to use __________ IPv4 addresses

A

IPv4 addresses
private

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

NAT translates nonroutable, __________ and _________ addresses into routable ___________ addresses

A

Private
Internal
Public

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

In NAT terminology, the __________ __________ is the set of networks that are subject to translation

A

Inside network

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

Solve for the definition for NAT addresses:

Most likely a private address used by a PC either statically or dynamically within the boundaries of a local network

A

Inside local address

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

Solve for the definition for NAT addresses:

A valid public address that the inside host is given when it exits the NAT router

A

Inside global address

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

Solve for the definition for NAT addresses:

A reachable IPv4 address assigned to a host on the internet

A

Outside global address

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

Solve for the definition of the type of NAT:

Permanent One-to-One mapping usually between a public and private IP Address

A

Static NAT

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

Solve for the definition of the type of NAT:

Uses a pool of addresses which are handed out on an as needed, first come first served basis.

Usually for internal hosts which connect to the internet but do not accept incoming traffic and addresses

A

Dynamic NAT

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

Solve for the definition of the type of NAT:

Allows the same public IP Address to be reused by multiple internal hosts

A

PAT (Port Address Translation)

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

What is another term for Port Address Translation (PAT)?

A

NAT Overload

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

Other than the IP address what is also tracked when using PAT?

A

Port numbers

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

NAT overload attempts to preserve the original __________ ___________

A

Source port

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

What 3 port groups can NAT Overload assign to?

A

0-511
512-1023
1024-65535

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

What are these considered below, concerning NAT

Performance is degraded
End-to-End functionality is degraded
End-to-End IP traceability is lost
Tunneling is more complicated
Services can be disrupted

A

These are all limitations of NAT

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

Based on the topology, configure static NAT mapping the local server to an global IP of 209.165.200.254

A

R1
ip nat inside source static 192.168.10.254 209.165.200.254

interface serial0/0/0
ip nat inside

interface serial0/1/0
ip nat outside

17
Q

Based on the topology, configure dynamic NAT for a pool called NAT-POOL1 that is ranging from IP address 209.165.200.226 - 209.165.200.240 with 32 available addresses

Be sure and permit the internal network to be able to be NAT’d

A

R1
ip nat pool NAT-POOL1 209.165.200.226 209.165.200.240 netmask 255.255.255.224

access-list 1 permit 192.168.0.0 0.0.255.255

ip nat inside source list 1 pool NAT-POOL1

int serial 0/0/0
ip nat inside

int serial 0/1/0
ip nat outside

18
Q

Based on the topology, configure NAT to overload serial interface 0/0/0 that permits the 192.168.X.X network to be able to be NAT’d

A

R1
access-list 1 permit 192.168.0.0 0.0.255.255

ip nat inside source list 1 int serial 0/1/0 overload

int s0/0/0
ip nat inside

int serial 0/1/0
ip nat outside

19
Q

Based on the topology, configure dynamic NAT for a pool called NAT-POOL1 that is ranging from IP address 209.165.200.226 - 209.165.200.240 with 32 available addresses. Make sure to overload this pool

Be sure and permit the internal network to be able to be NAT’d

A

R1
ip nat pool NAT-POOL1 209.165.200.226 209.165.200.240 netmask 255.255.255.224

access-list 1 permit 192.168.0.0 0.0.255.255

ip nat inside source list 1 pool NAT-POOL1 overload

int serial 0/0/0
ip nat inside

int serial 0/1/0
ip nat outside

20
Q

What command would you use to verify current NAT translations?

A

show ip nat translations

21
Q

What verification command would show information about the total number of active translations, configuration parameters, number of addresses in the pool, etc.

A

show ip nat statistics

22
Q

What command would you use to clear dynamic NAT entries

A

clear ip nat translation *

23
Q

What command would you use to verify the operation of the NAT feature by displaying information about every packet that the router translates?

A

debug ip nat

24
Q

When viewing show ip nat translation what does Inside Local Address mean?

A

The IP Address actually configured on the inside host’s operating system

25
Q

When viewing show ip nat translation what does Inside Global Address mean?

A

The NAT’d address of the inside host as it will be reached by the outside network

26
Q

When viewing show ip nat translation what does Outside Local Address mean?

A

The IP Address of the outside host as it appears to the inside network

Context: A server off of your internal network that you’re trying to reach. This is the IP Address that the internal network will use to try and reach it on the outside.

27
Q

When viewing show ip nat translation what does Outside Global Address mean?

A

The IP Address assigned to the host on the outside network by the external host’s owner

Context: This is the actual assigned IP Address by the external host’s owner.

Most times the Outside Global Address and the Outside Local Address will be the same