nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

commit 769200c9d156bd180ecdffd38c355dc3018a2db6
parent 98f4cfea223101b988bc334f97b484d9707f59f7
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun, 28 Jan 2024 02:41:54 +0100

Debug

Diffstat:
Mnixos/worker-1/configuration.nix | 2+-
Mnixos/worker-2/configuration.nix | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -471,7 +471,7 @@ in { ipv4 { # Connect protocol to IPv4 table by channel export filter { if proto = "direct2" then reject; - if net !~ "10.0.3.0/24" then reject; + if net ~ 0.0.0.0/0 then reject; accept; }; import all; diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix @@ -683,7 +683,7 @@ in { ipv4 { # Connect protocol to IPv4 table by channel export filter { if proto = "direct2" then reject; - if net !~ "10.0.3.0/24" then reject; + if net ~ 0.0.0.0/0 then reject; accept; }; import all;