NAT (Network Address Translation)

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/33

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:23 AM on 4/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

34 Terms

1
New cards

What is a private network?

A network that uses private IP addresses not routable on the public internet

2
New cards

Can private IP addresses be used on the global internet?

No, they are not routable on the public internet

3
New cards

Why can’t packets with private IP addresses reach the internet?

Public networks do not recognize private address ranges

4
New cards

Can devices on the internet initiate communication with private IP addresses?

No, private addresses are not reachable from the public internet

5
New cards

What is Network Address Translation (NAT)?

A method of translating private IP addresses into public IP addresses for internet communication

6
New cards

Where is NAT typically implemented?

On a router at the boundary between private and public networks

7
New cards

What is the basic purpose of NAT?

Allow private network devices to communicate with the public internet

8
New cards

What does NAT do to packet addresses?

Replaces private source IP with a public IP address

9
New cards

What is Static NAT?

A one-to-one mapping between a private IP and a public IP

10
New cards

Why would you use Static NAT?

For security, filtering, or hosting services like web servers

11
New cards

What is Dynamic NAT?

A mapping of private IPs to a pool of public IP addresses

12
New cards

How does Dynamic NAT work?

Assigns an available public IP from a pool to a private device temporarily

13
New cards

What is NAT Overloading (PAT)?

Mapping multiple private IPs to a single public IP using port numbers

14
New cards

What does PAT stand for?

Port Address Translation

15
New cards

Where is NAT overloading commonly used?

Home and small office networks

16
New cards

What is Overlapping NAT?

A NAT method used when networks with identical IP ranges must communicate

17
New cards

When is overlapping NAT used?

During mergers or when duplicate IP ranges exist

18
New cards

What is IP pooling in NAT?

Using a pool of public IP addresses for dynamic assignment

19
New cards

What happens when a device connects using pooled NAT?

It is assigned an available public IP from the pool

20
New cards

What is IP masquerading?

Another term for NAT overloading (PAT)

21
New cards

What information in a packet helps NAT track connections?

Source IP, source port, destination IP, destination port

22
New cards

Why are port numbers important in NAT overloading?

They create unique identifiers for each connection

23
New cards

What does NAT do to the source IP in outgoing packets?

Replaces it with a public IP address

24
New cards

How does NAT handle returning packets?

Uses a translation table to map back to the original private IP

25
New cards

What happens if two devices use the same source port?

NAT assigns different external ports to avoid conflicts

26
New cards

What is TCP/IP multiplexing?

Using multiple port numbers to maintain multiple simultaneous connections

27
New cards

What is the order of operations (inside to outside)?

Inbound ACL → routing → NAT → outbound ACL

28
New cards

What is the order of operations (outside to inside)?

Inbound ACL → NAT → routing → outbound ACL

29
New cards

Why are NAT and routing steps reversed depending on direction?

Because address translation must occur before or after routing depending on traffic flow

30
New cards

What are some concerns about NAT?

Breaks end-to-end connectivity, complicates protocols, and adds processing overhead

31
New cards

What command shows NAT statistics?

show ip nat statistics

32
New cards

What command shows NAT translation entries?

show ip nat translations

33
New cards

How do you clear NAT translations?

clear ip nat translation *

34
New cards

What command is used to debug NAT?

debug ip nat