What is Network Address Translation? | Avi Networks (2024)

<< Back to Technical Glossary

Network Address Translation Definition

Network Address Translation (NAT) is a process that enables one, unique IP address to represent an entire group of computers. In network address translation, a network device, often a router or NAT firewall, assigns a computer or computers inside a private network a public address. In this way, network address translation allows the single device to act as an intermediary or agent between the local, private network and the public network that is the internet. NAT’s main purpose is to conserve the number of public IP addresses in use, for both security and economic goals.

What is Network Address Translation? | Avi Networks (1)

Network Address Translation FAQs

What is Network Address Translation?

Network Address Translation (NAT) conserves IP addresses by enabling private IP networks using unregistered IP addresses to go online. Before NAT forwards packets between the networks it connects, it translates the private internal network addresses into legal, globally unique addresses.

NAT configurations can reveal just one IP address for an entire network to the outside world as part of this capability, effectively hiding the entire internal network and providing additional security. Network address translation is typically implemented in remote-access environments, as it offers the dual functions of address conservation and enhanced security.

What is the Purpose of NAT?

To communicate with the internet, a networking system requires a unique IP address. This 32-bit number identifies and locates the network device so a user can communicate with it.

The IPV4 addressing scheme of past decades technically made billions of these unique addresses available, but not all could be assigned to devices for communication. Instead, some were exempted and used for testing, broadcast, and certain reserved military purposes. While that left over 3 billion for communication, the proliferation of the internet has meant the addresses were near exhaustion.

The IPv6 addressing scheme was introduced as the solution to this weakness in the IPv4 addressing scheme. IPv6 recreates the addressing system so there are more options for allocating addresses, but it has taken several years to alter the networking system infrastructure and to implement. NAT was introduced by Cisco in the meantime and widely deployed.

How Network Address Translation Works

Network address translation permits a single device, such as a NAT firewall or NAT router or other network address translation device, to act as an agent between the public network and private networks—the internet and any local networks. This allows an entire group of devices to be represented by a single unique IP address when they do anything outside their network.

NAT works like a large company’s receptionist, with specific instructions on which calls and visitors to keep out, make wait, or send through, and where they should go. For example, you can tell the receptionist not to forward any visitors or calls without your request until you’re waiting for something specific; you can then leave instructions about letting that particular client communication through.

The client calls the company’s main number, because that public-facing number is the only one anyone knows. They tell the receptionist they need to speak with you, and the receptionist a) checks the instructions and knows you want the call forwarded, and b) matches your extension with a list to send the information to the right place. The caller never gets your private line.

Network address translation works similarly. The request arrives at the public IP address and port, and the NAT instructions send it where it should go without revealing the private IP addresses of the destinations.

NAT Network Address Translation Example

As a NAT network address translation example, an inside host may want to communicate with a destination network address translation web server address in the outside world. For further communication, it will send a data packet to the network’s NAT gateway router.

The NAT gateway router determines whether the packet meets the condition for translation by learning the source IP address of the packet and looking it up in the table. It can locate authenticated hosts for the internal network translation purposes on its access control list (ACL), and then complete the translation, producing an inside global IP address from the inside local IP address.

Finally, the NAT gateway router will route the packet to the destination after saving the translation in the NAT table. The packet reverts to the global IP address of the router when the internet’s web server reverts to the request. Referring back to the NAT table, the router can determine which translated IP address corresponds to which global address, translate it to the inside local address, and deliver the data packet to the host at their IP address. The data packet is discarded if no match is found.

Types of Network Address Translation

There are many forms of NAT and it can function in several ways.

Static network address translation SNAT. SNAT maps unregistered IP addresses using 1 to 1 network address translation to match up with registered IP addresses. It is particularly useful when a device needs to be accessible from outside the network.

Dynamic network address translation DNAT. This form of NAT selects a target from a group of registered IP addresses and maps an unregistered IP address to the registered version.

