nixos-module/container/bird: disable ospfv3 auth again for ZW6_upstream*

upstream2 is still not migrated
This commit is contained in:
Astro 2021-05-01 00:55:41 +02:00
parent d72789c35a
commit 38da586d49
1 changed files with 4 additions and 4 deletions

View File

@ -252,8 +252,8 @@ in
# Enable OSPF only on interfaces with a secret.
lib.optionalString (config.site.net.${net}.ospf.secret != null) ''
interface "${net}" instance ${toString hostConf.ospf.upstreamInstance} {
authentication cryptographic;
password "${config.site.net.${net}.ospf.secret}";
#authentication cryptographic;
#password "${config.site.net.${net}.ospf.secret}";
};
''
) hostConf.interfaces
@ -283,8 +283,8 @@ in
# Enable OSPF only on interfaces with a secret.
lib.optionalString (config.site.net.${net}.ospf.secret != null) ''
interface "${net}" instance ${toString config.site.hosts.${upstream}.ospf.upstreamInstance} {
authentication cryptographic;
password "${config.site.net.${net}.ospf.secret}";
#authentication cryptographic;
#password "${config.site.net.${net}.ospf.secret}";
};
''
) hostConf.interfaces