Call for Contributions

This section needs improvements, examples and explanations.

Please take a look at the Contributing Guide for our Write Documentation.

VPP CGNAT Configuration

The Carrier-grade NAT (CGNAT) is a special type of NAT mainly targeted for usage by Internet Service Providers (ISPs) to manage the limited pool of public IP addresses. It solves two main problems:

  • allows to fairly share a limited number of public IP addresses between multiple customers, ensuring they all have access to the internet and cannot interfere with each other.

  • allows to track and log the usage of public IP addresses by different customers, which is often a regulatory requirement.

The CGNAT configuration is a straightforward process. It involves defining the inside and outside interfaces and creating the necessary rules to manage the translation of private IP addresses to public IP addresses.

Warning

Enabling CGNAT on an interface (both inside and outside) disables normal routing on these interfaces, also as an management access to VyOS router itself.

Ensure you have an alternative management path to the router before applying CGNAT configuration!

Interface Configuration

First, you need to define the inside and outside interfaces. The inside interface is connected to the private network, while the outside interface is connected to the public network.

set vpp nat cgnat interface inside <inside-interface>
set vpp nat cgnat interface outside <outside-interface>

This is a mandatory step, as the CGNAT needs to know on which interfaces it needs to apply rules and operate.

NAT Rules Configuration

Next, you need to create the NAT rules.

set vpp nat cgnat rule <rule-number> description <description>

Allows you to describe the rule for easier identification.

set vpp nat cgnat rule <rule-number> inside-prefix <inside-prefix>

Sets the inside prefix (private IP range) that will be translated.

set vpp nat cgnat rule <rule-number> outside-prefix <outside-prefix>

Sets the outside prefix (public IP range) that will be used for translation.

Timeouts Configuration

In some cases, you might want to adjust the timers for the NAT sessions. This can help to optimize the address space usage by controlling how long a session remains active, and how long it occupies an IP address and port combination.

This setting can be adjusted for different protocols individually:

set vpp nat cgnat timeout icmp <timeout-value>
set vpp nat cgnat timeout tcp-established <timeout-value>
set vpp nat cgnat timeout tcp-transitory <timeout-value>
set vpp nat cgnat timeout udp <timeout-value>

Example Configuration

Here is an example configuration for a CGNAT setup, assuming:

  • Inside interface: eth2

  • Outside interface: eth1

  • Inside prefix: 100.64.0.0/16

  • Outside prefix: 203.0.113.0/24

set vpp nat cgnat interface inside eth2
set vpp nat cgnat interface outside eth1
set vpp nat cgnat rule 1 description "CGNAT Rule 1"
set vpp nat cgnat rule 1 inside-prefix 100.64.0.0/16
set vpp nat cgnat rule 1 outside-prefix 203.0.113.0/24

Operational Commands

Once the CGNAT is configured, you can use the following commands to monitor its status and operation:

show vpp nat cgnat interfaces

Displays the configured inside and outside interfaces.

vyos@vyos:~$ show vpp nat cgnat interfaces
CGNAT interfaces:
  eth2 in
  eth1 out
show vpp nat cgnat sessions

Displays the active NAT sessions. Be aware that this command can produce a large amount of output if there are many active sessions.

show vpp nat cgnat mappings

Displays the current NAT mappings, including inside and outside address prefixes.

vyos@vyos:~$ show vpp nat cgnat mappings
Inside         Outside           Sharing ratio    Ports per host    Sessions
-------------  --------------  ---------------  ----------------  ----------
100.64.0.0/16  203.0.113.0/24              256               252           0

Potential Issues and Troubleshooting

Configuration is failed to apply with error similar to:

vpp_papi.vpp_papi.VPPIOError: [Errno 2] VPP API client: read failed``

CGNAT utilizes main heap memory and if you are trying to configure big prefixes or a large number of NAT sessions, you may run into memory allocation issues. Try to increase the main heap size in VPP configuration.