]> git.ipfire.org Git - thirdparty/wireguard-tools.git/commitdiff
global: wireguard.io --> wireguard.com
authorJason A. Donenfeld <Jason@zx2c4.com>
Sun, 16 Jul 2017 14:12:20 +0000 (16:12 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Thu, 20 Jul 2017 01:37:39 +0000 (03:37 +0200)
Due to concerns with the .io TLD, we are switching to using
wireguard.com instead.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
README.md
contrib/external-tests/go/main.go
contrib/external-tests/haskell/src/Main.hs
contrib/external-tests/rust/src/main.rs
contrib/nat-hole-punching/nat-punch-client.c
contrib/ncat-client-server/README
contrib/ncat-client-server/client.sh
src/wg-quick.8
src/wg-quick@.service
src/wg.8

index 0f6e1c5c94dccabf14b8ffe3f8ec7722b6c194c0..08f8827673343217ee47d7196836718365615e5f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 
 WireGuard is a novel VPN that runs inside the Linux Kernel and utilizes **state-of-the-art cryptography**. It aims to be faster, simpler, leaner, and more useful than IPSec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. It runs over UDP.
 
-**More information may be found at [WireGuard.io](https://www.wireguard.io/).**
+**More information may be found at [WireGuard.com](https://www.wireguard.com/).**
 
 ## License
 
index e3627f33fb36f8dd3b88a14c78d159194a51890c..9b60636e14744daee96337b269f4675f66c3b185 100644 (file)
@@ -51,7 +51,7 @@ func main() {
                StaticKeypair:         noise.DHKey{Private: ourPrivate, Public: ourPublic},
                PeerStatic:            theirPublic,
        })
-       conn, err := net.Dial("udp", "demo.wireguard.io:12913")
+       conn, err := net.Dial("udp", "demo.wireguard.com:12913")
        if err != nil {
                log.Fatalf("error dialing udp socket: %s", err)
        }
index b0b7503b018cc1d37118cda4ca409d3397b8c386..7863829f220840c947abf079816895401698e62b 100644 (file)
@@ -57,7 +57,7 @@ unsafeMessage write mpsk msg ns = case operation msg ns of
 
 main :: IO ()
 main = do
-  let ip           = "demo.wireguard.io"
+  let ip           = "demo.wireguard.com"
       port         = "12913"
       myKeyB64     = "WAmgVYXkbT2bCtdcDwolI88/iVi/aV3/PHcUBTQSYmo=" -- private key
       serverKeyB64 = "qRCwZSKInrMAq5sepfCdaCsRJaoLe5jhtzfiw7CjbwM=" -- public key
index 9fb0f5a0e97072475ffe22a2ed7dbc90a0544afb..fdd220ecdcc5a0591b815e1dd87d668ca5f801d3 100644 (file)
@@ -17,7 +17,7 @@ use pnet::packet::icmp::{MutableIcmpPacket, IcmpTypes, echo_reply, echo_request,
 use std::net::*;
 use std::str::FromStr;
 
-static TEST_SERVER: &'static str = "demo.wireguard.io:12913";
+static TEST_SERVER: &'static str = "demo.wireguard.com:12913";
 
 fn memcpy(out: &mut [u8], data: &[u8]) {
        out[..data.len()].copy_from_slice(data);
index 65f32494539358f88d851280e1294c0a789d2da4..aa00d35055a1bc4dc21e9263d1dece6f0b4bcac5 100644 (file)
@@ -140,7 +140,7 @@ int main(int argc, char *argv[])
        const char *server = argv[1], *interface = argv[2];
 
        if (argc < 3) {
-               fprintf(stderr, "Usage: %s SERVER WIREGUARD_INTERFACE\nExample:\n    %s demo.wireguard.io wg0\n", argv[0], argv[0]);
+               fprintf(stderr, "Usage: %s SERVER WIREGUARD_INTERFACE\nExample:\n    %s demo.wireguard.com wg0\n", argv[0], argv[0]);
                return EINVAL;
        }
 
index f584829d1fa068d23c7dd4018f86dd04884b95de..0c0667a525ed6591de51822d383f92760439da9b 100644 (file)
@@ -11,6 +11,6 @@ That all said, this is a pretty cool example of just how
 darn easy WireGuard can be.
 
 Disclaimer:
-  The `demo.wireguard.io` server in client.sh is for testing
+  The `demo.wireguard.com` server in client.sh is for testing
   purposes only. You may not use this server for abusive or
   illegal purposes.
index b49a05e25e94721254156110a44a42d946bfb77b..1d30f49d715e1e548709f530dbb801216f297716 100755 (executable)
@@ -6,13 +6,13 @@ set -e
 [[ $UID == 0 ]] || { echo "You must be root to run this."; exit 1; }
 umask 077
 trap 'rm -f /tmp/wg_private_key' EXIT INT TERM
-exec 3<>/dev/tcp/demo.wireguard.io/42912
+exec 3<>/dev/tcp/demo.wireguard.com/42912
 wg genkey | tee /tmp/wg_private_key | wg pubkey >&3
 IFS=: read -r status server_pubkey server_port internal_ip <&3
 [[ $status == OK ]]
 ip link del dev wg0 2>/dev/null || true
 ip link add dev wg0 type wireguard
-wg set wg0 private-key /tmp/wg_private_key peer "$server_pubkey" allowed-ips 0.0.0.0/0 endpoint "demo.wireguard.io:$server_port" persistent-keepalive 25
+wg set wg0 private-key /tmp/wg_private_key peer "$server_pubkey" allowed-ips 0.0.0.0/0 endpoint "demo.wireguard.com:$server_port" persistent-keepalive 25
 ip address add "$internal_ip"/24 dev wg0
 ip link set up dev wg0
 if [ "$1" == "default-route" ]; then
index ceee0269357a4cdc2f3cc34eaeb2d17832d37cd2..04653a8a8aa7b63f6041f631e70a1d81e403b906 100644 (file)
@@ -114,7 +114,7 @@ traffic:
 .br
     AllowedIPs = 0.0.0.0/0 
 .br
-    Endpoint = demo.wireguard.io:51820 
+    Endpoint = demo.wireguard.com:51820 
 .br
 
 Notice that the `PostUp` and `PostDown` commands are used here to configure DNS using
@@ -193,6 +193,6 @@ was written by
 Jason A. Donenfeld
 .ME .
 For updates and more information, a project page is available on the
-.UR https://\:www.wireguard.io/
+.UR https://\:www.wireguard.com/
 World Wide Web
 .UE .
index f5f4e8f404a5730353a52d7e1050d2add0cbac80..ce6d70a329a32efe55c8495e14a269b0be3bc863 100644 (file)
@@ -4,8 +4,8 @@ After=network-online.target
 Wants=network-online.target
 Documentation=man:wg-quick(8)
 Documentation=man:wg(8)
-Documentation=https://www.wireguard.io/
-Documentation=https://www.wireguard.io/quickstart/
+Documentation=https://www.wireguard.com/
+Documentation=https://www.wireguard.com/quickstart/
 Documentation=https://git.zx2c4.com/WireGuard/about/src/tools/wg-quick.8
 Documentation=https://git.zx2c4.com/WireGuard/about/src/tools/wg.8
 
index 1517432701b046885bb3e55979cddb51ca3ca413..612fb4e0a0553cf52ba21083a6bb7cbb3db3d08f 100644 (file)
--- a/src/wg.8
+++ b/src/wg.8
@@ -200,7 +200,7 @@ ignored.
 .br
     PublicKey = gN65BkIKy1eCE9pP1wdc8ROUtkHLF2PfAqYdyYBz6EA=
 .br
-    Endpoint = test.wireguard.io:18981
+    Endpoint = test.wireguard.com:18981
 .br
     AllowedIPs = 10.10.10.230/32
 
@@ -225,6 +225,6 @@ was written by
 Jason A. Donenfeld
 .ME .
 For updates and more information, a project page is available on the
-.UR https://\:www.wireguard.io/
+.UR https://\:www.wireguard.com/
 World Wide Web
 .UE .