We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenVPN server config, and our openvpn-addclient script both have bad TLS config that will not allow modern openvpn clients to connect.
openvpn-addclient
Specific issue: openvpn 2.5+ does not support AES-256-CBC, we should now be using AES-256-GCM
Workaround:
echo -e 'cipher AES-256-GCM\nauth SHA512' >> /etc/openvpn/server.conf sed 's/cipher .*/cipher AES-256-GCM/' /usr/local/bin/openvpn-addclient sed 's/auth .*/auth SHA512/' /usr/local/bin/openvpn-addclient
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
OpenVPN server config, and our
openvpn-addclient
script both have bad TLS config that will not allow modern openvpn clients to connect.Specific issue: openvpn 2.5+ does not support AES-256-CBC, we should now be using AES-256-GCM
Workaround:
The text was updated successfully, but these errors were encountered: