commit 7ba6762b21c04168bb10ea56ffd22142590b3690
parent f242bee88e88a8b1d72f12e32a0f500b771e4816
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 4 Oct 2023 16:08:30 +0200
Clear up tables
Diffstat:
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix
@@ -445,7 +445,7 @@
router id 10.100.0.1;
debug protocols all;
ipv4 table backbone;
- ipv6 table backbone;
+ ipv6 table backbone6;
function is_valid_network() {
return net ~ [
@@ -464,7 +464,7 @@
scan time 20;
ipv6 {
- table backbone;
+ table backbone6;
import filter { if is_valid_network_v6() then accept; else reject; };
export filter { if is_valid_network_v6() then accept; else reject; };
};
@@ -494,7 +494,7 @@
protocol ospf v3 v6 {
ipv6 {
- table backbone;
+ table backbone6;
import all;
export all;
};
diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix
@@ -339,7 +339,7 @@
router id 10.100.0.3;
debug protocols all;
ipv4 table backbone;
- ipv6 table backbone;
+ ipv6 table backbone6;
function is_valid_network() {
return net ~ [
@@ -358,7 +358,7 @@
scan time 20;
ipv6 {
- table backbone;
+ table backbone6;
import filter { if is_valid_network_v6() then accept; else reject; };
export filter { if is_valid_network_v6() then accept; else reject; };
};
@@ -388,7 +388,7 @@
protocol ospf v3 v6 {
ipv6 {
- table backbone;
+ table backbone6;
import all;
export all;
};