You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.7 KiB
33 lines
1.7 KiB
From b56d52fa409c62720791e189e501efb86df0aff4 Mon Sep 17 00:00:00 2001
|
|
From: David Sommerseth <dazo@eurephia.org>
|
|
Date: Tue, 4 Jul 2017 16:06:24 +0200
|
|
Subject: [PATCH] Change the default cipher to AES-256-GCM for server
|
|
configurations
|
|
|
|
This change makes the server use AES-256-GCM instead of BF-CBC as the default
|
|
cipher for the VPN tunnel. To avoid breaking existing running configurations
|
|
defaulting to BF-CBC, the Negotiable Crypto Parameters (NCP) list contains
|
|
the BF-CBC in addition to AES-CBC. This makes it possible to migrate
|
|
existing older client configurations one-by-one to use at least AES-CBC unless
|
|
the client is updated to v2.4 (which defaults to upgrade to AES-GCM automatically)
|
|
---
|
|
distro/systemd/openvpn-server@.service.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/distro/systemd/openvpn-server@.service.in b/distro/systemd/openvpn-server@.service.in
|
|
index 9a8a2c7..0ecda08 100644
|
|
--- a/distro/systemd/openvpn-server@.service.in
|
|
+++ b/distro/systemd/openvpn-server@.service.in
|
|
@@ -10,7 +10,7 @@ Documentation=https://community.openvpn.net/openvpn/wiki/HOWTO
|
|
Type=notify
|
|
PrivateTmp=true
|
|
WorkingDirectory=/etc/openvpn/server
|
|
-ExecStart=@sbindir@/openvpn --status %t/openvpn-server/status-%i.log --status-version 2 --suppress-timestamps --config %i.conf
|
|
+ExecStart=@sbindir@/openvpn --status %t/openvpn-server/status-%i.log --status-version 2 --suppress-timestamps --cipher AES-256-GCM --ncp-ciphers AES-256-GCM:AES-128-GCM:AES-256-CBC:AES-128-CBC:BF-CBC --config %i.conf
|
|
CapabilityBoundingSet=CAP_IPC_LOCK CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW CAP_SETGID CAP_SETUID CAP_SYS_CHROOT CAP_DAC_OVERRIDE
|
|
LimitNPROC=10
|
|
DeviceAllow=/dev/null rw
|
|
--
|
|
2.11.0
|
|
|