diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/vpp/startup.conf.j2 | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/data/templates/vpp/startup.conf.j2 b/data/templates/vpp/startup.conf.j2 index 4c65e3cb4..f801e0f52 100644 --- a/data/templates/vpp/startup.conf.j2 +++ b/data/templates/vpp/startup.conf.j2 @@ -109,16 +109,22 @@ plugins { # Secure # plugin ikev2_plugin.so { enable } # plugin dns_plugin.so { enable } # Probably required for FQDN peers -{% if ipsec is vyos_defined %} - plugin crypto_ipsecmb_plugin.so { enable } - plugin crypto_native_plugin.so { enable } - plugin crypto_openssl_plugin.so { enable } -{% endif %} # plugin wireguard_plugin.so { enable } # ACL plugin acl_plugin.so { enable } } + +crypto-engines { + default { disable } +{% if ipsec is vyos_defined %} + ipsecmb { enable } + native { enable } + openssl { enable } +{% endif %} +} + + linux-cp { lcp-sync lcp-auto-subint |
