nixos-module/container/bird: drastically reduce ospf intervals

This commit is contained in:
Astro 2021-11-15 23:23:38 +01:00
parent 2d063de7c6
commit 15f7687d92
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,9 @@ in
if config.site.net ? "${net}" && config.site.net.${net}.ospf.secret != null
then ''
interface "${net}" {
hello 2;
wait 5;
authentication cryptographic;
password "${config.site.net.${net}.ospf.secret}";
};
@ -222,6 +225,9 @@ in
if config.site.net.${net}.ospf.secret != null
then ''
interface "${net}" {
hello 2;
wait 5;
authentication cryptographic;
password "${config.site.net.${net}.ospf.secret}";
};