4.1 Inside Source NAT Flashcards

Configure and verify inside source NAT using static and pools. (23 cards)

1
Q

What does NAT stand for, and what is its purpose?

A

Network Address Translation

It modifies IP address information in packet headers to allow multiple devices on a private network to share a single public IP address when accessing external networks, like the internet.

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

List the types of addresses associated with NAT operations.

A
  1. Inside local
  2. Inside global
  3. Outside local
  4. Outside global

Inside Local – Private IP assigned to an internal device, not routable on the internet.

Inside Global – Public IP mapped to an inside local address for external communication.

Outside Local – Private IP representing an external device from the internal network’s view.

Outside Global – Public IP of an external device, used for internet routing.

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

What command configures a router interface for internal static NAT?

A

ip nat inside

This command designates the router interface as part of the internal network for NAT operations.

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

How can an administrator set up static mappings in a NAT configuration?

A

ip nat inside source static

This command allows the administrator to define static NAT mappings by specifying the inside-local and inside-global addresses.

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

What command configures a public address pool for dynamic NAT?

A

ip nat pool

This command is essential for defining a range of public addresses that will be utilized for dynamic NAT translations.

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

What does Static NAT do?

A

It maps a private IP to a public IP.

Static NAT provides a one-to-one mapping between private and public addresses, ensuring a consistent external IP.

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

What does the term ‘inside global’ indicate in NAT?

A

A public IP assigned to an internal host.

The inside global address is the public IP that represents an internal host when packets travel on the Internet.

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

What is the main difference between static NAT and dynamic NAT?

A
  • Static NAT uses fixed mappings.
  • Dynamic NAT assigns from a pool.

Dynamic NAT automatically assigns addresses from a predefined range, allowing multiple hosts to share a limited number of public IPs.

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

What happens when all addresses in the dynamic NAT pool are in use?

A

New connections are dropped until an entry expires.

NAT dynamically assigns addresses, but if all are used, additional requests cannot be translated.

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

What is the purpose of the NAT table?

A

It stores active NAT mappings.

The NAT table tracks inside local to inside global mappings, ensuring proper address translation.

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

What happens to dynamic NAT table entries after a period of inactivity?

A

They time out and return to the pool.

Dynamic NAT entries expire after a period of inactivity to optimize resource usage.

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

What command is used to clear dynamic NAT entries from the table?

A

clear ip nat translation *

This command removes all dynamic NAT translations.

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

What is the role of the ‘ip nat outside’ command?

A

It configures interfaces to be in the outside part of the NAT design.

It is necessary for defining the external-facing portion of NAT operations.

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

What command is used to configure a static NAT mapping?

A

ip nat inside source static <inside-local-ip> <outside-global-ip></outside-global-ip></inside-local-ip>

This command creates a static entry that should not be removed from the NAT table.

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

What does the command ‘show ip nat translations’ display?

A

Active NAT table entries

This command shows inside local to inside global mappings, verifying proper NAT function.

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

True or False:

Dynamic NAT requires static mappings for IP addresses.

A

False

Dynamic NAT assigns addresses from a pool instead of requiring static mappings.

17
Q

How does the NAT pool size affect dynamic NAT?

A

It controls the number of devices that can use a public IP.

A larger pool allows more simultaneous connections.

18
Q

What is the purpose of an access control list (ACL) in dynamic NAT?

A

It identifies internal IPs for translation.

The ACL determines which private addresses should be translated to public IPs.

19
Q

What command checks NAT statistics?

A

show ip nat statistics

This command provides detailed statistics on active NAT translations, packet hits, and misses.

20
Q

What does the command clear ip nat translation *’ do?

A

It clears all NAT table entries.

This resets all dynamic translations, allowing fresh mappings.

21
Q

What is the significance of the ‘ip nat pool’ command?

A

It defines a range of public IP addresses.

These addresses are used in dynamic NAT for outbound traffic translation.

22
Q

True or False:

The destination IP address changes during the NAT process.

A

False

The destination IP address remains unchanged; only the source address is translated.

23
Q

What typically causes NAT not to create translations in a lab setting?

A

No traffic passing through NAT.

NAT requires packets to pass through the router for translations to occur.