System/Thinknix: Disable wireguard config (run on OPNsense instead)
This commit is contained in:
@ -60,46 +60,46 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.wireguard.interfaces."vps-wg-client" = {
|
# networking.wireguard.interfaces."vps-wg-client" = {
|
||||||
ips = ["10.10.10.2/32"];
|
# ips = ["10.10.10.2/32"];
|
||||||
privateKeyFile = "${config.sops.secrets.wireguard-vps-private-key.path}";
|
# privateKeyFile = "${config.sops.secrets.wireguard-vps-private-key.path}";
|
||||||
|
|
||||||
# Create the depending network namespace
|
# # Create the depending network namespace
|
||||||
# preSetup = ''
|
# # preSetup = ''
|
||||||
# ${pkgs.iproute2}/bin/ip netns add ${name}
|
# # ${pkgs.iproute2}/bin/ip netns add ${name}
|
||||||
# '';
|
# # '';
|
||||||
|
|
||||||
# postSetup = ''
|
# # postSetup = ''
|
||||||
# ${pkgs.iptables}/bin/iptables -A FORWARD -i vps-wg-client -j ACCEPT
|
# # ${pkgs.iptables}/bin/iptables -A FORWARD -i vps-wg-client -j ACCEPT
|
||||||
# ${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -o ens18 -j MASQUERADE
|
# # ${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -o ens18 -j MASQUERADE
|
||||||
# '';
|
# # '';
|
||||||
# postShutdown = ''
|
# # postShutdown = ''
|
||||||
# ${pkgs.iptables}/bin/iptables -D FORWARD -i vps-wg-client -j ACCEPT
|
# # ${pkgs.iptables}/bin/iptables -D FORWARD -i vps-wg-client -j ACCEPT
|
||||||
# ${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -o ens18 -j MASQUERADE
|
# # ${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -o ens18 -j MASQUERADE
|
||||||
# '';
|
# # '';
|
||||||
postSetup = ''
|
# postSetup = ''
|
||||||
${pkgs.iptables} -A FORWARD -i wg0-client -j ACCEPT
|
# ${pkgs.iptables} -A FORWARD -i wg0-client -j ACCEPT
|
||||||
${pkgs.iptables} -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
# ${pkgs.iptables} -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
||||||
'';
|
# '';
|
||||||
postShutdown = ''
|
# postShutdown = ''
|
||||||
${pkgs.iptables} -D FORWARD -i wg0-client -j ACCEPT
|
# ${pkgs.iptables} -D FORWARD -i wg0-client -j ACCEPT
|
||||||
${pkgs.iptables} -t nat -D POSTROUTING -o eth0 -j MASQUERADE
|
# ${pkgs.iptables} -t nat -D POSTROUTING -o eth0 -j MASQUERADE
|
||||||
'';
|
# '';
|
||||||
|
|
||||||
peers = [
|
# peers = [
|
||||||
{
|
# {
|
||||||
name = "chriphost-vps";
|
# name = "chriphost-vps";
|
||||||
publicKey = "w/U8p9fizw0jk8PFaMZXV1N49Ws+q6mUHzNFYtoDTS8=";
|
# publicKey = "w/U8p9fizw0jk8PFaMZXV1N49Ws+q6mUHzNFYtoDTS8=";
|
||||||
endpoint = "212.227.233.241:51820";
|
# endpoint = "212.227.233.241:51820";
|
||||||
allowedIPs = [
|
# allowedIPs = [
|
||||||
"10.10.10.0/24"
|
# "10.10.10.0/24"
|
||||||
];
|
# ];
|
||||||
|
|
||||||
# Keep this connection alive so the server can always reach us
|
# # Keep this connection alive so the server can always reach us
|
||||||
persistentKeepalive = 25;
|
# persistentKeepalive = 25;
|
||||||
}
|
# }
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
|
Reference in New Issue
Block a user