diff options
| -rw-r--r-- | data/templates/frr/fabricd.frr.j2 | 2 | ||||
| -rw-r--r-- | data/templates/frr/isisd.frr.j2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/frr/fabricd.frr.j2 b/data/templates/frr/fabricd.frr.j2 index 3a0646eb8..27110f6ae 100644 --- a/data/templates/frr/fabricd.frr.j2 +++ b/data/templates/frr/fabricd.frr.j2 @@ -39,7 +39,7 @@ exit router openfabric {{ name }} net {{ net }} {% if router_config.domain_password.md5 is vyos_defined %} - domain-password md5 {{ router_config.domain_password.plaintext_password }} + domain-password md5 {{ router_config.domain_password.md5 }} {% elif router_config.domain_password.plaintext_password is vyos_defined %} domain-password clear {{ router_config.domain_password.plaintext_password }} {% endif %} diff --git a/data/templates/frr/isisd.frr.j2 b/data/templates/frr/isisd.frr.j2 index 8128c6711..75b98c091 100644 --- a/data/templates/frr/isisd.frr.j2 +++ b/data/templates/frr/isisd.frr.j2 @@ -107,7 +107,7 @@ advertise-passive-only metric-style {{ metric_style }} {% endif %} {% if domain_password.md5 is vyos_defined %} - domain-password md5 {{ domain_password.plaintext_password }} + domain-password md5 {{ domain_password.md5 }} {% elif domain_password.plaintext_password is vyos_defined %} domain-password clear {{ domain_password.plaintext_password }} {% endif %} |
