This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
hannibal:openvpn [2008/06/25 12:16] Olivier Brugman created |
hannibal:openvpn [2011/02/25 23:32] (current) Luc Nieland procps |
||
|---|---|---|---|
| Line 47: | Line 47: | ||
| Activate this option by running: | Activate this option by running: | ||
| - | /etc/init.d/procps.sh restart | + | /etc/init.d/procps restart |
| After you'll have created your certficates you can start the Openvpn server. Netstat should show a listener on UDP port 1194. Also check the file /var/log/daemon.log | After you'll have created your certficates you can start the Openvpn server. Netstat should show a listener on UDP port 1194. Also check the file /var/log/daemon.log | ||
| Line 130: | Line 130: | ||
| ====Mac OS X==== | ====Mac OS X==== | ||
| Download and install Tunnelblick, the OpenVPN GUI for OSX at http://www.tunnelblick.net and follow the installation instructions. | Download and install Tunnelblick, the OpenVPN GUI for OSX at http://www.tunnelblick.net and follow the installation instructions. | ||
| + | |||
| + | Afterwards move your client-certificate, private key and the public CA-certificate to the directory /Users/your_username/Library/openvpn | ||
| + | |||
| + | In the same directory create an 'openvpn.conf' file with content like this: | ||
| + | |||
| + | <code> | ||
| + | client | ||
| + | dev tun | ||
| + | proto udp | ||
| + | remote fqdn_your_openvpn_server 1194 | ||
| + | resolv-retry infinite | ||
| + | nobind | ||
| + | persist-key | ||
| + | persist-tun | ||
| + | ca ca.crt | ||
| + | cert client.crt | ||
| + | key client.key | ||
| + | comp-lzo | ||
| + | verb 3 | ||
| + | auth-user-pass | ||
| + | </code> | ||
| + | |||
| ====MS-Win 2000/XP==== | ====MS-Win 2000/XP==== | ||