1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-05 05:33:30 +03:00

Added prompt when creating a client to ask if said client has to be prompted for user and password when connecting to the VPN.

NOTE: To make the server actually check given credentials through PAM, you have to add the following line to server.conf:

plugin /usr/lib64/openvpn/plugins/openvpn-plugin-auth-pam.so login
This commit is contained in:
PPR 2019-08-29 13:06:45 +02:00
parent 43ef4f920d
commit d732a018db

View file

@ -42,6 +42,16 @@ fi
newclient () {
# Generates the custom client.ovpn
cp /etc/openvpn/server/client-common.txt ~/$1.ovpn
read -p "Do you want the new client to be prompted for user and password? [y/N]: "
REPLY=$(echo $REPLY | tr '[:upper:]' '[:lower:]')
if [ $REPLY = "y" ]
then
echo "auth-user-pass" >> ~/$1.ovpn
echo "The user will be prompted for user and password"
#echo -e "NOTE: To make the server actually check given credentials\nthrough PAM, you have to add the following line to server.conf:"
#echo -e "\nplugin /usr/lib64/openvpn/plugins/openvpn-plugin-auth-pam.so login\n"
fi
echo "<ca>" >> ~/$1.ovpn
cat /etc/openvpn/server/easy-rsa/pki/ca.crt >> ~/$1.ovpn
echo "</ca>" >> ~/$1.ovpn