diff options
author | Cheeze-It <16260577+Cheeze-It@users.noreply.github.com> | 2022-11-26 10:28:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 10:28:57 -0700 |
commit | f96731947f2f53a65171aace0bfafe497f523d59 (patch) | |
tree | f586a59c167b7ce9e58d3331d8f32f463c379e39 /data/templates/frr/ospfd.frr.j2 | |
parent | a1d5124fa73a7ec6850326e8d306fa4a05f2bdf1 (diff) | |
download | vyos-1x-f96731947f2f53a65171aace0bfafe497f523d59.tar.gz vyos-1x-f96731947f2f53a65171aace0bfafe497f523d59.zip |
ospf: T4739: Adding missing OSPF FRR template
Adding the parameters that were missing to the OSPF FRR template.
Diffstat (limited to 'data/templates/frr/ospfd.frr.j2')
-rw-r--r-- | data/templates/frr/ospfd.frr.j2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/frr/ospfd.frr.j2 b/data/templates/frr/ospfd.frr.j2 index 2a8afefbc..882ec8f97 100644 --- a/data/templates/frr/ospfd.frr.j2 +++ b/data/templates/frr/ospfd.frr.j2 @@ -161,6 +161,12 @@ router ospf {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {% if parameters.abr_type is vyos_defined %} ospf abr-type {{ parameters.abr_type }} {% endif %} +{% if parameters.opaque_lsa is vyos_defined %} + ospf opaque-lsa +{% endif %} +{% if parameters.rfc1583_compatibility is vyos_defined %} + ospf rfc1583compatibility +{% endif %} {% if parameters.router_id is vyos_defined %} ospf router-id {{ parameters.router_id }} {% endif %} |