net/frr: fix ospf6 router-id changes with frr7 (#2010)

This commit is contained in:
Michael
2020-09-05 10:17:39 +02:00
committed by GitHub
parent 1365468284
commit ca754248bf
3 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
PLUGIN_NAME= frr
PLUGIN_VERSION= 1.15
PLUGIN_VERSION= 1.16
PLUGIN_COMMENT= The FRRouting Protocol Suite
PLUGIN_DEPENDS= frr7 ruby
PLUGIN_MAINTAINER= franz.fabian.94@gmail.com
+4
View File
@@ -11,6 +11,10 @@ switching and routing, Internet access routers, and Internet peering.
Plugin Changelog
================
1.16
* Fix templating for router IDs in OSPF3 daemon
1.15
* Disable eBGP policies introduced with FRR 7.4
@@ -39,6 +39,9 @@ interface {{ physical_interface(interface.interfacename) }}
{% endif %}
!
router ospf6
{% if helpers.exists('OPNsense.quagga.ospf6.routerid') and OPNsense.quagga.ospf6.routerid != '' %}
ospf6 router-id {{ OPNsense.quagga.ospf6.routerid }}
{% endif %}
{% if helpers.exists('OPNsense.quagga.ospf6.redistribute') and OPNsense.quagga.ospf6.redistribute != '' %}
{% for line in OPNsense.quagga.ospf6.redistribute.split(',') %}
redistribute {{ line }}
@@ -50,9 +53,6 @@ router ospf6
{% endif %}
{% endfor %}
{% endif %}
{% if helpers.exists('OPNsense.quagga.ospf6.routerid') and OPNsense.quagga.ospf6.routerid != '' %}
router-id {{ OPNsense.quagga.ospf6.routerid }}
{% endif %}
!
line vty
!