diff options
Diffstat (limited to 'interface-definitions')
4 files changed, 64 insertions, 14 deletions
| diff --git a/interface-definitions/include/interface/dhcpv6-options.xml.i b/interface-definitions/include/interface/dhcpv6-options.xml.i index 609af1a2b..5ca1d525f 100644 --- a/interface-definitions/include/interface/dhcpv6-options.xml.i +++ b/interface-definitions/include/interface/dhcpv6-options.xml.i @@ -95,6 +95,12 @@          <valueless/>        </properties>      </leafNode> +    <leafNode name="no-release"> +      <properties> +        <help>Do not send a release message on client exit</help> +        <valueless/> +      </properties> +    </leafNode>    </children>  </node>  <!-- include end --> diff --git a/interface-definitions/interfaces-openvpn.xml.in b/interface-definitions/interfaces-openvpn.xml.in index ca6d80f8b..127a8179b 100644 --- a/interface-definitions/interfaces-openvpn.xml.in +++ b/interface-definitions/interfaces-openvpn.xml.in @@ -285,6 +285,19 @@                </constraint>              </properties>            </leafNode> +          <node name="offload"> +            <properties> +              <help>Configurable offload options</help> +            </properties> +            <children> +              <leafNode name="dco"> +                <properties> +                  <help>Enable data channel offload on this interface</help> +                  <valueless/> +                </properties> +              </leafNode> +            </children> +          </node>            <leafNode name="openvpn-option">              <properties>                <help>Additional OpenVPN options. You must use the syntax of openvpn.conf in this text-field. Using this without proper knowledge may result in a crashed OpenVPN server. Check system log to look for errors.</help> @@ -793,12 +806,6 @@                <valueless/>              </properties>            </leafNode> -          <leafNode name="enable-dco"> -            <properties> -              <help>Use to enable OpenVPN data channel offload on this TUN interface</help> -              <valueless/> -            </properties> -          </leafNode>            #include <include/interface/redirect.xml.i>            #include <include/interface/vrf.xml.i>          </children> diff --git a/interface-definitions/service-ids-ddos-protection.xml.in b/interface-definitions/service-ids-ddos-protection.xml.in index bb06189bc..78463136b 100644 --- a/interface-definitions/service-ids-ddos-protection.xml.in +++ b/interface-definitions/service-ids-ddos-protection.xml.in @@ -70,17 +70,34 @@                    <multi/>                  </properties>                </leafNode> -              <node name="mode"> +              <leafNode name="mode">                  <properties> -                  <help>Traffic capture modes</help> +                  <help>Traffic capture mode</help> +                  <completionHelp> +                    <list>mirror sflow</list> +                  </completionHelp> +                  <valueHelp> +                    <format>mirror</format> +                    <description>Listen to mirrored traffic</description> +                  </valueHelp> +                  <valueHelp> +                    <format>sflow</format> +                    <description>Capture sFlow flows</description> +                  </valueHelp> +                  <constraint> +                    <regex>(mirror|sflow)</regex> +                  </constraint> +                </properties> +              </leafNode> +              <node name="sflow"> +                <properties> +                  <help>Sflow settings</help>                  </properties>                  <children> -                  <!-- Future modes "mirror" "netflow" "combine (both)" --> -                  <leafNode name="mirror"> -                    <properties> -                      <help>Listen mirrored traffic mode</help> -                      <valueless/> -                    </properties> +                  #include <include/listen-address-ipv4-single.xml.i> +                  #include <include/port-number.xml.i> +                  <leafNode name="port"> +                    <defaultValue>6343</defaultValue>                    </leafNode>                  </children>                </node> diff --git a/interface-definitions/system-option.xml.in b/interface-definitions/system-option.xml.in index efab50a66..b1b5f7fae 100644 --- a/interface-definitions/system-option.xml.in +++ b/interface-definitions/system-option.xml.in @@ -144,6 +144,26 @@                 <valueless/>               </properties>             </leafNode> +           <leafNode name="time-format"> +            <properties> +              <help>System time-format</help> +              <completionHelp> +                <list>12-hour 24-hour</list> +              </completionHelp> +              <valueHelp> +                <format>12-hour</format> +                <description>12 hour time format</description> +              </valueHelp> +              <valueHelp> +                <format>24-hour</format> +                <description>24 hour time format</description> +              </valueHelp> +              <constraint> +                <regex>(12-hour|24-hour)</regex> +              </constraint> +            </properties> +            <defaultValue>12-hour</defaultValue> +           </leafNode>          </children>        </node>      </children> | 
