diff --git a/wireguard_vps-to-internal_forwarding/wg0_client.conf b/wireguard_vps-to-internal_forwarding/wg0_client.conf new file mode 100644 index 0000000000000000000000000000000000000000..dc9e5b5d0497bee209a568b80eade8a27153f3cb --- /dev/null +++ b/wireguard_vps-to-internal_forwarding/wg0_client.conf @@ -0,0 +1,21 @@ +# +# Client (the actual self-host local server) +# + +[Interface] +## This Desktop/client's private key ## +PrivateKey = <CLIENT PRIVKEY> +Address = 10.10.123.2/24 + +[Peer] +PublicKey = <SERVER PUBKEY> + +## set ACL ## +AllowedIPs = 10.10.123.0/24 +# setting to 0.0.0.0/0 routes all outbound through the vpn and out the public vps +#AllowedIPs = 0.0.0.0/0 + +Endpoint = <SERVER IP>:12345 + +## Key connection alive ## +PersistentKeepalive = 15