summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheeze-It <16260577+Cheeze-It@users.noreply.github.com>2022-11-26 10:28:57 -0700
committerGitHub <noreply@github.com>2022-11-26 10:28:57 -0700
commitf96731947f2f53a65171aace0bfafe497f523d59 (patch)
treef586a59c167b7ce9e58d3331d8f32f463c379e39
parenta1d5124fa73a7ec6850326e8d306fa4a05f2bdf1 (diff)
downloadvyos-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.
-rw-r--r--data/templates/frr/ospfd.frr.j26
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 %}