mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/frr: allow prefix-lists up to 10000 (#2972)
This commit is contained in:
parent
f221c1d3ab
commit
3d21442232
4 changed files with 4 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PLUGIN_NAME= frr
|
||||
PLUGIN_VERSION= 1.27
|
||||
PLUGIN_VERSION= 1.28
|
||||
PLUGIN_COMMENT= The FRRouting Protocol Suite
|
||||
PLUGIN_DEPENDS= frr7
|
||||
PLUGIN_MAINTAINER= franz.fabian.94@gmail.com
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ Plugin Changelog
|
|||
* OSPF6 Interface change networktype and interfacename to dropdown in stead of multi select
|
||||
* Diagnostics / BGP - fix search in grid, should only use a formatter for presentation purposes
|
||||
* Add ospf6 carp demotion event handler
|
||||
* Allow BGP prefix-list number up to 10000 instead of 99
|
||||
|
||||
1.27
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<id>prefixlist.seqnumber</id>
|
||||
<label>Number</label>
|
||||
<type>text</type>
|
||||
<help>The ACL sequence number (10-99)</help>
|
||||
<help>The ACL sequence number (10-10000)</help>
|
||||
</field>
|
||||
<field>
|
||||
<id>prefixlist.action</id>
|
||||
|
|
|
|||
|
|
@ -240,7 +240,7 @@
|
|||
<default></default>
|
||||
<Required>Y</Required>
|
||||
<MinimumValue>10</MinimumValue>
|
||||
<MaximumValue>99</MaximumValue>
|
||||
<MaximumValue>10000</MaximumValue>
|
||||
</seqnumber>
|
||||
<action type="OptionField">
|
||||
<default></default>
|
||||
|
|
|
|||
Loading…
Reference in a new issue