Home | Reports | Technical Documents | Tech-Blog | One-Shot Gallery | Korea ICT News | Korea Communication Market Data | List of Contributors | Become a Contributor |    
 
 
Section 5G 4G LTE C-RAN/Fronthaul Gigabit Internet IPTV/Video Streaming IoT SDN/NFV Wi-Fi KT SK Telecom LG U+ Network Protocol Samsung   Korean Vendors
 
Real World Private 5G Cases   4 Deployment Models On-Premise Cases 5G Core Control Plane Sharing Cases

5G Core Sharing Cases

   
 
Private 5G Deployment   • Private 5G Frequency Allocation Status in Korea  South Korean government's regulations on private 5G and KT's strategy for entering the market
Cases in Korea   Private 5G Operators |   SK Networks Service (SI) Sejong Telecom (Wire-line Carrier) KT MOS (Affiliate of KT) • Newgens (SI) • NAVER Cloud more >>  
    Enterprise DIY |   Korea Hydro & Nuclear Power (Power Plant) Korea Electric Power Corporation (Energy) • Republic of Korea Navy more >>
 
CHANNELS     HFR Private 5G Solution (my5G)       my5G Solution Components       my5G Key Features        my5G Resources        my5G News          
 
banner
banner
Network Address Translation (NAT) Overview (RFC 3022/2663)
September 03, 2013 | By Netmanias (tech@netmanias.com)
Online viewer:
Comments (0)
7

Today, NATs are employed by Korean telecom operators in almost all of their access networks except for wired access networks (FTTH, Ethernet, DSL, etc.).  

  • 3G/LTE network: Large Scale NAT (LSN) installed beyond GGSN/P-GW in the 3G/LTE core networks. Also called "Carrier Grade NAT (CGN)".
  • Wi-Fi Hotspot network: NAT implemented in Wi-Fi hotspot AP. 
  • Residential network: NAT implemented in subscribers' APs provided by (leased from) telecom operators, or in APs purchased from open markets (e.g. D-Link's DIR).   

All users, including 3G/LTE users, Wi-Fi hotspot users and home AP users, are assigned a private IP address. Then later when they access the Internet, this address is converted into a public IP address through a NAT.  

 

Using a NAT allows telecom operators to: 

(1) save public IP addresses because the NAT converts the private IP addresses assigned to multiple devices into a public address. This allows the devices to use only one public IP address instead of their private IP addresses when accessing the Internet.

(2) prevent any external attack on mobile devices or mobile networks by introducing LSNs on the 3G/LTE network. Enterprises can also protect their internal network from external intrusion/attack by making their addresses private (similar to using firewalls). 

 

Below, NAT-related terms defined in RFC 3022 (Traditional NAT) and RFC 2663 (IP NAT Terminology and Considerations) will be explained. 

 

  

Terminology

 

1. TU Ports

Both TCP and UDP header have source and destination port fields. And these ports are collectively called "TU Ports", or "Transport Identifiers". When a device (client) communicates with a server using TCP or UDP, a value from 0 to 1,023 (well-known ports defined by IANA) or from 1,024 to 49,191 (registered ports defined by IANA) is generally used as a value for a TU destination port, as set in RFC 1700. For example, HTTP's TCP destination port is 80. For a TU source port, however, each OS uses a value randomly selected from different ranges defined for each OS (approximately 30,000 ~ 60,000). This type of port is called an "ephemeral port" (see http://en.wikipedia.org/wiki/Ephemeral_port for more information).

 

2. Public/Global/External Network

Refers to a network which has globally unique IP addresses assigned by the Internet Assigned Numbers Authority (IANA). Therefore, this type of network can route (communicate) across telecom operators' networks around the world. It is commonly called a "public IP network".   

 

3. Private/Local Network

Refers to a network which has IP addresses that are not assigned by IANA. This type of network cannot route through the Internet. It is commonly called a "private IP network".

IANA defines the following three IP blocks for this purpose:

  • 10/8, 172.16/12, 192.168/16

4. Session

A session is defined as the set of traffic that is managed as a unit for translation. Each TCP/UDP session is identified by the values of a source IP address, source TU port, destination IP address and destination TU port.

 

5. Application Level Gateway (ALG)

Some applications have IP address and/or TU port information in their payload (application-specific data that follows TCP/UDP headers). For this reason, some NAT devices have Application Level Gateways (ALGs), which feature an agent that can translate the IP address and/or TU port information stored in payloads (Application awareness inside the NAT). In general, these NATs come with a list of applications supported (e.g. FTP, SIP, RTSP, etc.). Since it is practically impossible for a NAT to support ALGs for all the applications that are being released every day in the market, not many NATs seem to support ALGs.  

 

 

What is NAT?

 

Network Address Translation (NAT) is the process of converting a private IP address into a public IP address, and vice versa, to allow a device on a private network to communicate with a public network (Internet).

 

Traditional NAT would allow hosts within a private network to transparently access hosts in the external network, in most cases.  In a traditional NAT, sessions are uni-directional, outbound from the private network.  Sessions in the opposite direction may be allowed on an exceptional basis using static address maps for pre-selected hosts. (RFC 3022)

 

Traditionally, NAT devices are used to connect an isolated address realm with private unregistered addresses to an external realm with globally unique registered addresses. (RFC 2663)

 

 

Types of NAT

 

There are two types of NAT defined in RFC 3022/2663: Basic NAT and Network Address Port Translation (NAPT). They both are collectively called "Traditional NAT" although NAPT, aimed at "saving IPv4 addresses", is the most common type of NAT these days. So, when we say NAT, we refer to NAPT in most cases. The NAPT-type operation is now supported by all APs.  

 

