mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
net/frr: fix ospf6 router-id changes with frr7 (#2010)
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
@@ -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
|
||||
!
|
||||
|
||||
Reference in New Issue
Block a user