diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-12-22 21:36:37 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-12-22 21:36:37 +0100 |
commit | e4b56e2988d3c5599702e858bd2b9ea8ed0ec9a1 (patch) | |
tree | 62b993f0df691dbd52a5aa1737da8d6d7bb24e94 /interface-definitions/lldp.xml.in | |
parent | 2f0119a2aa6cf6375657e7ab4b16f5b750b45f68 (diff) | |
download | vyos-1x-e4b56e2988d3c5599702e858bd2b9ea8ed0ec9a1.tar.gz vyos-1x-e4b56e2988d3c5599702e858bd2b9ea8ed0ec9a1.zip |
lldp: T393: support IPv6 management address
Diffstat (limited to 'interface-definitions/lldp.xml.in')
-rw-r--r-- | interface-definitions/lldp.xml.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/interface-definitions/lldp.xml.in b/interface-definitions/lldp.xml.in index 8aaaaf102..b44f4baf6 100644 --- a/interface-definitions/lldp.xml.in +++ b/interface-definitions/lldp.xml.in @@ -283,13 +283,17 @@ </node> <leafNode name="management-address"> <properties> - <help>IPv4 management address</help> + <help>Management IP Address</help> <valueHelp> <format>ipv4</format> - <description>IP address to listen for incoming connections</description> + <description>IPv4 Management Address</description> + </valueHelp> + <valueHelp> + <format>ipv6</format> + <description>IPv6 Management Address</description> </valueHelp> <constraint> - <validator name="ipv4-address"/> + <validator name="ip-address"/> </constraint> </properties> </leafNode> |