From 12af7ce0ad9a8133911c6a25c2c3d257ba708950 Mon Sep 17 00:00:00 2001 From: Egor Savkin Date: Mon, 23 Sep 2024 13:36:17 +0800 Subject: [PATCH] Add virtual ips for the gre tunnel Signed-off-by: Egor Savkin --- nixbld-etc-nixos/configuration.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixbld-etc-nixos/configuration.nix b/nixbld-etc-nixos/configuration.nix index bceaee8..99806a3 100644 --- a/nixbld-etc-nixos/configuration.nix +++ b/nixbld-etc-nixos/configuration.nix @@ -237,15 +237,15 @@ in interfaces.intl0 = { ipv4.addresses = [ { - address = "5.78.16.0"; - prefixLength = 32; + address = "10.47.3.2"; + prefixLength = 30; } ]; ipv4.routes = [ { address = "0.0.0.0"; prefixLength = 0; - via = "5.78.16.0"; + via = "10.47.3.0"; options.table = "3"; } ]; @@ -347,7 +347,7 @@ in serviceConfig = { Type = "oneshot"; RemainAfterExit = true; - ExecStart = "${pkgs.iproute2}/bin/ip rule add from 5.78.16.0/32 table 3"; + ExecStart = "${pkgs.iproute2}/bin/ip rule add from 10.47.3.0/30 table 3"; ExecStop = "${pkgs.iproute2}/bin/ip rule del table 3"; }; };