Age | Commit message (Collapse) | Author |
|
Config option `protocols ospfv3 area <number> range <prefix>
not-advertise` is broken and behaves exactly same as `advertise`.
Steps to reproduce:
```
set protocols ospfv3 area 16 range 2000::/4 not-advertise
```
Actual result:
```
$ vtysh -c 'show run'
!
router ospf6
area 16 range 2000::/4
```
Expected result:
```
$ vtysh -c 'show run'
!
router ospf6
area 16 range 2000::/4 not-advertise
```
It seems to me that `templates/protocols/ospfv3/area/node.tag/range/node.def` overwrites `area $AREA range $RANGE` even if
child node `no-advertise` is set. It seems to me the scripts in that
file is used to make child option `advertise` optional. This PR changes
it to only run when children options (advertise, not-advertise) are not
set.
|
|
|
|
|
|
This reverts commit cdceed6f8dffe4bb12f48e193591784f416b2bab.
I've imported a fix from the latest dev version of FRR,
so this limitation is no longer necessary.
|
|
|
|
|
|
support it.
|
|
|
|
Remove unused / old configuration nodes from bgp and ospfv3
Bug #459 http://bugzilla.vyos.net/show_bug.cgi?id=459
|
|
Bug 6111
Help text should not start with Set
|
|
|
|
|
|
|
|
For SELinux policy, changing vyatta-quagga to use standard path values.
This means not having to change policies.
|
|
|
|
|
|
This is what CLI Primer says is supposed to work.
|
|
New CLI appears to require 'update:' rather than 'create:' on
tag nodes in order for them to get applied correctly. Workaround
this by changing all the create: to update: in Quagga config
Bug 4486
|
|
Templates in */node.tag/node.def are meaningless in current CLI.
Remove all the templates that are intermediat help text.
(cherry picked from commit ebd628b2b2a93d78a60c1d0ed41d0ab793c0efdf)
|
|
Node was marked as 'tag:' but was a leaf node.
(cherry picked from commit 31368eec9b7dd25e248140a8732fd4c814de52b9)
|
|
This is what CLI Primer says is supposed to work.
(cherry picked from commit 4cb6efba141b1e54ee78077410dd027a8fcf1a39)
|
|
New CLI appears to require 'update:' rather than 'create:' on
tag nodes in order for them to get applied correctly. Workaround
this by changing all the create: to update: in Quagga config
Bug 4486
(cherry picked from commit 84536c188e359a9f046bc8f1c5a3180b3e03ee8b)
|
|
|
|
Not restricted to just ethernet.
|
|
|