summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-25 10:07:32 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-25 10:07:32 +0200
commit77882b889c88b3b6d9d181b043ca7cc9cd5a2782 (patch)
tree29249cdad26c77dcef5a96ea83d0f44b04b8311c /python
parentdf22bc2c96d5095eaec978a58bf5d2361d758a86 (diff)
downloadvyos-1x-77882b889c88b3b6d9d181b043ca7cc9cd5a2782.tar.gz
vyos-1x-77882b889c88b3b6d9d181b043ca7cc9cd5a2782.zip
ipsec: T3775: Diffie Hellman Group 21 uses NIST Elliptic Curve "ecp521"
... there was a type setting ecp512 instead of ecp521.
Diffstat (limited to 'python')
-rw-r--r--python/vyos/template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/template.py b/python/vyos/template.py
index 08a5712af..ee6e52e1d 100644
--- a/python/vyos/template.py
+++ b/python/vyos/template.py
@@ -406,7 +406,7 @@ def get_esp_ike_cipher(group_config):
'dh-group18' : 'modp8192',
'dh-group19' : 'ecp256',
'dh-group20' : 'ecp384',
- 'dh-group21' : 'ecp512',
+ 'dh-group21' : 'ecp521',
'dh-group22' : 'modp1024s160',
'dh-group23' : 'modp2048s224',
'dh-group24' : 'modp2048s256',