Skip to content

Latest commit

 

History

History
74 lines (43 loc) · 3.21 KB

specify-nat.md

File metadata and controls

74 lines (43 loc) · 3.21 KB
title sidebar_position description tags
Specify NAT method
4
Configuring NAT with Besu
public networks
private networks

Specify the NAT method

Use the --nat-method option to specify the NAT method. Options are: UPNP, DOCKER, AUTO, and NONE.

The enode advertised to other nodes during discovery is the external IP address and port. The admin_nodeInfo JSON-RPC API method returns the external address and port for the enode and listenAddr properties.

While Besu is running, the following are not supported:

  • IP address changes
  • Changing NAT methods. To change the NAT method, restart the node with the --nat-method option set.

Auto

AUTO detects if Besu is running inside a Docker container. If Besu is running in a Docker container, AUTO sets to DOCKER. If Besu is not running in a Docker container, AUTO sets to NONE.

AUTO is the default NAT method.

:::tip

If automatic detection fails, set the IP and ports in NONE mode.

:::

UPnP

Specify UPNP to quickly allow inbound peer connections without manual router configuration. Use UPnP in home or small office environments where a wireless router or modem provides NAT isolation.

UPnP automatically detects if a node is running in a UPnP environment and provides port forwarding. UPnP might introduce delays during node startup, especially on networks without a UPnP gateway device.

Use UPNPP2PONLY if you wish to enable UPnP only for p2p traffic.

:::tip

UPnP support is often disabled by default in networking firmware. If disabled by default, you must explicitly enable UPnP support.

:::

:::info

When the NAT method is set to UPNP, the advertised port is the same as the listening port.

:::

Docker

Specify DOCKER to explicitly specify Besu is running inside a Docker container. If you specify DOCKER, you advertise the host IP address not the container IP address.

The host IP address is the advertised host specified in the docker run command. If not specified in the docker run command, the advertised host defaults to the values for --p2p-host and --p2p-port.

None

Specify NONE to explicitly configure the external IP address and ports advertised using:

The P2P and JSON-RPC HTTP hosts and ports are advertised in the net_services method.

:::tip

When the NAT method is set to NONE, the advertised port is the same as the listening port.

:::