Network Address Translation Flashcards

1
Q

What is the private IP address range for class A?

A

10.0.0.0/8 - 10.255.255.255

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

What is the private IP address range for class B?

A

172.16.0.0/12 - 172.31.255.255

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

What is the private IP address range for class C?

A

192.168.0.0 - 192.168.255.255

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

IPv6 uses how many bit addresses vs IPv4?

A

IPv6 - 128
IPv4 - 32

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

What kind of NAT would a mail server or public web server use to connect to incoming connections?

A

Static NAT (one-to-one mapping)

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

What kind of NAT would host use (don’t need to accept incoming connections)

A

Dynamic NAT (first come, first served basis)

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

Inside global address

A

This is the address if someone in the outside network is sending traffic in. This would be THEIR destination address

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

Inside Local

A

IP address configured on my host OS (inside the network)

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

Outside Local

A

The IP address of the host outside our network that we are sending traffic to. (What our network seeing from the inside)

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

For one way NAT, the outside local and outside global will be ______

A

the same (different port, same IP)

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

Outside Global

A

The IP address of the host outside our network that isn’t NAT. It’s actually IP address assigned to it

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

How do you configure static NAT?

A

int f#
ip NAT outside
int f#
IP NAT inside
IP NAT inside source static X.X.X.X (inside local) X.X.X.X (inside global)

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

In Dynamic NAT, how many public IP addresses would you need if you had 30 host?

A

30 Public IP addresses
It’s a 1-1 for Dynamic NAT

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

How do you configure a pool of global addresses

A

IP NAT pool (give it a name) X.X.X.X X.X.X.X netmask 255.255.255.240
*IP addresses are your pool’s range i.e. 203.0.113.4 203.0.113.14

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

What do you do after you configure your pool of global addresses

A

Create an access list for all the IP addresses we want to translate (inside local)

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

What is the command to configure an access list for all the IP addresses we want to translate (inside local)

A

access-list # permit X.X.X.X (inside local IP subnet) X.X.X.X (wildcard for subnet)

17
Q

What is the last step to configure Dynamic NAT

A

Connect the access list with the NAT pool

18
Q

What is the command to Connect the access list with the NAT pool?

A

IP NAT inside source list # (access-list number) pool (name of the pool)

19
Q

NAT Types: PAT (port address Translation

A

Allows the same IP address to be re-used
*Unlike Dynamic NAT

20
Q

How does Dynamic NAT with Overload track IP addresses?

A

It uses the same IP address but tracks the source port it used in the translation table

21
Q

How do you configure PAT in a router?

A

Same steps as Dynamic but when connecting access-list and pool together add overload at the end of command
>IP NAT inside source list # (access-list number) pool (name of the pool) overload
OR
>IP NAT inside source list # (access-list number) interface# (outside) overload

22
Q

What is the command to verify your NAT translations?

A

> show ip nat translations