Added firewall rule for 51820

My vpn was not working unless i disabled the firewall until i added this rule.

Signed-off-by: Timothy-Page <44987179+Timothy-Page@users.noreply.github.com>
This commit is contained in:
Timothy-Page 2024-11-24 07:33:00 +11:00 committed by GitHub
parent c666323a20
commit 83d989c73c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,6 +88,7 @@ sudo ufw allow 80 comment "allow HTTP" # will be used by Nginx
sudo ufw allow 443 comment "allow HTTPS" # will be used by Nginx sudo ufw allow 443 comment "allow HTTPS" # will be used by Nginx
sudo ufw allow proto udp to any port 443 comment "allow QUIC" # If your Nginx support QUIC sudo ufw allow proto udp to any port 443 comment "allow QUIC" # If your Nginx support QUIC
sudo ufw allow proto udp to any port 51822 comment "WireGuard listen port" sudo ufw allow proto udp to any port 51822 comment "WireGuard listen port"
sudo ufw allow proto udp to any port 51820 comment "WireGuard listen port"
``` ```
> _Note that I also add **OpenSSH** to allow list to avoid losing connection to > _Note that I also add **OpenSSH** to allow list to avoid losing connection to