Created
October 27, 2021 11:00
-
-
Save velotiotech/af74880db961d632b2f2afcf06c61545 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#These commands are executed on your EC2 (OopenvVpn) | |
cd ~/easy-rsa/easyrsa3 | |
cat <<EOF >/tmp/client.ovpn | |
client | |
dev tun | |
proto udp | |
remote YOUR-ELASTIC-IP-ADDRESS 1194 | |
resolv-retry infinite | |
nobind | |
persist-key | |
persist-tun | |
cipher AES-256-CBC | |
comp-lzo | |
verb 3 | |
key-direction 1 | |
EOF | |
#append ca certificate | |
echo '<ca>' >>/tmp/client.ovpn | |
cat ./pki/ca.crt >>/tmp/client.ovpn | |
echo '</ca>' >>/tmp/client.ovpn | |
#append client certificate | |
echo '<cert>' >>/tmp/client.ovpn | |
sed -n '/BEGIN CERTIFICATE/,/END CERTIFICATE/{p;/END CERTIFICATE/q}' ./pki/issued/client.crt >>/tmp/client.ovpn | |
echo '</cert>' >>/tmp/client.ovpn | |
#append client key | |
echo '<key>' >>/tmp/client.ovpn | |
cat ./pki/private/client.key >>/tmp/client.ovpn | |
echo '</key>' >>/tmp/client.ovpn | |
#append TLS auth key | |
echo '<tls-auth>' >>/tmp/client.ovpn | |
cat /etc/openvpn/myvpn.tlsauth >>/tmp/client.ovpn | |
echo '</tls-auth>' >>/tmp/client.ovpn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment