User Tools

Site Tools


edgerouter:openvpn-roadwarrior

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
edgerouter:openvpn-roadwarrior [2017/09/18 15:28] – created brielleedgerouter:openvpn-roadwarrior [2017/09/18 15:30] brielle
Line 20: Line 20:
 set interfaces openvpn vtun0 tls dh-file /config/auth/openvpn/dh.pem set interfaces openvpn vtun0 tls dh-file /config/auth/openvpn/dh.pem
 set interfaces openvpn vtun0 tls key-file /config/auth/openvpn/server.key set interfaces openvpn vtun0 tls key-file /config/auth/openvpn/server.key
 +</code>
 +
 +Example client config file...
 +<code>
 +client
 +tls-client
 +remote remote.hostname.here
 +port xxxx
 +proto udp
 +dev tun
 +pull
 +cipher AES-128-CBC
 +auth SHA256
 +fragment 1400
 +mssfix
 +float
 +<ca>
 +ca certificate file contents here
 +</ca>
 +<cert>
 +pem certificate file contents here
 +</cert>
 +<key>
 +pem key file contents here
 +</key>
 </code> </code>