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 77f39ca9d8ddbac67b95a81e98830f20d009639b
parent 5a4b6c80addc2ff55f5d68e0c94354e91df6636d
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 12 Sep 2023 21:12:43 +0200

Fix traffic to the outside

Diffstat:
Mnixos/worker-1/configuration.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -134,7 +134,7 @@ { routeConfig = { Gateway = "172.31.1.1"; GatewayOnLink = true; }; } # prevent some local traffic Hetzner doesn't like - { routeConfig = { Destination = "172.16.0.0/12"; Type = "unreachable"; }; } + #{ routeConfig = { Destination = "172.16.0.0/12"; Type = "unreachable"; }; } { routeConfig = { Destination = "192.168.0.0/16"; Type = "unreachable"; }; } # { routeConfig = { Destination = "10.0.0.0/8"; Type = "unreachable"; }; }