Reverse network address translation RNAT. RNAT allows users to connect to themselves using the internet or public network.

Overloading network address translation NAT. This is also known as NAT overload, port-level multiplexed NAT, single address NAT, or port address translation (PAT). This form of dynamic NAT uses different ports to map multiple private, local, unregistered IP addresses to a single registered IP address and distinguish which traffic belongs to which NAT IP address. In terms of port address translation vs network address translation, PAT is often most cost-effective when many users are connected to the internet through just one public IP address.

Overlapping network address translation NAT. Overlapping NAT can happen either when two organizations whose networks both use RFC 1918 IP addresses merge, or when registered IP addresses are assigned to multiple devices or otherwise in use on more than one internal network. In both cases, the networks need to communicate, and the organization(s) use overlapping NAT to achieve this without readdressing all devices.

The NAT router intercepts addresses, and maintains a table of them so that it can replace them with registered unique IP addresses. The network address translation router must both translate registered external IP addresses to those unique to the private network and translate internal IP addresses to registered unique addresses. It might achieve this either by using DNS to implement dynamic NAT or through static NAT.

In the network address translation context, the internal network, commonly referred to as the stub domain, is usually a local area network LAN that uses IP addresses internally. Most stub domain network traffic is local, remaining inside the internal network. A stub domain may include both unregistered and registered IP addresses.

Network Address Translation Configuration

A traditional NAT configuration requires at least one interface on a router (NAT outside); another interface on the router (NAT inside); and a configured set of rules for translating the IP addresses in the packet headers and possibly payloads.

In this example of network address translation configuration, IT configures the NAT router as follows. Whenever a device on the inside with an unregistered (inside, local) IP address needs to communicate with the (outside, public) network, the router translates those unregistered addresses residing on the private (inside) network to registered IP addresses.

  • The organization receives a range of registered, unique IP addresses assigned by the ISP. The assigned list of addresses are called inside global addresses.
  • The team splits unregistered, private addresses into one small group and one much larger group. The stub domain will use the larger group, called inside local addresses. The NAT routers will use the small group, called outside local addresses, to translate the outside global addresses or unique IP addresses of devices on the public network.
  • Most stub domain computers communicate with each other using inside local addresses. There are inside global addresses for those stub domain computers that communicate extensively outside the network, meaning they do not require translation.
  • However, when a typical stub domain computer with an inside local address needs to communicate outside the network, it sends the packet to a NAT router.
  • The NAT router checks for the destination address in the routing table. If it has an entry for that address, the NAT router translates the packet and enters that action into the address translation table. The NAT router drops the packet if the destination address is not in the routing table.
  • The router sends the packet on using an inside global address.
  • A public network computer sends a packet to the private network. The packet’s destination address is an inside global address and its source address is an outside global address.
  • The NAT router confirms that the destination address maps to a stub domain computer by checking the address translation table.
  • The NAT router sends the packet to the destination computer after translating the packet’s inside global address to the inside local address.

NAT overloading uses multiplexing, a TCP/IP protocol stack feature. Multiplexing enables a computer to maintain multiple connections with remote computer(s) concurrently using different ports. The header of an IP packet contains:

Source Address. The originating computer’s IP address, for example, 123.123.12.1
Source Port. The assigned TCP or UDP port number for this packet, for example, Port 1060
Destination Address. The receiving computer’s IP address, for example, 52.220.51.237
Destination Port. The TCP or UDP network address translation port number the destination computer should open, for example, Port 2170

These four numbers combined represent a single TCP/IP connection. The addresses clarify the two computers at each end, and the port numbers provide a unique identifier for the connection between the two computers. Although there are a possible 65,536 values here since each port number uses 16 bits, different ports are mapped in slightly different ways, so about 4,000 available ports is realistic.

Dynamic NAT and NAT Overloading Configuration

