Updated the script.

This commit is contained in:
Prajwal Koirala 2019-05-12 20:06:27 -04:00 committed by GitHub
parent 21d1950c00
commit 886e945a0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,13 +88,10 @@ elif [[ "$OS" = 'arch' ]]; then
pacman -S wireguard-tools
fi
# Generate key pair for the server
SERVER_PRIV_KEY=$(wg genkey)
SERVER_PUB_KEY=$(echo "$SERVER_PRIV_KEY" | wg pubkey)
# Generate key pair for the server
CLIENT_PRIV_KEY=$(wg genkey)
CLIENT_PUB_KEY=$(echo "$CLIENT_PRIV_KEY" | wg pubkey)
CLIENT_PRE_KEY=$( wg genpsk )
# Add server interface
echo "[Interface]
@ -107,6 +104,7 @@ PostDown = iptables -t nat -D POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; ip6t
# Add the client as a peer to the server
echo "[Peer]
PublicKey = $CLIENT_PUB_KEY
PresharedKey =$CLIENT_PRE_KEY
AllowedIPs = $CLIENT_WG_IPV4/32,$CLIENT_WG_IPV6/128" >> "/etc/wireguard/$SERVER_WG_NIC.conf"
# Create client file with interface
@ -118,6 +116,7 @@ DNS = $CLIENT_DNS_1,$CLIENT_DNS_2" > "$HOME/$SERVER_WG_NIC-client.conf"
# Add the server as a peer to the client
echo "[Peer]
PublicKey = $SERVER_PUB_KEY
PresharedKey =$CLIENT_PRE_KEY
Endpoint = $SERVER_PUB_IP:1194
AllowedIPs = 0.0.0.0/0,::/0" >> "$HOME/$SERVER_WG_NIC-client.conf"