From 7a360c668ebf28cd645c28657f235ef14657f917 Mon Sep 17 00:00:00 2001 From: randomshell <43271778+randomshell@users.noreply.github.com> Date: Sun, 29 Mar 2020 03:39:12 +0000 Subject: [PATCH] Change Wireguard port from OpenVPN default Current port `1194` conflicts with OpenVPN listening port. Wireguard docs use port `51820` so we'll use that. --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index a35efe6..d012de2 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -52,7 +52,7 @@ read -rp "Server's WireGuard IPv4 " -e -i "$SERVER_WG_IPV4" SERVER_WG_IPV4 SERVER_WG_IPV6="fd42:42:42::1" read -rp "Server's WireGuard IPv6 " -e -i "$SERVER_WG_IPV6" SERVER_WG_IPV6 -SERVER_PORT=1194 +SERVER_PORT=51820 read -rp "Server's WireGuard port " -e -i "$SERVER_PORT" SERVER_PORT CLIENT_WG_IPV4="10.66.66.2"