Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:ovpn [2022/08/12 11:14] – [Setup] darron | tools:ovpn [2022/08/28 12:59] (current) – [OpenVPN] darron | ||
---|---|---|---|
Line 4: | Line 4: | ||
authentication. | authentication. | ||
- | Work-in-progress :- Documentation based on working system built with easyrsa from 2014. Current version (2022) is completely different. | + | TBC |
- | TODO: Use this guide instead of trying to work it out: | ||
- | https:// | ||
===Install=== | ===Install=== | ||
Line 21: | Line 19: | ||
</ | </ | ||
- | ===Setup=== | + | ===Certificate Store=== |
==Init== | ==Init== | ||
- | Create the certificate | + | Create the certificate |
< | < | ||
Line 98: | Line 96: | ||
==Create TA Certificate== | ==Create TA Certificate== | ||
+ | |||
+ | Shared secret key. | ||
< | < | ||
openvpn --genkey secret pki/ta.key | openvpn --genkey secret pki/ta.key | ||
</ | </ | ||
+ | |||
+ | Example configuration on server. | ||
+ | |||
+ | < | ||
+ | tls-server | ||
+ | tls-auth ta.key 0 | ||
+ | </ | ||
+ | |||
+ | On the client, the shared secret may be inline in the connection profile. | ||
==Create Client Certificate== | ==Create Client Certificate== | ||
< | < | ||
- | ./easyrsa --vars=./ | + | ./easyrsa --vars=./ |
+ | </ | ||
+ | |||
+ | ==Bundle Client Certificate== | ||
+ | |||
+ | < | ||
+ | openssl pkcs12 -export -inkey vpn.key -in vpn.crt -certfile ca.crt -out vpn.p12 -passout pass: | ||
+ | </ | ||
+ | |||
+ | ==Unbundle Client Certificate== | ||
+ | |||
+ | < | ||
+ | openssl pkcs12 -in vpn.p12 -nocerts -out vpn.key -nodes -passin pass: | ||
+ | openssl pkcs12 -in vpn.p12 -nokeys -clcerts -out vpn.crt -passin pass: | ||
+ | openssl pkcs12 -in vpn.p12 -nokeys -cacerts -out ca.crt -passin pass: | ||
</ | </ | ||