10
Why isn't my port forwarding working?
(protonvpn.com)
1. Posts must be related to the discussion of digital piracy
2. Don't request invites, trade, sell, or self-promote
3. Don't request or link to specific pirated titles, including DMs
4. Don't submit low-quality posts, be entitled, or harass others
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
Are you using OpenVPN or Wireguard configs?
For Wireguard I had to slightly modify the commands to open a port to:
natpmpc -g 10.2.0.1 -a 0 0 tcp 60
natpmpc -g 10.2.0.1 -a 0 0 udp 60
while true ; do date ; natpmpc -g 10.2.0.1 -a 0 0 tcp 60 && natpmpc -g 10.2.0.1 -a 0 0 udp 60 || { echo -e "ERROR with natpmpc command \a" ; break ; } ; sleep 45 ; done
Huh I am using openvpn but that's good to know!