1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00

nixos/servnerr-3: remove BIRD OSPFv3 configuration

Signed-off-by: Matt Layher <mdlayher@gmail.com>
This commit is contained in:
Matt Layher 2021-03-24 14:29:22 -04:00
parent b864947d50
commit e880ce5183
No known key found for this signature in database
GPG key ID: 77BFE531397EDE94

View file

@ -141,42 +141,6 @@ in {
passwordAuthentication = false;
};
# OSPF experiments with BIRD.
# TODO(mdlayher): template as appropriate.
bird2 = {
enable = true;
config = ''
log syslog all;
router id 192.168.110.5;
protocol device {
scan time 10;
}
protocol kernel {
ipv6 { export all; };
}
protocol static {
ipv6 { export all; };
route fdd9:f297:2a58::/48 reject;
}
protocol ospf v3 IPv6 {
ipv6 { export all; };
area 0 {
interface "br0" {
cost 1;
type broadcast;
hello 5; retransmit 2; wait 10; dead 20;
};
};
}
'';
};
zfs.autoScrub.enable = true;
};