In dynamic network address translation:

  • IANA (Internet Assigned Numbers Authority), the global authority that assigns IP addresses, is the only source of unique IP addresses. Where a stub domain or internal network has been set up with IP addresses that IANA did not specifically allocate for them, the addresses are not unique and are therefore non-routable.
  • The organization sets up a router enabled for NAT that contains a range of unique IP addresses from IANA.
  • A stub domain computer attempts to connect to an outside computer.
  • The router receives the stub domain computer’s packet.
  • The NAT-enabled router saves the non-routable IP address from the sending computer to an address translation table. The router maps the first available IP address outside the zone of unique IP addresses to the sending computer to replace the non-routable IP address.
  • The router now checks each packet’s destination address when it arrives from the destination computer, and verifies which stub domain computer the packet belongs to with the address translation table. If it finds no match, it drops the packet. Otherwise, it locates the alternative for the destination address saved in the address translation table and sends it.
  • The computer receives the packet and the process continues as long as the external system and the computer communicate.

In NAT overloading:

  • As in the previous dynamic NAT example, a stub domain or internal network has been set up with non-routable, non-unique IP addresses not specifically allocated for them, so the organization sets up a router enabled for NAT that contains a unique IP address from IANA.
  • A stub domain computer attempts to connect to an outside computer.
  • The NAT-enabled router receives the stub domain computer’s packet.
  • The NAT router saves the non-routable IP address and port number from the sending computer to an address translation table. The router maps a port number and the router’s IP address to the sending computer to replace the non-routable IP address and port number.
  • The router checks the destination ports of packets that return from the destination computer and confirms which stub domain computer the packet belongs to. It replaces the destination port and address with the saved versions from the address translation table and sends them.
  • The computer receives the packet and the process continues as long as the external system and the computer communicate.
  • The NAT router will continue to use the same port number throughout the connection, as it has the computer’s source port and address saved to the address translation table. If the communication ends without the entry being accessed again, the router removes the entry from the table.

In contrast to the computer described above in the traditional NAT configuration, this is how stub domain computers might appear to external networks:

Source Computer 1

IP Address: 192.168.24.11
Computer Port: 620
NAT Router IP Address: 215.37.32.203
NAT Router Port Number: 1

Source Computer 2

IP Address: 192.168.24.12
Computer Port: 80
NAT Router IP Address: 215.37.32.203
NAT Router Port Number: 2

Source Computer 3

IP Address: 192.168.24.13
Computer Port: 1560
NAT Router IP Address: 215.37.32.203
NAT Router Port Number: 3

The NAT-enabled router stores each source computer’s IP address and port number. It uses its own registered IP address and port numbers to replace the IP address and the port number that correspond to that packet’s source computer in the table. In place of the source-computer information on each packet, any external network sees the NAT router’s IP address and the assigned port number.

Some stub domain computers do use dedicated IP addresses. In these situations their IP addresses can pass by the NAT router untranslated if you create an access list of IP addresses that clarifies for the router which network computers require NAT.

A router’s Dynamic Random Access Memory (DRAM) is the main factor that determines the number of simultaneous translations that it can support. A typical address-translation table entry requires about 160 bytes, so for most applications, a router with 4 MB of DRAM is sufficient.

According to IANA and RFC 1918, there are specific ranges of IP addresses for use as internal network addresses that are non-routable. These addresses are unregistered, meaning no agency or company can use them on public computers or claim ownership over them. Instead of forwarding unregistered addresses, routers are designed to discard them. Therefore, a packet from an unregistered sending computer address could reach its registered computer destination, but the first router the reply came to would discard it.

To reduce the chance of an IP address conflict, it pays to follow the range for each of the three classes of IP addresses in your internal networking:

  • Range 1: Class A – 10.0.0.0 through 10.255.255.255
  • Range 2: Class B – 172.16.0.0 through 172.31.255.255
  • Range 3: Class C – 192.168.0.0 through 192.168.255.255

