Difference between revisions of "OpenVPN"

From Fixme.ch
Jump to: navigation, search
(Gnome Network manager)
Line 1: Line 1:
 
[[Category:Services]]
 
[[Category:Services]]
 
== Information ==
 
== Information ==
* COMING SOON
+
== Client configuration ==
* FREESTORM NEEDS TO DOCUMENT THIS SHIT HARD!!!!!
+
  
 
+
=== Gnome Network manager ===
 
+
 
+
 
+
 
+
 
+
 
+
= Client configuration =
+
 
+
== Gnome Network manager ==
+
 
<gallery>
 
<gallery>
 
File:Screenshot_from_2013-01-02_00-51-24.png
 
File:Screenshot_from_2013-01-02_00-51-24.png
Line 22: Line 12:
 
</gallery>
 
</gallery>
  
== Openvpn shell config ==
+
=== Command Line ===
foo.cfg
+
* Put the following content in a ''foo.cfg'' configuration file
 +
** /!\ The certificate ca.crt must be in the same directory as foo.cfg, or change path in foo.cfg /!\
 
<pre>
 
<pre>
 
client
 
client
Line 38: Line 29:
 
auth-user-pass
 
auth-user-pass
 
</pre>
 
</pre>
/!\ You need to have the certificate ca.crt in the same directory as foo.cfg, or change path in foo.cfg /!\
+
* To connect:
 
+
 
+
To connect:
+
 
<pre>
 
<pre>
openvpn foo.cfg
+
$ openvpn foo.cfg
 
</pre>
 
</pre>

Revision as of 04:12, 4 January 2013

Information

Client configuration

Gnome Network manager

Command Line

  • Put the following content in a foo.cfg configuration file
    • /!\ The certificate ca.crt must be in the same directory as foo.cfg, or change path in foo.cfg /!\
client
dev tun
proto udp
remote foo.fixme.ch 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
comp-lzo
verb 4
auth-user-pass
  • To connect:
$ openvpn foo.cfg