commit 811732ba8bccd22341b68600de06c68b98c05c11
parent cde7c94e856682e5422810e48bb19526bf6a4d55
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 27 Jan 2024 19:23:16 +0100
Meow
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix
@@ -491,6 +491,7 @@ in {
local 10.0.2.1 as 64513; # Use a private AS number
neighbor 10.0.2.2 as 64514; # Our neighbor ...
#direct;
+ next hop self;
multihop 2; # ... which is connected indirectly
ipv4 {
export filter allowed_ips;
@@ -510,7 +511,7 @@ in {
local 10.0.2.1 as 64513; # Use a private AS number
neighbor 10.0.1.2 as 64512; # Our neighbor ...
#direct;
- multihop; # ... which is connected indirectly
+ multihop 2; # ... which is connected indirectly
ipv4 {
export filter allowed_ips;
import filter allowed_ips;
diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix
@@ -591,6 +591,7 @@ in {
local 10.0.2.2 as 64514; # Use a private AS number
neighbor 10.0.2.1 as 64513; # Our neighbor ...
#direct;
+ next hop self;
multihop 2; # ... which is connected indirectly
ipv4 {
export filter allowed_ips;
@@ -610,7 +611,7 @@ in {
local 10.0.2.2 as 64514; # Use a private AS number
neighbor 10.0.1.2 as 64512; # Our neighbor ...
#direct;
- multihop; # ... which is connected indirectly
+ multihop 2; # ... which is connected indirectly
ipv4 {
export filter allowed_ips;
import filter allowed_ips;