However, this is a best practice, not a requirement.

NAT Router

Using NAT overload, a NAT router creates a network of IP addresses for a local area network LAN and connects the public network that is the internet to that LAN network. The router executes the NAT permitting communication between WAN or internet and the host devices or computers on the LAN network. Because NAT routers appear to be a solo host with a solo IP address to the internet, they are used for small scale industries and home purposes.

Advantages of Network Address Translation

Advantages of NAT

Address conservation. NAT conserves IP addresses that are legally registered and prevents their depletion.

Network address translation security. NAT offers the ability to access the internet with more security and privacy by hiding the device IP address from the public network, even when sending and receiving traffic. NAT rate-limiting allows users to limit the maximum number of concurrent NAT operations on a router and rate limit the number of NAT translations. This provides more control over the use of NAT addresses, but can also be used to limit the effects of worms, viruses, and denial-of-service (DoS) attacks. Dynamic NAT implementation creates a firewall between the internal network and the internet automatically. Some NAT routers offer traffic logging and filtering.

Flexibility. NAT provides flexibility; for example, it can be deployed in a public wireless LAN environment. Inbound mapping or static NAT allows external devices to initiate connections to computers on the stub domain in some cases.

Simplicity. Eliminates the need to renumber addresses when a network changes or merges.
Network address translation allows you to create an inside network virtual host to coordinate TCP load-balancing for internal network servers.

Speed. Compared to proxy servers, NAT is transparent to both destination and source computers, allowing for quicker direct dealing. In addition, proxy servers typically work at the transport layer or layer 4 of the OSI Reference Model or higher, making them slower than network address translation, which is a network layer or layer 3 protocol.

Scalability. NAT and dynamic host configuration protocol (DHCP) work well together, with the DHCP server doling out unregistered IP addresses for the stub domain from the list as necessary. Scaling up is easier, since you can increase the available range of IP addresses the DHCP configures to make room for additional network computers immediately instead of requesting more IP addresses from IANA as needs increase.

Multi-homing. Multiple connections to the internet, called multi-homing, helps maintain a reliable connection and reduces the chance of a shutdown in case of a failed connection. This also enables load-balancing via reducing the number of computers using any single connection. Multi-homed networks often connect to multiple ISPs, each assigning a range of IP addresses or a single IP address to the organization. Routers use network address translation to route between networks using different network address translation protocols. In a multi-homed network, the router uses part of the TCP/IP protocol suite, the border gateway protocol (BGP), to communicate; the stub domain side uses internal BGP or IBGP, and routers communicate with each other using external BGP or EBGP. Multi-homing reroutes all data through another router should one of the connections to an ISP fail.

Disadvantages of NAT

Resource consumption. Network address translation is a technology that consumes memory resources and processor space, because it must translate IPv4 addresses for all outgoing and incoming IPv4 datagrams and retain the details from translation in memory.

Delays. Path delays are caused by translation results in switching path delays.
Functionality. Some applications and technologies will not function as expected with NAT enabled.

Traceability. Network address translation complicates protocols for tunneling. IPsec is the secure protocol recommended for network address translation.

Layer issue. A router is a device for the network layer, yet as a NAT device it is required to tamper with the transport layer in the form of port numbers.

Does Avi Offer a Network Address Translation Software Solution?

Avi Networks’ Avi Platform, a software-defined application services fabric, enforces access control policies and captures and analyzes end-to-end application traffic, delivering services far beyond load balancing.

When new application servers are deployed, the servers need external connectivity for manageability. In the absence of a router in the server networks, the Avi SE can be used for routing the traffic of server networks by using the IP routing feature of Service Engines. The Avi Service Engine (SE) NAT functionality covers this, and serves as a NAT gateway for the entire private network of servers.

NAT will function either through IP routing on Service Engine, the SE default gateway feature, or in the post-routing phase of the packet path. To use outbound NAT functionality, it’s necessary to enable IP routing on the Service Engine and use the SE as a gateway.

