diff --git a/auto_install/install.sh b/auto_install/install.sh index a937659..21657fc 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -1977,9 +1977,9 @@ confWireGuard(){ $SUDO chmod 700 /etc/wireguard if [ "${runUnattended}" = 'true' ]; then - echo "::: The Server Keys and Pre-Shared key will now be generated." + echo "::: The Server Keys will now be generated." else - whiptail --title "Server Information" --msgbox "The Server Keys and Pre-Shared key will now be generated." "${r}" "${c}" + whiptail --title "Server Information" --msgbox "The Server Keys will now be generated." "${r}" "${c}" fi # Remove configs and keys folders to make space for a new server when using 'Repair' or 'Reconfigure' @@ -1993,10 +1993,9 @@ confWireGuard(){ # Generate private key and derive public key from it wg genkey | $SUDO tee /etc/wireguard/keys/server_priv &> /dev/null - wg genpsk | $SUDO tee /etc/wireguard/keys/psk &> /dev/null $SUDO cat /etc/wireguard/keys/server_priv | wg pubkey | $SUDO tee /etc/wireguard/keys/server_pub &> /dev/null - echo "::: Server Keys and Pre-Shared Key have been generated." + echo "::: Server Keys have been generated." echo "[Interface] PrivateKey = $($SUDO cat /etc/wireguard/keys/server_priv) diff --git a/scripts/wireguard/makeCONF.sh b/scripts/wireguard/makeCONF.sh index 745db08..b3d77f2 100755 --- a/scripts/wireguard/makeCONF.sh +++ b/scripts/wireguard/makeCONF.sh @@ -75,6 +75,7 @@ if [ -f "configs/${CLIENT_NAME}.conf" ]; then fi wg genkey | tee "keys/${CLIENT_NAME}_priv" | wg pubkey > "keys/${CLIENT_NAME}_pub" +CLIENT_PRE_SHARED_KEY=$(wg genpsk) echo "::: Client Keys generated" # Find an unused number for the last octet of the client IP @@ -102,7 +103,7 @@ echo >> "configs/${CLIENT_NAME}.conf" echo "[Peer] PublicKey = $(cat keys/server_pub) -PresharedKey = $(cat keys/psk) +PresharedKey = ${CLIENT_PRE_SHARED_KEY} Endpoint = ${pivpnHOST}:${pivpnPORT} AllowedIPs = 0.0.0.0/0, ::0/0" >> "configs/${CLIENT_NAME}.conf" echo "::: Client config generated" @@ -110,7 +111,7 @@ echo "::: Client config generated" echo "# begin ${CLIENT_NAME} [Peer] PublicKey = $(cat "keys/${CLIENT_NAME}_pub") -PresharedKey = $(cat keys/psk) +PresharedKey = ${CLIENT_PRE_SHARED_KEY} AllowedIPs = ${NET_REDUCED}.${COUNT}/32 # end ${CLIENT_NAME}" >> wg0.conf echo "::: Updated server config"