diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-19 08:07:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 08:07:49 +0100 |
commit | 08949c6e85c6fe02bd702894748b41d600ee7d01 (patch) | |
tree | 74bd5be05b2db07693ea30e12687e91cbab93690 /interface-definitions | |
parent | 56074c22eb7420bdaa12b41e42b61ef1d9583cd3 (diff) | |
parent | 7a663a75dc8b2f9842b72a05e17240edb4008849 (diff) | |
download | vyos-1x-08949c6e85c6fe02bd702894748b41d600ee7d01.tar.gz vyos-1x-08949c6e85c6fe02bd702894748b41d600ee7d01.zip |
Merge pull request #1765 from aapostoliuk/T4925-sagitta
ipsec: T4925: Added PRF into IKE group
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/vpn-ipsec.xml.in | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/interface-definitions/vpn-ipsec.xml.in b/interface-definitions/vpn-ipsec.xml.in index fd74a51d7..fa12d999c 100644 --- a/interface-definitions/vpn-ipsec.xml.in +++ b/interface-definitions/vpn-ipsec.xml.in @@ -465,6 +465,45 @@ </properties> <defaultValue>2</defaultValue> </leafNode> + <leafNode name="prf"> + <properties> + <help>Pseudo-Random Functions</help> + <completionHelp> + <list>prfmd5 prfsha1 prfaesxcbc prfaescmac prfsha256 prfsha384 prfsha512</list> + </completionHelp> + <valueHelp> + <format>prfmd5</format> + <description>MD5 PRF</description> + </valueHelp> + <valueHelp> + <format>prfsha1</format> + <description>SHA1 PRF</description> + </valueHelp> + <valueHelp> + <format>prfaesxcbc</format> + <description>AES XCBC PRF</description> + </valueHelp> + <valueHelp> + <format>prfaescmac</format> + <description>AES CMAC PRF</description> + </valueHelp> + <valueHelp> + <format>prfsha256</format> + <description>SHA2_256 PRF</description> + </valueHelp> + <valueHelp> + <format>prfsha384</format> + <description>SHA2_384 PRF</description> + </valueHelp> + <valueHelp> + <format>prfsha512</format> + <description>SHA2_512 PRF</description> + </valueHelp> + <constraint> + <regex>(prfmd5|prfsha1|prfaesxcbc|prfaescmac|prfsha256|prfsha384|prfsha512)</regex> + </constraint> + </properties> + </leafNode> #include <include/vpn-ipsec-encryption.xml.i> #include <include/vpn-ipsec-hash.xml.i> </children> |