feat(deertopia): Wireguard+Mullvad
This commit is contained in:
@@ -48,6 +48,7 @@
|
||||
copyparty.enable = true;
|
||||
syncthing.enable = true;
|
||||
cache.enable = true;
|
||||
mullvad.enable = true;
|
||||
|
||||
# A simple default webpage. This should probably live somewhere else.
|
||||
nginx.vhosts."www" = {
|
||||
|
||||
84
modules/nixos/deertopia/mullvad.nix
Normal file
84
modules/nixos/deertopia/mullvad.nix
Normal file
@@ -0,0 +1,84 @@
|
||||
{ config, lib, pkgs, options, ... }:
|
||||
|
||||
# This module provides a container whose traffic is routed through Mullvad VPN.
|
||||
# Other modules may configure `containers.mullvad-vpn.config` to run their
|
||||
# services through the container.
|
||||
|
||||
let cfg = config.sydnix.deertopia.mullvad;
|
||||
in {
|
||||
options.sydnix.deertopia.mullvad = {
|
||||
enable = lib.mkEnableOption "Mullvad VPN";
|
||||
interface = lib.mkOption {
|
||||
description = ''
|
||||
The network interface to use. See the output of `ip addr show`.
|
||||
'';
|
||||
type = lib.types.str;
|
||||
default = "eno1";
|
||||
};
|
||||
peer = lib.mkOption {
|
||||
default = "us-atl-wg-001";
|
||||
type = lib.types.str;
|
||||
description = ''
|
||||
The name of a Wireguard configuration file in
|
||||
modules/nixos/deertopia/mullvad/, without the .conf suffix. Ideally, we
|
||||
would support multiple peers without rebuilding, but...
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
sydnix.sops.secrets.wireguard-mullvad-key = {};
|
||||
|
||||
networking.nat = {
|
||||
enable = true;
|
||||
internalInterfaces = [ "ve-mullvad-vpn" ];
|
||||
externalInterface = cfg.interface;
|
||||
};
|
||||
|
||||
containers.mullvad-vpn = {
|
||||
# Impermanence-esque wiping of undeclared state.
|
||||
ephemeral = true;
|
||||
autoStart = true;
|
||||
privateNetwork = true;
|
||||
enableTun = true;
|
||||
# These IP choices are arbitrary.
|
||||
hostAddress = "192.168.100.10";
|
||||
# Counter-intuitively (IMO), the host reaches the container at *this*
|
||||
# address.
|
||||
localAddress = "192.168.100.11";
|
||||
|
||||
# Bind these directories to their corresponding paths on the host as to
|
||||
# persist them through container reboots.
|
||||
bindMounts = {
|
||||
"/config/wg".hostPath = toString ./mullvad;
|
||||
"/run/secrets".hostPath = "/run/secrets";
|
||||
};
|
||||
|
||||
config = { pkgs, ... }@args: lib.mkMerge [
|
||||
{
|
||||
systemd.services."create-wireguard-config" = {
|
||||
script = ''
|
||||
if [ ! -e /wg.conf ]; then
|
||||
cp "/config/wg/${cfg.peer}.conf" /wg.conf
|
||||
${pkgs.replace-secret}/bin/replace-secret \
|
||||
'{{WG_PRIVATE_KEY}}' \
|
||||
/run/secrets/wireguard-mullvad-key \
|
||||
/wg.conf
|
||||
chmod 777 /wg.conf
|
||||
fi
|
||||
'';
|
||||
# requiredBy = [ "wg-quick0-wg0.service" ];
|
||||
requires = [ "tmp.mount" ];
|
||||
};
|
||||
|
||||
# HACK: Make sure wg starts *after* its config exists.
|
||||
systemd.services."wg-quick-wg0".requires =
|
||||
[ "create-wireguard-config.service" ];
|
||||
|
||||
networking.wg-quick.interfaces.wg0.configFile = "/wg.conf";
|
||||
system.stateVersion = "24.11";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = nvyBkaEXHwyPBAm8spGB0TFzf2W5wPAl8EEuJ0t+bzs=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 45.134.140.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = ECeGYeh8CfPJO3v56ucCDdl+PlKcj2bBszUGkT+hVWQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 45.134.140.143:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-201.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-201.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = BbW2Gm4IZEW8CrEIg71jZC9pztA/J4h1PK9lwq57ewE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 107.150.22.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-202.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-202.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Qnb6TdDA7IkTIISJ40W+6rZA81pb0v4D0jRZRTYNQnQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 104.129.24.98:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-203.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-203.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = nZQvI+2ZzDC2titokjWcojbjvn4bxHrhUzg1UK/K0nc=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 104.129.24.114:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-204.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-204.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = rlZyrKRSLfvjUBpYD2jUkWhdWkB1RnRr+Q4bv9+nvD8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 104.223.91.18:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-301.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-301.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = SUO0TkKNce4tNTHB3F7PrlvkUzAQeLBSefsgbVnbTkM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.116:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-302.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-302.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = OODmjMlAuaUXGeTUzwagEiG42GF3m0ZlHh+3Ssw1Ckg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.117:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-303.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-303.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = IR4ZTWn7TBujt2nMDoB9xYISoVigWYTRyaG8mHLji1o=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.118:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-304.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-304.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 1JswEeh7qEEq0oy2sQBeqg+QjNkTJRsZ/N9/CN92SCs=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.119:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-305.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-305.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = wGxVyRjNKWba7RidWKab0jPpdNKQAgeLFzwx/bz3CWQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.120:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-atl-wg-306.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-atl-wg-306.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Q8oqrXk9nC9+94GLVUXJ7E8xtV10ggdzQIiQgZI3Em4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 67.213.209.121:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-bos-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-bos-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = CsysTnZ0HvyYRjsKMPx60JIgy777JhD0h9WpbHbV83o=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 43.225.189.131:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-bos-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-bos-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = LLkA2XSBvfUeXgLdMKP+OTQeKhtGB03kKskJEwlzAE8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 43.225.189.162:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-bos-wg-101.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-bos-wg-101.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = oxJ2PIqrQOmS0uiyXvnxT64E1uZnjZDWPbP/+APToAE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 149.40.50.98:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-bos-wg-102.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-bos-wg-102.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = wcmmadJObux2/62ES+QbIO21BkU7p2I0s6n4WNZZgW0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 149.40.50.112:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-201.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-201.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = +Xx2mJnoJ+JS11Z6g8mp6aUZV7p6DAN9ZTAzPaHakhM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 87.249.134.1:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-202.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-202.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = rmN4IM0I0gF7V9503/xnQMOLsu9txl8GTqci9dgUO18=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 87.249.134.14:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-203.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-203.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = V0ilKm3bVqt0rmJ80sP0zSVK4m6O3nADi88IQAL5kjw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 87.249.134.27:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-301.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-301.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = g9Dlad9R9OcM9w1yu3gq9pQWARQBc3Muj4KfeRY1p20=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-302.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-302.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = rEVQ7I5Ckvg44uLaSg1l085FcQvFHfM01hMfHxyAQz0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.33:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-303.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-303.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = DfmNHT84TTS6JcJJfZJwT7tZZVgKIKRJU/2AE5sJ6A4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.64:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-304.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-304.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Tr2rkoiqX7bERbeLMDw9CLiTaB0dp9/Fov/Ytz3C+xY=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.95:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-305.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-305.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = jx/3CJiJRozty6hUTs40M/Swhfcch0z3yElmS1VKoVg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.126:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-306.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-306.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = WlEbNkNAx/186YZH/UPE6YWkMyAMxRpMRP+IqWrq+TE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.157:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-307.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-307.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = U9UAYlVm8nXZjWPrF/vbb1P9oqSRmHo+IfK52yDYpGo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.188:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-chi-wg-308.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-chi-wg-308.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = gJsL4BfGcf2QOLGY1Std2Mjg6V2t2w7T2FScANlkJ2I=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 68.235.46.209:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = EAzbWMQXxJGsd8j2brhYerGB3t5cPOXqdIDFspDGSng=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.211.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = OYG1hxzz3kUGpVeGjx9DcCYreMO3S6tZN17iHUK+zDE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.211.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-003.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-003.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = jn/i/ekJOkkRUdMj2I4ViUKd3d/LAdTQ+ICKmBy1tkM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.211.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-301.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-301.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = qWBfuOXxbsSk8Pgi9lqAzpebZtCSKHvwL7ifF5iw3lc=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 96.44.191.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-302.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-302.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 8M6a88xIRG1d7pRD1qTJKKJVAYjkX6/ls8D8M1A2Zxo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 96.44.191.146:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-303.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-303.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 9sg8LrGRk5XzHfMeAhgp9IbbqD1NKepHQ5FpBDZWOn0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 96.44.189.98:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-401.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-401.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.200.156:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-402.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-402.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = sPQEji8BhxuM/Za0Q0/9aWYxyACtQF0qRpzaBLumEzo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.200.143:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-403.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-403.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 4s9JIhxC/D02tosXYYcgrD+pHI+C7oTAFsXzVisKjRs=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.200.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-502.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-502.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 7RegQnJ70PNlB0bpICSlc/W48GCtzszhSelTdlK5QQ0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.47:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-503.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-503.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = si+P5Ef8D21CAkzh9NgrnIhbZDBcFxoYDaN6amSTkWE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.67:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-504.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-504.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = YROBTYZewygT97VTgMHxEwqaUiAjAvsuwTsuh5IBH1Y=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.87:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-505.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-505.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = bf59QZip/y9tvCF6S9pir32LuFtvWH7nayqhzplyGkQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.107:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-506.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-506.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = ry32nhX3WEpktDBR8CnYNbAnm3NOGBUtXmxomWZjKGU=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.4:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-dal-wg-507.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-dal-wg-507.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 7v5alccqwh+9jA+hRqwc1uZIEebXs9g5i/jH29Gr5k0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 206.217.206.16:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-101.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-101.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 74U+9EQrMwVOafgXuSp8eaKG0+p4zjSsDe3J7+ojhx0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.210.1:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-102.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-102.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = T44stCRbQXFCBCcpdDbZPlNHp2eZEi91ooyk0JDC21E=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.210.14:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-103.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-103.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Az+PGHQ0xFElmRBv+PKZuRnEzKPrPtUpRD3vpxb4si4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.210.27:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-201.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-201.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = MsF1hhYtyCsvPt4B8f48biVcVYd692STflhcbKwTGAw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.68.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-202.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-202.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = YP20qT+/cY/sbBhlXo6fWZlfVhRU+emQlZ1am+vUNnw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.68.127:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-203.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-203.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = D8TSWEfmRIm1qMS0RgO8uireFMMZCMi+XxhIJ2jPBEU=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.69.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-204.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-204.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = DZcEpwNSf+6BoDcHknHBVPwAA0ZJjz7DgQ+llATpAzg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.69.127:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-205.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-205.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 0LQQJLKBZD0Wf0s0nwFfyMW0MMEKoxNPZ14ZbxkogiY=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.70.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-206.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-206.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Y4waCBM7GE9iOT+xl9PcZ2mNKGiawEOBv8UkH84CaAo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.70.127:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-207.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-207.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = nUnmeY34CDLjW4Q3TAbJQ168jVXmkY4MVAp28rmpzEc=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.71.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-den-wg-208.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-den-wg-208.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Fo6J7nLUeSnNPenB1NiPoivVod3m4fN4OE5yjafxYXY=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 23.234.71.127:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-det-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-det-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = +USmlxhnLmlNkDnBbu+rXwjUwa383e0ilYEqPkEkNHA=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 185.141.119.131:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-det-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-det-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = cYqP1UqhOYuaj47e4jAbgL55h52L+ALjtML26OtBvFU=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 185.141.119.161:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-hou-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-hou-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = NKscQ4mm24nsYWfpL85Cve+BKIExR0JaysldUtVSlzg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.221.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-hou-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-hou-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = tzSfoiq9ZbCcE5I0Xz9kCrsWksDn0wgvaz9TiHYTmnU=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.221.143:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-hou-wg-003.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-hou-wg-003.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = fNSu30TCgbADxNKACx+5qWY6XGJOga4COmTZZE0k0R4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.221.156:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-hou-wg-004.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-hou-wg-004.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = NkZMYUEcHykPkAFdm3dE8l2U9P2mt58Dw6j6BWhzaCc=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 37.19.221.169:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-101.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-101.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = IDXrg8s0qYFAWcMcXFb6P/EHOESkTyotZCSlerQfyCQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.129.98:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-102.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-102.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Ldwvbs6mOxEbpXLRA3Z/qmEyJo2wVTdQ94+v3UFsbBw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.129.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-103.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-103.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = gabX4D/Yhut0IMl/9jRK+kMoHbkL38qaUm7r/dH5rWg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.129.34:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-201.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-201.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = xWobY7DWTL+vL1yD4NWwbQ3V4e8qz10Yz+EFdkIjq0Y=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 169.150.203.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-202.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-202.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = SDnciTlujuy2APFTkhzfq5X+LDi+lhfU38wI2HBCxxs=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 169.150.203.15:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-203.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-203.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = W6/Yamxmfx3geWTwwtBbJe/J8UdEzOfa6M+cEpNPIwg=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 169.150.203.28:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-402.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-402.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = EKZXvHlSDeqAjfC/m9aQR0oXfQ6Idgffa9L0DH5yaCo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.173.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-403.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-403.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = mBqaWs6pti93U+1feyj6LRzzveNmeklancn3XuKoPWI=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.173.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-404.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-404.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = YGl+lj1tk08U9x9Z73zowUW3rk8i0nPmYkxGzNdE4VM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.173.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-405.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-405.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = Pe86fNGUd+AIeaabsn7Hk4clQf1kJvxOXPykfVGjeho=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.172.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-406.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-406.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = K3KF3TCWbYcHF5XHL2zaifvQGHrPWoCjFYxDaJO71GA=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.174.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-407.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-407.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 1nGkBr+oLwK5lQcVt9vF6rGM5R3ra5bmYTGJfGIh0lk=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.172.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-408.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-408.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 9L5cW9VuUJUS2gH6H7ln2JeCI66fMnnjLiD5UymAtlo=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.172.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-lax-wg-409.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-lax-wg-409.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = V+LTWA5DxEVITAXqHexqBzeZo95b8r+3WR8g1FsbPQ4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.172.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-001.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-001.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = FVEKAMJqaJU2AwWn5Mg9TK9IAfJc4XDUmSzEeC/VXGs=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 45.134.142.219:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-002.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-002.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = H5t7PsMDnUAHrR8D2Jt3Mh6N6w43WmCzrOHShlEU+zw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 45.134.142.206:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-003.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-003.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = N/3F0QvCuiWWzCwaJmnPZO53LZrKn6sr7rItecrQSQY=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 45.134.142.193:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-101.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-101.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 50/sEK7t3on/H2sunx+gzIjJI6E9/Y6gHOHQrvzsij4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.187.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-102.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-102.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = sJw9LzH2sunqRes2FNi8l6+bd8jqFAiYFfUGTbCXlA4=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.187.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-103.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-103.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = TpPDIhObMTeoMVx0MvSstQaIH1EfRYqW2vzGTB+ETVk=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.187.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-301.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-301.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = nCr87vBNEwrERnkcDhWENNVIMaLF+C0p3h9nqwguO2g=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 173.44.63.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-mia-wg-302.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-mia-wg-302.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = voRd3Wi8W4kaEMIJMy7IBkpkAVxQkYF0VubbK1+zgR8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 104.129.41.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-301.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-301.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = IzqkjVCdJYC1AShILfzebchTlKCqVCt/SMEXolaS3Uc=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 143.244.47.65:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-302.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-302.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = gH/fZJwc9iLv9fazk09J/DUWT2X7/LFXijRS15e2n34=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 143.244.47.78:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-303.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-303.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = KRO+RzrFV92Ah+qpHgAMKZH2jtjRlmJ4ayl0gletY3c=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 143.244.47.91:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-401.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-401.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.34:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-402.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-402.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = /o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-403.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-403.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = pFM95uwAFj62uYDkJXcAPYaPmy+nl+dd92ZLV9bWbHQ=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.98:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-404.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-404.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = pCZ9NnIgAEwrDy4H/eGz8NvNcbAg7UGFTGYruyCfVwU=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-405.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-405.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = SaxtRm9bIXJRhhIKuqTb5tMjbRQ+A12Oe6OvjCD5ehk=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-406.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-406.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = EinCXC++sGc1FVJsyxF/7/xzERKeZy48pSPJUIxSjyw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 198.44.136.162:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-501.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-501.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = FMNXnFgDHNTrT9o49U8bb3Z8J90LZzVJPpRzKtJM9W8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.165.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-502.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-502.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = cmUR4g9aIFDa5Xnp4B6Zjyp20jwgTTMgBdhcdvDV0FM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.165.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-503.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-503.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = czE6NJ8CccA5jnJkKoZGDpMXFqSudeVTzxU5scLP/H8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.165.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-504.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-504.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = MVa5yuoYnjXJtSCeBsyvaemuaK4KFN1p78+37Nvm2m0=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.166.130:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-505.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-505.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = jrjogHbVDuPxyloBldvtB51TmebNJo+4rW2JFrN33iM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.166.194:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-506.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-506.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = IjdtI6sz8ZjU5tlK3eW4HAPp+GRvHErDtqxBcr8JvTM=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.165.66:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-601.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-601.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = OKyEPafS1lnUTWqtVeWElkTzcmkvLi9dncBHbSyFrH8=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.185.2:51820
|
||||
12
modules/nixos/deertopia/mullvad/us-nyc-wg-602.conf
Normal file
12
modules/nixos/deertopia/mullvad/us-nyc-wg-602.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
[Interface]
|
||||
# Device: Calm Krill
|
||||
PrivateKey = {{WG_PRIVATE_KEY}}
|
||||
Address = 10.69.157.18/32,fc00:bbbb:bbbb:bb01::6:9d11/128
|
||||
DNS = 10.64.0.1
|
||||
PostUp = iptables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -I OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
PreDown = iptables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL ! -d 192.168.0.0/16 -j REJECT && ip6tables -D OUTPUT ! -o %i -m mark ! --mark $(wg show %i fwmark) -m addrtype ! --dst-type LOCAL -j REJECT
|
||||
|
||||
[Peer]
|
||||
PublicKey = 4Lg7yQlukAMp6EX+2Ap+q4O+QIV/OEZyybtFJmN9umw=
|
||||
AllowedIPs = 0.0.0.0/0,::0/0
|
||||
Endpoint = 146.70.168.130:51820
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user