diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2020-12-01 18:29:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 17:29:01 +0100 |
commit | 9612e133a4aac9954bfa8f3c2c0b386e0265ce3d (patch) | |
tree | eeca1f1c200f780c787d4f946eedc7932c33b841 /interface-definitions/include/vpn-ipsec-hash.xml.i | |
parent | 4ed504001e5e03e4a4f6886dc8419085d3ba6d0b (diff) | |
download | vyos-1x-9612e133a4aac9954bfa8f3c2c0b386e0265ce3d.tar.gz vyos-1x-9612e133a4aac9954bfa8f3c2c0b386e0265ce3d.zip |
vpn: ipsec: T3093: add XML for vpn ipsec conf-mode
Diffstat (limited to 'interface-definitions/include/vpn-ipsec-hash.xml.i')
-rw-r--r-- | interface-definitions/include/vpn-ipsec-hash.xml.i | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/interface-definitions/include/vpn-ipsec-hash.xml.i b/interface-definitions/include/vpn-ipsec-hash.xml.i new file mode 100644 index 000000000..ca5976d27 --- /dev/null +++ b/interface-definitions/include/vpn-ipsec-hash.xml.i @@ -0,0 +1,65 @@ +<!-- included start from pn-ipsec-hash.xml.i --> + <leafNode name="hash"> + <properties> + <help>Hash algorithm</help> + <completionHelp> + <list>md5 md5_128 sha1 sha1_160 sha256 sha256_96 sha384 sha512 aesxcbc aescmac aes128gmac aes192gmac aes256gmac</list> + </completionHelp> + <valueHelp> + <format>md5</format> + <description>MD5 HMAC</description> + </valueHelp> + <valueHelp> + <format>md5_128</format> + <description>MD5_128 HMAC</description> + </valueHelp> + <valueHelp> + <format>sha1</format> + <description>SHA1 HMAC (default)</description> + </valueHelp> + <valueHelp> + <format>sha1_160</format> + <description>SHA1_160 HMAC</description> + </valueHelp> + <valueHelp> + <format>sha256</format> + <description>SHA2_256_128 HMAC</description> + </valueHelp> + <valueHelp> + <format>sha256_96</format> + <description>SHA2_256_96 HMAC</description> + </valueHelp> + <valueHelp> + <format>sha384</format> + <description>SHA2_384_192 HMAC</description> + </valueHelp> + <valueHelp> + <format>sha512</format> + <description>SHA2_512_256 HMAC</description> + </valueHelp> + <valueHelp> + <format>aesxcbc</format> + <description>AES XCBC</description> + </valueHelp> + <valueHelp> + <format>aescmac</format> + <description>AES CMAC</description> + </valueHelp> + <valueHelp> + <format>aes128gmac</format> + <description>128-bit AES-GMAC</description> + </valueHelp> + <valueHelp> + <format>aes192gmac</format> + <description>192-bit AES-GMAC</description> + </valueHelp> + <valueHelp> + <format>aes256gmac</format> + <description>256-bit AES-GMAC</description> + </valueHelp> + <constraint> + <regex>^(md5|md5_128|sha1|sha1_160|sha256|sha256_96|sha384|sha512|aesxcbc|aescmac|aes128gmac|aes192gmac|aes256gmac)$</regex> + </constraint> + </properties> + </leafNode> +<!-- included end --> |