From e881c4c327885b20e2eb75f7888bf4cb69dd1167 Mon Sep 17 00:00:00 2001 From: Khosrow Moossavi Date: Sun, 10 Mar 2019 18:06:43 -0400 Subject: [PATCH] Add option to allow 'duplicate-cn' (off by default) --- openvpn-install.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index 45ebe1b..b411da9 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -207,6 +207,19 @@ else echo " 5) Verisign" read -p "DNS [1-5]: " -e -i 1 DNS echo + echo "Do you want to allow concurrent connection from multiple clients with same common name?" + echo " 1) No" + echo " 2) Yes (not recommended)" + read -p "Duplicate CN [1-2]: " -e -i 1 DUPLICATE_CN + case $DUPLICATE_CN in + 1) + DUPLICATE_CN=no + ;; + 2) + DUPLICATE_CN=yes + ;; + esac + echo echo "Finally, tell me your name for the client certificate." echo "Please, use one word only, no special characters." read -p "Client name: " -e -i client CLIENT @@ -299,6 +312,9 @@ ifconfig-pool-persist ipp.txt" > /etc/openvpn/server.conf echo 'push "dhcp-option DNS 64.6.65.6"' >> /etc/openvpn/server.conf ;; esac + if [[ "$DUPLICATE_CN" = "yes" ]]; then + echo "duplicate-cn" >> /etc/openvpn/server.conf + fi echo "keepalive 10 120 cipher AES-256-CBC user nobody