diff options
author | Viacheslav <v.gletenko@vyos.io> | 2021-10-25 18:07:06 +0000 |
---|---|---|
committer | Viacheslav <v.gletenko@vyos.io> | 2021-10-25 18:34:35 +0000 |
commit | 45f815928976519ffba2ecadf197f725e7640852 (patch) | |
tree | 5563c24a40b1b61303cc2973972ac3a7d56c9e70 /interface-definitions/snmp.xml.in | |
parent | aeff049aea37115a7bbe52cd0da4d987fbccde82 (diff) | |
download | vyos-1x-45f815928976519ffba2ecadf197f725e7640852.tar.gz vyos-1x-45f815928976519ffba2ecadf197f725e7640852.zip |
snmp: T2763: Add protocol TCP for service snmp
Diffstat (limited to 'interface-definitions/snmp.xml.in')
-rw-r--r-- | interface-definitions/snmp.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/interface-definitions/snmp.xml.in b/interface-definitions/snmp.xml.in index b0b7768d2..949536fe7 100644 --- a/interface-definitions/snmp.xml.in +++ b/interface-definitions/snmp.xml.in @@ -149,6 +149,26 @@ <constraintErrorMessage>Oid must be 'route-table'</constraintErrorMessage> </properties> </leafNode> + <leafNode name="protocol"> + <properties> + <help>Listen protocol for SNMP</help> + <completionHelp> + <list>udp tcp</list> + </completionHelp> + <valueHelp> + <format>udp</format> + <description>Listen protocol UDP (default)</description> + </valueHelp> + <valueHelp> + <format>tcp</format> + <description>Listen protocol TCP</description> + </valueHelp> + <constraint> + <regex>^(udp|tcp)$</regex> + </constraint> + </properties> + <defaultValue>udp</defaultValue> + </leafNode> <leafNode name="smux-peer"> <properties> <help>Register a subtree for SMUX-based processing</help> |