Avi supports outbound NAT for TCP/UDP, and ICMP flows.

There are three outbound NAT use case options:

  • NAT Flows (show NAT flow information)
  • NAT Policy Stats (show NAT policy stats)
  • NAT Stat (show NAT statistics)

The platform also enables Source NAT or SNAT for application identification. The source IP address used by Avi SEs for server back-end connections can be overridden through an explicit user-specified address—the source NAT (SNAT) IP address. The SNAT IP address can be specific as part of the virtual service configuration.

In some deployments, to provide differential treatment based on the application, it’s essential to identify traffic based on source IP address. For example, in DMZ deployments security, firewall, visibility, and other types of solutions may need to validate clients using the source IP before passing traffic on to an application.

Source NAT can be used with either high availability (HA) mode: elastic HA or legacy HA. The configuration requirements differ depending on whether the SE and back-end servers are in the same subnet (connected at Layer 2) or in different subnets (connected at Layer 3).

For more on the actual implementation of load balancing, security applications and web application firewalls check out ourApplication Delivery How-To Videos.

What is Network Address Translation? | Avi Networks (2024)

FAQs

What is Network Address Translation? | Avi Networks? ›

What Is NAT? NAT stands for network address translation. It's a way to map multiple private addresses inside a local network to a public IP address before transferring the information onto the internet. Organizations that want multiple devices to employ a single IP address use NAT, as do most home routers.

What is an example of network address translation? ›

The simplest example is when a DSL modem and a Wi-Fi router are connected in a network with NAT enabled in each of them. The host devices connected to the public network through a Wi-Fi router.

Why is NAT used? ›

The main use of NAT is to limit the number of public IP addresses an organization or company must use, for both economic and security purposes. Those original 4 billion unique addresses were not all able to be assigned to devices for communication. Some were used for testing, broadcast, and military purposes.

What is the difference between NAT and DHCP? ›

DHCP is used to assign IP addresses to clients, whereas NAT is used to translate one address to another primarily to support internet access but translating a Private address into a public address.

What is network address translation NAT benefit? ›

Some benefits of NAT include: Reuse of private IP addresses. Enhancing security for private networks by keeping internal addressing private from the external network. Connecting a large number of hosts to the global Internet using a smaller number of public (external) IP address, thereby conserving IP address space.

What is NAT and how it works? ›

What Is NAT? NAT stands for network address translation. It's a way to map multiple private addresses inside a local network to a public IP address before transferring the information onto the internet. Organizations that want multiple devices to employ a single IP address use NAT, as do most home routers.

Which are common NAT types? ›

Types of NAT
  • Static NAT. It is otherwise called balanced NAT. ...
  • Dynamic NAT. In this kind of NAT, planning of IP from an unregistered private organization is finished with the single IP address of the enrolled network from the class of enlisted IP addresses. ...
  • Overloading NAT. ...
  • Overlapping NAT.
Sep 15, 2021

Is NAT still used? ›

Only the NAT device—such as a router—would require a new public facing IP address, while all the devices connected to it could continue using the same private IP addresses. NAT is now essential when it comes to conserving global address space.

Why is NAT important for security? ›

Simply put, NAT hides your device's “real” address from the network by translating this address to a different address for network communications, thereby supplying a measure of security. The good: NAT is relatively effective as a first line of defense against hackers who might invade your system.

Why is NAT not used? ›

If you keep your network secure, (that is: if no attacker can access to any device/service/etc.), it is no security leakage if the network is not hidden from the Internet by a NAT device. It is rather cumbersome that NAT breaks the end-to-end communication model and disrupts certain internet protocols.

Do all routers use NAT? ›

In this case, the building is your local network, its mailing address is your WAN IP address, each room within the building is a local device, and the room number is the device's local IP address. Each router has a NAT function. So when you use one router or a gateway, your local network has a single NAT setup.

