diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-11-27 01:20:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 01:20:17 +0100 |
commit | e4e81b3d7f9689a4c5ba843d9b0022b624eb36e5 (patch) | |
tree | 4f0bcb337ffa1c45de47389804065e32c0a080b5 /data | |
parent | a1d5124fa73a7ec6850326e8d306fa4a05f2bdf1 (diff) | |
parent | a835da15e0f2e2d8f6168c561b678e65cf130d18 (diff) | |
download | vyos-1x-e4e81b3d7f9689a4c5ba843d9b0022b624eb36e5.tar.gz vyos-1x-e4e81b3d7f9689a4c5ba843d9b0022b624eb36e5.zip |
Merge pull request #1679 from Cheeze-It/current
ospf: T4739: Adding missing OSPF FRR template
Diffstat (limited to 'data')
-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 %} |