diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-09 19:24:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 19:24:55 +0200 |
commit | 73ec6fd55d1881e9ca0439a993e9bda8e06d1448 (patch) | |
tree | 257f198d0ece25c420e0841cc5a4cd3135b0d85d /interface-definitions/include/protocol-tcp-udp.xml.i | |
parent | 3543aecf8463d5d6328ac669c12c482ed4e1ccba (diff) | |
parent | 46d2bcdb0b500b4d1b9d973ab5b9ca3c6cf44e51 (diff) | |
download | vyos-1x-73ec6fd55d1881e9ca0439a993e9bda8e06d1448.tar.gz vyos-1x-73ec6fd55d1881e9ca0439a993e9bda8e06d1448.zip |
Merge pull request #1985 from c-po/t2778-syslog
syslog: T2778: T2769: refactoring and VRF support
Diffstat (limited to 'interface-definitions/include/protocol-tcp-udp.xml.i')
-rw-r--r-- | interface-definitions/include/protocol-tcp-udp.xml.i | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/interface-definitions/include/protocol-tcp-udp.xml.i b/interface-definitions/include/protocol-tcp-udp.xml.i new file mode 100644 index 000000000..d7e6752ad --- /dev/null +++ b/interface-definitions/include/protocol-tcp-udp.xml.i @@ -0,0 +1,22 @@ +<!-- include start from snmp/protocol.xml.i -->
+<leafNode name="protocol">
+ <properties>
+ <help>Protocol to be used (TCP/UDP)</help>
+ <completionHelp>
+ <list>udp tcp</list>
+ </completionHelp>
+ <valueHelp>
+ <format>udp</format>
+ <description>Listen protocol UDP</description>
+ </valueHelp>
+ <valueHelp>
+ <format>tcp</format>
+ <description>Listen protocol TCP</description>
+ </valueHelp>
+ <constraint>
+ <regex>(udp|tcp)</regex>
+ </constraint>
+ </properties>
+ <defaultValue>udp</defaultValue>
+</leafNode>
+<!-- include end -->
|