commit 70a3b12c31b145f650a1b4a027868b6620f68054
parent 0d49e3835a5f70ed33c91e9e15bbd0ec015db8ac
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 27 Jan 2024 22:09:24 +0100
defeated
Diffstat:
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix
@@ -473,7 +473,8 @@ in {
};
}
protocol ospf MyOSPF {
- ecmp no;
+ ecmp yes;
+ bfd;
## Boilerplate taken from Bird's example docs https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
ipv4 {
export filter {
@@ -489,7 +490,7 @@ in {
10.0.3.0/24;
};
interface "enp7s0" {
- type ptp; # VPN tunnels should be point-to-point
+ #type ptp; # VPN tunnels should be point-to-point
};
};
}
diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix
@@ -679,7 +679,8 @@ in {
};
}
protocol ospf MyOSPF {
- ecmp no;
+ ecmp yes;
+ bfd;
## Boilerplate taken from Bird's example docs https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
ipv4 {
export filter {
@@ -695,7 +696,7 @@ in {
10.0.3.0/24;
};
interface "enp7s0" {
- type ptp; # VPN tunnels should be point-to-point
+ #type ptp; # VPN tunnels should be point-to-point
};
};
}