From 997f534cd62b4e9c436f71f37652b4fa45dc1a1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 5 Jul 2021 11:08:36 +0200 Subject: [PATCH] add openvpn config --- openvpn.conf | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 openvpn.conf diff --git a/openvpn.conf b/openvpn.conf new file mode 100644 index 0000000..e051a02 --- /dev/null +++ b/openvpn.conf @@ -0,0 +1,29 @@ +port 1194 +proto udp4 +dev tun +sndbuf 0 +rcvbuf 0 +ca /data/ca.crt +cert /data/server.crt +key /data/server.key +dh none +tls-crypt /data/ta.key +topology subnet +server 192.168.36.0 255.255.255.0 +ifconfig-pool-persist ipp.txt +keepalive 10 120 +cipher AES-256-GCM +auth SHA512 +persist-key +persist-tun +verb 3 +tls-version-min 1.2 +ecdh-curve secp384r1 +tls-server +remote-cert-tls client +verify-client-cert require +mlock +client-to-client +ncp-disable +auth-nocache +tls-cipher TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA256:TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA256:TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256:TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256 \ No newline at end of file