Support Center / How to manually set up port forwarding

How to manually set up port forwarding

Port forwarding routes connections through the firewall Proton VPN uses to protect our customers. It’s mainly useful to people downloading and sharing files using P2P protocols such as BitTorrent, although it can also improve performance for online gamers.

Learn more about port forwarding

Port forwarding is available on our Windows app. However, it’s also possible to use port forwarding on other devices that are manually configured to connect to Proton VPN using our OpenVPN or WireGuard configuration files. 

Step 1: Configure VPN settings

All our P2P servers support port forwarding. P2P servers can be easily identified in our apps and on our VPN configuration download pages by a double-arrow icon.

How to spot P2P servers

OpenVPN

1. Sign in to your Proton VPN Account and go to AccountDownloads OpenVPN configuration files. Select a VPN server that supports P2P (double-arrow icon) and download its OpenVPN configuration files.

2. Configure your OpenVPN client (such as OpenVPN GUI for Windows, Tunnelblick for macOS, or the OpenVPN CLI or NetworkManager GUI for Linux).

Remember that your OpenVPN login username and password are different from your regular Proton Account username and password. You can find them in your Proton VPN Account by going to AccountOpenVPN / IKEv2 username.

To use port forwarding, add the suffix +pmp to your OpenVPN username. For example, if your OpenVPN username is “myusername2023”, use “myusername2023+pmp”.

Note that you can use the +pmp suffix with other suffixes supported by Proton VPN. For example, to use port forwarding and our Netshield Ad-blocker feature, your username might be “myusername2023+pmp+f2”. 

3. Connect to Proton VPN. To check that you’re connected and the VPN is working correctly, visit ip.me or open a Terminal window on macOS or Linux and enter curl ip.me.

WireGuard

1. Sign in to your Proton VPN Account and go to AccountDownloads WireGuard configuration.

2. Select a VPN server that supports P2P (double-arrow icon) and generate a WireGuard configuration file. When doing this, ensure that  Select VPN optionsNAT-PMP (port forwarding) is enabled

Enable NAT-PMP

3. Download the generated WireGuard configuration file and use it to configure your WireGuard client. See our sample guide to installing WireGuard with Proton VPN on Ubuntu using Network Manager

4. Connect to Proton VPN. To check that you’re connected and the VPN is working correctly, visit ip.me or open a Terminal window on macOS or Linux and enter curl ip.me.

curl ip.me

Step 2: How to use port forwarding

Manual configuration

You can manually create the correct port mappings on any desktop system in several ways. For example, using netsh on Windows or a mix of Python commands and Cron jobs on Debian

The example below shows you how to create the correct port mappings on Linux using natpmpc. 

1. Connect to the VPN with port forwarding enabled, as described above.

2. Check that port forwarding is allowed on the server you’re connected to. To do this, open a terminal window and enter:

natpmpc -g 10.2.0.1

If port forwarding is permitted on the server you are connected to, the output will look like this:

Check that port forwarding is allowed on the VPN server

If this test fails (see screenshot below), please return to Step 1 of this guide, select a different P2P server, and ensure your VPN connection is configured correctly. 

Test failure

3. Create a UDP port mapping on UDP, needed for port forwarding. Enter:

natpmpc -a 1 0 udp 60 -g 10.2.0.1

In the example below, port 53186 has been allocated for this.

Create a UDP port mapping on UDP

4. Create a port mapping on TCP.

natpmpc -a 1 0 tcp 60 -g 10.2.0.1

In the example below, port 53186 has been allocated for this.

Create a port mapping on TCP

5. Finally, loop natmpmpc so that it doesn’t expire. Enter:

while true ; do date ; natpmpc -a 1 0 udp 60 -g 10.2.0.1 && natpmpc -a 1 0 tcp 60 -g 10.2.0.1 || { echo -e "ERROR with natpmpc command \a" ; break ; } ; sleep 45 ; done
Loop natmpmpc

Port forwarding is now activated. Note that closing your terminal window will terminate the loop process. You will need to re-run this loop script each time you want to start a new port forwarding session or the port will only stay open for 60 seconds. 

Technical notes

1. Our extension to the NAT-PMP protocol uses internal/external ports 0/0. This is a Proton VPN customization that follows rfc6886 for NAT-PMP implementation to assign a random external port but adds custom handling of requests to ports 0/0.

Our extension to the NAT-PMP protocol uses internal/external ports 0/<any>. This is a Proton VPN customization that follows rfc6886 for NAT-PMP implementation to assign a random external port, but adds custom handling for requests to ports 0/<any>. This allows you to map a local port to an external port.

2. These instructions have very little in the way of error handling. Best practice would be to parse the return code and output of natpmpc, but we haven’t done that here to keep this guide as simple as possible. You can find a good example of correct error handling here (but please note that Proton VPN has no affiliation whatsoever with this Reddit discussion). 

Secure
your internet

Get Proton VPN
Get Proton VPN

Contact us

Support form

Tell us about the problem and we'll get back to you as soon as we can.

Open support form

Live chat

Get help from a support agent in real time. Available with a paid VPN subscription.

Chat with us

Secure email

Send us an encrypted message at contact@protonvpn.com. It may take us longer to respond.

Email us