Basic Network Address Translation or Basic NAT is a method by which IP addresses are mapped from one group to another, transparent to end users.  Network Address Port Translation, or NAPT is a method by which many network addresses and their TCP/UDP (Transmission Control Protocol/User Datagram Protocol) ports are translated into a single network address and its TCP/UDP ports.  

Together, these two operations, referred to as traditional NAT, provide a mechanism to connect a realm with private addresses to an external realm with globally unique registered addresses. (RFC 3022)

 

 

1. Basic NAT

 

 

Definition and Purpose 

Basic NAT is employed in enterprise networks for security purposes (like firewall). It provides a one-to-one translation of IP addresses. This means the same number of public IP addresses as the devices with a private IP address are needed to access the Internet. 

 

Nodes on private network could be enabled to communicate with external network by dynamically mapping the set of private addresses to a set of globally valid network addresses. (RFC 3022)

   

Translation Rule  

1:1 translation (1 = Public IP, 1 = Private IP)

 

Mapping 

Outbound Traffic: Translating a private source IP address to a public source IP address

Inbound Traffic: Translating a public destination IP address to a private destination IP address

 

Packet Modification 

Following packet information is replaced during translation: 

Outbound Traffic: Source IP address, IP header checksum

Inbound Traffic: Destination IP address, IP header checksum

 

Three Translation Phases in a Session 

 

1. Address Binding

A basic NAT binds a public IP address to each outbound traffic sent by a device with a private IP address (1:1 mapping), and generates a session entry in the NAT binding table. 

 

2. Address Lookup and Translation

Later when the NAT receives an outbound traffic packet (from a user device to NAT), it translates the private source IP address of the packet to a public source IP address by referring to the binding table, and delivers it on to the Internet. 

When it receives an inbound traffic packet (from the Internet to NAT), it translates the public destination IP address of the packet to the IP address of the user device, i.e. a private destination IP address, by referring to the binding table, and delivers it on to the user device. 

 

3. Address Unbinding

If there is no incoming packet that corresponds to a session entry generated, the NAT deletes the entry from the NAT binding table.  

 

Deployment Example

Enterprise network

 

 

2. Network Address Port Translation (NAPT)

 

 

Definition and Purpose

NAPT is employed for saving public IP addresses. It provides a many-to-one translation of IP addresses. That means one public IP address is used when multiple user devices with a private IP address access the Internet. 

 

Nodes on the private network could be allowed simultaneous access to the external network, using the single registered IP address with the aid of NAPT. (RFC 3022)

 

Translation Rule  

1:N translation (1 = Public IP, N = Private IP)

 

 Mapping

Outbound Traffic: Translating {Private source IP address, Local TU source port} tuple to {Public source IP address, Registered TU source port} tuple

Inbound Traffic: Translating {Public destination IP address, Registered TU destination port} tuple to {Private destination IP address, Local TU destination port} 

 

 Packet Modification 

Following packet information is replaced during translation: 

Outbound Traffic: Source IP address, IP deader checksum, TU source port, TCP/UDP header checksum

Inbound Traffic: Destination IP address, IP header checksum, TU destination port, TCP/UDP header checksum

 

 Three Translation Phases in a Session 

 

1. Address Binding

When a device with a private IP address sends an outbound traffic, a NAPT binds a public IP address and TU source port to the private IP address and TU source port of the device (1:N mapping). Then the NAPT generates a session entry for the traffic in the NAT binding table. 

 

2. Address Lookup and Translation

 Later when the NAPT receives an outbound traffic packet (from a user device to NAT), it translates the private source IP address and local TU source port of the packet into a public source IP address and registered TU source port by referring to the binding table, and delivers it on to the Internet (Registered ports refer to the ones assigned by a NAT. A local TU source port is also called an "Internal Port", and a registered TU source port is called an "External Port".). 

 When it receives an inbound traffic packet (from the Internet to NAT), it translates the public destination IP address and registered TU destination port of the packet to the IP address and port values of the user device, i.e. a private destination IP address and local TU destination port, by referring to the binding table, and delivers it on to the user device. 

 

3. Address Unbinding

If there is no incoming packet that corresponds to a session entry generated, the NAPT deletes the entry from the NAT binding table.  

 

Deployment Example 

Wi-Fi hotspot, SOHO, Home and 3G/LTE LSN

 

Thank you for visiting Netmanias! Please leave your comment if you have a question or suggestion.
 
 
 
 

[HFR Private 5G: my5G]

 

Details >>

 

 

 

     
         
     

 

     
     

Subscribe FREE >>

Currently, 55,000+ subscribed to Netmanias.

  • You can get Netmanias Newsletter

  • You can view all netmanias' contents

  • You can download all netmanias'

    contents in pdf file

     
     

 

     
         
     

 

 

 

View All (181)
5G (9) 6G (1) Backbone (2) Backhaul (3) Blockchain (1) CDN (1) Carrier Ethernet (3) Charging (1) Cloud Native (1) Core (1) DHCP (4) ECM (2) EMM (16) EPS (2) Google (1) HLS (1) HTTP Adaptive Streaming (3) Handover (5) IPTV (4) Initial Attach (2) IoT (2) Korea (1) LTE (39) LTE Identification (2) LTE-A (1) MPLS (2) Mobility (2) NAT (7) Netflix (1) Network Architecture (3) Network Protocol (20) New Radio (1) OTT (1) PCRF (3) Private 5G (1) QoS (3) RCS (3) SDF (2) SDN/NFV (3) SK Telecom (2) Samsung (3) Security (5) Sk Telecom (1) Transparent Cache (1) Video Streaming (4) VoLTE (2) Wi-Fi (1) YouTube (2)
Password confirmation
Please enter your registered comment password.
Password