Is NAT on router or firewall? ›

A Network Address Translation (NAT) firewall operates on a router to protect private networks. It works by only allowing internet traffic to pass through if a device on the private network requested it. A NAT firewall protects the identity of a network and doesn't show internal IP addresses to the internet.

Should I use NAT on router? ›

Network Address Translation (NAT) is an advanced networking setting that most people do not use. We advise you not to disable NAT unless instructed to do so by a qualified technician, as it could open your broadband modem to outside intrusion and create a security risk.

What is a disadvantage of NAT? ›

One disadvantage of using NAT is related to network performance, particularly for real time protocols such as VoIP. NAT increases switching delays because the translation of each IPv4 address within the packet headers takes time. The first packet is always process-switched going through the slower path.

How does NAT know which computer? ›

NAT Router Port Number: 3

The NAT-enabled router stores each source computer's IP address and port number. It uses its own registered IP address and port numbers to replace the IP address and the port number that correspond to that packet's source computer in the table.

Which problem does NAT help address? ›

Which problem does NAT help address? Network Address Translation helps address the shortage of registered IPv4 addresses. A NAT router translates multiple private addresses into a single registered IP address.

What are the three methods of NAT? ›

NAT takes several forms: Static NAT (SNAT), Dynamic NAT (DNAT), and Port Address Translation (PAT). Let's look at each of these methods separately.

What is an example of how NAT works? ›

For example a computer on an internal address of 192.168. 1.10 wanted to communicate with a web server somewhere on the internet, NAT would translate the address 192.168. 1.10 to the company's public address, lets call this 1.1. 1.1 for example.

How do I use NAT on my router? ›

Steps to configure dynamic NAT using CLI.
  1. Login to the device using SSH / TELNET and go to enable mode.
  2. Go into the config mode.
  3. Configure the router's inside interface.
  4. Configure the router's outside interface.
  5. Configure an ACL that has a list of the inside source addresses that will be translated.

How does NAT work step by step? ›

How does Network Address Translation work? A NAT works by selecting gateways that sit between two local networks: the internal network, and the outside network. Systems on the inside network are typically assigned IP addresses that cannot be routed to external networks (e.g., networks in the 10.0. 0.0/8 block).

What is the best NAT type for internet? ›

Type 1 – Open NAT

Open NAT is the best setting for online gaming, since it allows seamless connections to game servers and doesn't affect speed or ping. That said, it's the most unsecure option and leaves your connection vulnerable to cyber threats.

Is NAT a security risk? ›

It's true that NAT protects you, but it does not make you completely safe. Although the private IP addresses of your devices are hidden by it, your public IP is not. You can, however, hide it with a secure VPN. NAT firewalls also do not encrypt your data.

Is NAT like a VPN? ›

VPN provides a means for performing network address translation, called VPN NAT. VPN NAT differs from traditional NAT in that it translates addresses before applying the IKE and IPSec protocols. Refer to this topic to learn more.

How is NAT different from a firewall? ›

NAT acts as a firewall with a "default deny" policy for unsolicited incoming packets, but no other rules. Because the machines behind a NAT box are not directly addressable (usually because they have private IP addresses), machines out on the general Internet cannot send IP packets to them directly.

How do I know if I'm using NAT? ›

In order to find out if you router is behind a NAT, you need to trace how you are connected to internet. Go to checkip.dyndns.org You will get your public IP address. If there is more than 1 hop, you are behind a NAT.

Is NAT a firewall? ›

NAT works by having a firewall act as an intermediary for traffic entering and leaving the protected network. Inbound traffic is directed to a public-facing IP address, which is translated to an internal IP address to the firewall before sending the traffic on to its destination.

Why is NAT controversial? ›

NAT cannot support applications where the initiator lies on the “outside”. Because the local addresses behind the NAT are private they can't be routed across the internet. Therefore it's impossible for the external device to direct any packet to that device behind the NAT in order to initiate a session.

