OpenVPN (deutsch): Difference between revisions
Jump to navigation
Jump to search
(detailed installation routine) |
(detailed installation routine) |
||
Line 50: | Line 50: | ||
===MacOSX=== |
===MacOSX=== |
||
Die Installation erfolgt analog zu Linux (ohne lzo-Bobliothek). Die Developer-Tools müssen installiert sein! (C-Compiler, make, openssl-devel, etc.) |
|||
wget http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz (or get the file via Safari) |
|||
tar xzf lzo-1.08.tar.gz |
|||
cd lzo-1.08 |
|||
./configure |
|||
make |
|||
make install |
|||
wget http://openvpn.sourceforge.net/beta/openvpn-2.0_beta14.tar.gz (or get the file via Safari) |
|||
tar xzf openvpn-2.0_beta14.tar.gz |
|||
cd openvpn-2.0_beta14 |
|||
./configure --with-lzo-headers=/usr/local/include --with-lzo-lib=/usr/local/lib |
|||
make |
|||
make install |
|||
===OpenBSD=== |
===OpenBSD=== |
Revision as of 20:30, 25 October 2004
Einleitung: OpenVPN ist eine leicht zu implementierende und zu wartende VPN-Applikation, die bis auf das notwendige TUN- bzw. TAP-Device komplett im Userspace arbeitet. Dieses Dokument beschreibt die Installation sowohl des Servers (VPN-Gateway) als auch der Clients unter den verbreiteten Betriebssystemen Windows, Linux, MacOSX und OpenBSD.
Funktionsweise
Public-Key-Authentifizierung
Zertifizierungsstelle (CA) und Public-Key-Infrastruktur (PKI)
Certificate Revocation List (CRL) - Schwarze Liste mit ungültigen Zertifikaten
Konfiguration
Szenarien
Außendienst-Mitarbeiter (Netz-zu-Host)
Transparente Fillialanbindung (Netz-zu-Netz)
Server
Windows
Linux
yast -i lzo openssl openvpn
OpenVPN 2.0 aus den Quellen installieren (besser, notwendig für PKI-Auth)
- lzo-Bibliothek (für die Kompression) http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz
- OpenSSL-Bibliothek
- http://openvpn.sourceforge.net/beta/openvpn-2.0_beta14.tar.gz
SuSE Linux
yast -i openssl-devel yast -i lzo-devel (ab SuSE 9.0)
(vor SuSE 9.0 - keine lzo-Bibliothek) wget http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz tar xzf lzo-1.08.tar.gz cd lzo-1.08 ./configure make make install
wget http://openvpn.sourceforge.net/beta/openvpn-2.0_beta14.tar.gz tar xzf openvpn-2.0_beta14.tar.gz cd openvpn-2.0_beta14 ./configure make make install
MacOSX
Die Installation erfolgt analog zu Linux (ohne lzo-Bobliothek). Die Developer-Tools müssen installiert sein! (C-Compiler, make, openssl-devel, etc.)
wget http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz (or get the file via Safari) tar xzf lzo-1.08.tar.gz cd lzo-1.08 ./configure make make install
wget http://openvpn.sourceforge.net/beta/openvpn-2.0_beta14.tar.gz (or get the file via Safari) tar xzf openvpn-2.0_beta14.tar.gz cd openvpn-2.0_beta14 ./configure --with-lzo-headers=/usr/local/include --with-lzo-lib=/usr/local/lib make make install