diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-09-22 14:33:52 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-22 14:33:52 +0300 |
| commit | f398a03d34ef1c82f2f3d6b41708487f8f17960e (patch) | |
| tree | 942d3ffa541dca501a3f61787e864352fd840e6b /data | |
| parent | 08289271ae1f14b15a354fb097d5d723ce1c3527 (diff) | |
| parent | c0ab9e061edddd49f0db754d909173eaad5fcbb7 (diff) | |
| download | vyos-1x-f398a03d34ef1c82f2f3d6b41708487f8f17960e.tar.gz vyos-1x-f398a03d34ef1c82f2f3d6b41708487f8f17960e.zip | |
Merge pull request #4740 from sever-sever/T7773
T7773: VPP move crypto engines to crypto-engines template section
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 94095c626..87cc36ebf 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 |
