diff options
author | zsdc <taras@vyos.io> | 2021-11-27 01:40:21 +0200 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2021-11-27 01:40:21 +0200 |
commit | 76ac6e9885d587921ac6dc54a3bd056c5dc74b4d (patch) | |
tree | 478419b4df4459e2dbec68b58fe79344a66b158c /interface-definitions | |
parent | 1df8ba611f04c46d49f4cf70d6fa22cfef089392 (diff) | |
download | vyos-1x-76ac6e9885d587921ac6dc54a3bd056c5dc74b4d.tar.gz vyos-1x-76ac6e9885d587921ac6dc54a3bd056c5dc74b4d.zip |
FRR: T4020: Added CLI options for FRR daemons
Added first CLI items for controlling FRR daemons parameters that
cannot be changed via vtysh and are available via arguments only. Now
it is possible to enable/disable modules: SNMP (for each daemon),
BMP (for BGP), IRDP (for Zebra).
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/system-frr.xml.in | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/interface-definitions/system-frr.xml.in b/interface-definitions/system-frr.xml.in new file mode 100644 index 000000000..e8b447f58 --- /dev/null +++ b/interface-definitions/system-frr.xml.in @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interfaceDefinition> + <node name="system"> + <children> + <node name="frr" owner="${vyos_conf_scripts_dir}/system_frr.py"> + <properties> + <help>Configure FRR parameters</help> + <!-- Before components that use FRR --> + <priority>150</priority> + </properties> + <children> + <leafNode name="bmp"> + <properties> + <help>>Enable BGP Monitoring Protocol support</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="irdp"> + <properties> + <help>>Enable ICMP Router Discovery Protocol support</help> + <valueless/> + </properties> + </leafNode> + <node name="snmp"> + <properties> + <help>Enable SNMP integration for next daemons</help> + </properties> + <children> + <leafNode name="bgpd"> + <properties> + <help>>BGP</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="ospf6d"> + <properties> + <help>>OSPFv3</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="ospfd"> + <properties> + <help>>OSPFv2</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="ripd"> + <properties> + <help>>RIP</help> + <valueless/> + </properties> + </leafNode> + <leafNode name="zebra"> + <properties> + <help>>Zebra (IP routing manager)</help> + <valueless/> + </properties> + </leafNode> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> + |