diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-02-26 19:05:35 +0100 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-02-26 21:06:14 +0100 |
| commit | d7f409923cc904807f643693e193e37c4d1df8e7 (patch) | |
| tree | fb72accb07456772fb42c94fe8dec10d84968586 /data | |
| parent | 04f18aec27bd958e0ba4953233b7bb830c994194 (diff) | |
| download | vyos-1x-d7f409923cc904807f643693e193e37c4d1df8e7.tar.gz vyos-1x-d7f409923cc904807f643693e193e37c4d1df8e7.zip | |
ospf: 7679: add missing "ip ospf authentication" information in FRR
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/frr/ospfd.frr.j2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/templates/frr/ospfd.frr.j2 b/data/templates/frr/ospfd.frr.j2 index 7277597e7..7027f1aca 100644 --- a/data/templates/frr/ospfd.frr.j2 +++ b/data/templates/frr/ospfd.frr.j2 @@ -3,6 +3,7 @@ {% for iface, iface_config in interface.items() %} interface {{ iface }} {% if iface_config.authentication.plaintext_password is vyos_defined %} + ip ospf authentication ip ospf authentication-key {{ iface_config.authentication.plaintext_password }} {% elif iface_config.authentication.md5 is vyos_defined %} ip ospf authentication message-digest @@ -121,6 +122,7 @@ router ospf {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {% if area_config.virtual_link is vyos_defined %} {% for link, link_config in area_config.virtual_link.items() %} {% if link_config.authentication.plaintext_password is vyos_defined %} + area {{ area_id }} virtual-link {{ link }} authentication area {{ area_id }} virtual-link {{ link }} authentication-key {{ link_config.authentication.plaintext_password }} {% elif link_config.authentication.md5.key_id is vyos_defined %} {% for key, key_config in link_config.authentication.md5.key_id.items() %} |
