Lecture 14: Network Address Translation Flashcards

(12 cards)

1
Q

What is the primary purpose of NAT?

A

To translate private IP addresses to public IP addresses, helping to conserve public IPv4 addresses.

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

List the private IP address ranges.

A
  • 10.0.0.0 - 10.255.255.255 (10.0.0.0/8)
  • 172.16.0.0 - 172.31.255.255 (172.16.0.0/12)
  • 192.168.0.0 - 192.168.255.255 (192.168.0.0/16)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Static NAT?

A

One-to-one translation of private to public IP addresses, configured manually.

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

Describe Dynamic NAT.

A

Many-to-many translation, where a pool of public IP addresses is used to translate private IP addresses.

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

What is Port Address Translation (PAT)?

A

Many-to-one translation; multiple private IP addresses are translated to a single public IP address using different port numbers.

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

Explain the difference between Inside Local and Inside Global addresses.

A
  • Inside Local: Private IP address assigned to a host on the inside network.
  • Inside Global: Public IP address that the Inside Local address is translated to.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Explain the difference between Outside Local and Outside Global addresses.

A
  • Outside Local: Public IP address of a host on the outside network, as seen by the inside network.
  • Outside Global: Public IP address of a host on the outside network.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Give the command to configure Static NAT.

A

R1(config)#ip nat inside source static 192.168.10.254 209.165.201.5

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

List the steps to configure Dynamic NAT.

A
  1. Create a pool of public addresses.
  2. Create a standard ACL with private addresses.
  3. Bind the ACL to the pool.
  4. Identify inside and outside interfaces.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Give the command to configure PAT.

A

R2(config)# ip nat inside source list 1 interface serial 0/1/1 overload

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

What is NAT64?

A

A translation mechanism to facilitate communication between IPv4 and IPv6 networks.

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

What commands are used to verify NAT configurations?

A

R2# show ip nat translations and R2# show ip nat statistics

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