Do I need a firewall with NAT? ›

NAT and Firewall

They can not substitute each other. However, you need both of them if you want to communicate between 2 networks or the internet from a local network.

What are two types of network address translation? ›

Types of Network Address Translation
  • Static NAT: Static NAT maps an internal IP address to an external one on a one-to-one basis. ...
  • Dynamic NAT: With Dynamic NAT, a firewall has a pool of external IP addresses that it assigns to internal computers as needed.

What are the three types of network address translation? ›

Types of Network Address Translation

There are three different types of NAT: static, dynamic, and port address translation. Here is a breakdown of each of them.

Which of the following are types of network address translation? ›

These NAT terms are given below: Inside Local: The IP addresses of the host inside the network. For example: Your PC's private IP address. Inside Global: Public address assigned from Service Provider which represents one or more inside local IP addresses of the devices to the outside world.

What is an example of a static NAT? ›

Static NAT is useful when a network device inside a private network needs to be accessible from the internet. A common example is Static NAT configured on Router or Firewall for providing access to Web Facing application in LAN for Users who are on the Internet.

How many NAT types are there? ›

The three different NAT types are Open, Moderate, and Strict. Your NAT type is typically the result of the network you are using to connect to the Internet, and influenced by the settings or features of the router or gateway on that network.

Who uses network address translation? ›

Routers use network address translation to route between networks using different network address translation protocols.

How do I know my NAT type? ›

When you're able to get a public IP address from your ISP, check your NAT type again (Profile & system > Settings > General > Network settings > Test NAT type). If you don't get any errors and your NAT Type is Open, you're done!

Where is NAT typically implemented? ›

Which device is NAT typically implemented on? EXPLANATION NAT is typically implemented on a default gateway router. AD server, RADIUS server, and ISP Router cannot be used to configure NAT.

What is the difference between NAT and DNAT? ›

Destination NAT is performed on incoming packets, where the firewall translates a public destination address to a private address. DNAT is a 1-to-1, static translation with the option to perform port forwarding or port translation.

What are the disadvantages of using NAT technology? ›

Disadvantages
  • Increased Network Complexity − NAT adds a layer of complexity to network design. ...
  • Limited Connectivity − NAT can limit the ability of devices on a private network to establish certain types of connections. ...
  • Performance issues − Another problem is NAT can introduce performance issues.
Apr 14, 2023

What kind of device is most likely to do network address translation? ›

Network address translation is frequently used in mobile networks to allow multiple devices, such as smartphones and tablets, to connect to the internet using a single public IP address.

What is the most common form of NAT? ›

RFC 2663 uses the term network address and port translation (NAPT) for this type of NAT. Other names include port address translation (PAT), IP masquerading, NAT overload and many-to-one NAT. This is the most common type of NAT and has become synonymous with the term "NAT" in common usage.

What type of NAT type is good? ›

Type 1 – Open NAT

Open NAT is the best setting for online gaming, since it allows seamless connections to game servers and doesn't affect speed or ping. That said, it's the most unsecure option and leaves your connection vulnerable to cyber threats.

What are two source NAT types? ›

The source NAT of the firewall can be divided into two types: address translation only and address and port translation simultaneously.

Top Articles
Latest Posts
Article information

Author: Nicola Considine CPA

Last Updated:

Views: 5762

Rating: 4.9 / 5 (69 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Nicola Considine CPA

Birthday: 1993-02-26

Address: 3809 Clinton Inlet, East Aleisha, UT 46318-2392

Phone: +2681424145499

Job: Government Technician

Hobby: Calligraphy, Lego building, Worldbuilding, Shooting, Bird watching, Shopping, Cooking

Introduction: My name is Nicola Considine CPA, I am a determined, witty, powerful, brainy, open, smiling, proud person who loves writing and wants to share my knowledge and understanding with you.