Skip to content

Commit

Permalink
net/frr: fix ospf6 router-id changes with frr7 (opnsense#2010)
Browse files Browse the repository at this point in the history
mimugmail authored Sep 5, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 1365468 commit ca75424
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion net/frr/Makefile
Original file line number Diff line number Diff line change
@@ -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= [email protected]
4 changes: 4 additions & 0 deletions net/frr/pkg-descr
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
!

0 comments on commit ca75424

Please sign in to comment.