From c82855dd5152714da67e60e6658109b2ff1def66 Mon Sep 17 00:00:00 2001 From: MStolen Date: Mon, 7 Feb 2022 21:18:29 -0600 Subject: [PATCH] Fix Inconsistency of IPv6 Addresses Signed-off-by: Max Steele --- docs/guides/vpn/wireguard/client.md | 6 +++--- docs/guides/vpn/wireguard/internal.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/vpn/wireguard/client.md b/docs/guides/vpn/wireguard/client.md index ac040e8..93ee6dc 100644 --- a/docs/guides/vpn/wireguard/client.md +++ b/docs/guides/vpn/wireguard/client.md @@ -112,7 +112,7 @@ After a restart, the server file should look like: ```plain [Interface] -Address = 10.100.0.1/24, fd08::1/128 +Address = 10.100.0.1/24, fd08:4711::1/128 ListenPort = 47111 PrivateKey = XYZ123456ABC= # PrivateKey will be different @@ -140,7 +140,7 @@ interface: wg0 peer: F+80gbmHVlOrU+es13S18oMEX2g= ⬅ Your peer's public key will be different preshared key: (hidden) - allowed ips: 10.100.0.2/32, fd08::2/128 + allowed ips: 10.100.0.2/32, fd08:4711::2/128 ``` ## Create client configuration @@ -163,7 +163,7 @@ Next, add your server as peer for this client: ```plain [Peer] -AllowedIPs = 10.100.0.1/32, fd08::1/128 +AllowedIPs = 10.100.0.1/32, fd08:4711::1/128 Endpoint = [your public IP or domain]:47111 PersistentKeepalive = 25 ``` diff --git a/docs/guides/vpn/wireguard/internal.md b/docs/guides/vpn/wireguard/internal.md index 77b3c1b..d87f969 100644 --- a/docs/guides/vpn/wireguard/internal.md +++ b/docs/guides/vpn/wireguard/internal.md @@ -100,7 +100,7 @@ It is possible to add this only for a few clients, leaving the others isolated t DNS = 10.100.0.1 [Peer] - AllowedIPs = 10.100.0.0/24, fd08::/64, 192.168.2.0/24 + AllowedIPs = 10.100.0.0/24, fd08:4711::/64, 192.168.2.0/24 Endpoint = [your server's public IP or domain]:47111 PublicKey = [public key of the server] PresharedKey = [pre-shared key of this client]