From e43373a03615d05715fd4422babab597d02ec4ab Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 3 Dec 2023 11:25:40 +0900 Subject: [PATCH] test --- nixos/hosts/osaka-vultr-01/xinetd.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/nixos/hosts/osaka-vultr-01/xinetd.nix b/nixos/hosts/osaka-vultr-01/xinetd.nix index cc5f9332..bd8c1ee5 100644 --- a/nixos/hosts/osaka-vultr-01/xinetd.nix +++ b/nixos/hosts/osaka-vultr-01/xinetd.nix @@ -20,13 +20,8 @@ 5347 # Jitsi 5280 # Jitsi ]; - boot.kernel.sysctl = { "net.ipv4.ip_forward" = true; }; - networking.firewall.extraCommands = '' - iptables -t nat -A PREROUTING -p udp --dport 10000 -j DNAT --to-destination 10.100.0.2:10000 - ''; - networking.firewall.extraStopCommands = '' - iptables -t nat -D PREROUTING -p udp --dport 10000 -j DNAT --to-destination 10.100.0.2:10000 - ''; + networking.firewall.extraCommands = ''${pkgs.iptables}/bin/iptables -t nat -A PREROUTING -p udp --dport 10000 -j DNAT --to-destination 10.100.0.2:10000''; + networking.firewall.extraStopCommands = ''${pkgs.iptables}/bin/iptables -t nat -D PREROUTING -p udp --dport 10000 -j DNAT --to-destination 10.100.0.2:10000''; services.xinetd = { enable = true;