from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

87964

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->net-misc->openvpn

OpenVPN primer


There are as many advantages to VPN tunnels as there are different VPN scenarios. One easy implementation is the "OpenVPN via tun-device" solution. An example: you'd like to connect your laptop to your LAN at home so that you can use your mail client without reconfiguring it anytime you switch from home to internet and back. Let's say your mail-server is 192.168.1.10 in your LAN (192.168.1.0/24) at home, and you have got a router/firewall providing access to the Internet. You connect from work or school and want to read mail. OpenVPN can create two virtual devices for you when connecting two computers through an encrypted tunnel. Naturally you then have the possibility of forwarding traffic into the networks behind them, and thus would be "virtually connected" to your LAN behind the firewall. To enable this, either your firewall or a server behind it should run OpenVPN (if you choose a server in your LAN, you'll have to forward the destination port to the OpenVPN server).

Here's what you need to do:
Code Listing 1: Enable the tun module in your kernel: Kernel config - tun module
          [*] Networking support    
Networking options --->
[ ] Amateur Radio support --->
< > IrDA (infrared) subsystem support --->
< > Bluetooth subsystem support --->
[*] Network device support
< > Dummy net driver support
< > Bonding driver support
< > EQL (serial line load balancing) support
Universal TUN/TAP device driver support
// This option must be enabled


Make sure this module exists and can be loaded. Next, install OpenVPN and it dependencies.
Code Listing 2: Install OpenVPN
emerge openvpn

Now on both server and client, create a directory for your configuration:

Code Listing 3: Make directory
mkdir /etc/openvpn    
mkdir /etc/openvpn/myhomelan


Inside that directory, create a shared key for your VPN session and copy that key to the client's directory, /etc/openvpn/myhomelan.

Code Listing 4: Generate shared key
cd /etc/openvpn/myhomelan    
openvpn --genkey --secret myhomelan-key.txt


Now for the tricky part, the routing. It is important that the two tun devices on the client and server use IP addresses from the same subnet. The configuration files shown below list the type of device, the two end-points of the tunnel, the compression method and the UDP-port on which the tunnel is established. Finally privileges are dropped to user and group as listed:

Code Listing 5: Server-side configuration file /etc/openvpn/myhomelan/local.conf
dev tun    
ifconfig 172.16.1.1 172.16.1.20 // IP of the local
// tun device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody


The client's configuration needs the tunnel's destination address. This is often a dynamic DNS address, sometimes a fixed IP, depending on your ISP. You also need to route to your home LAN (192.168.1.0 in our example). You can call a shell script from the configuration file that accordingly sets a route.

Code Listing 6: Client-side configuration file /etc/openvpn/myhomelan/local.conf
remote    // or your VPN 
// server's external IP if you have a fixed one
dev tun
ifconfig 172.16.1.20 172.16.1.1 // IP of the local tun
// device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody
up /etc/openvpn/myhomelan/route.sh // sets up the route
//to the network behind the VPN server


The route command would need to set the client's gateway for the network 192.168.1.0 to its peer's address (172.16.1.1 in our setup).

Code Listing 7: /etc/openvpn/myhomelan/route.sh
#!/bin/bash    
route add -net 192.168.1.0 netmask 255.255.255.0 gw 172.16.1.1


That's it. Start OpenVPN on the server and the client, and check the devices with ifconfig and the routes with route -n. Success!

From http://www.gentoo.org/news/en/gwn/20041011-newsletter.xml
rate this article:
current rating: average rating: 1.5 (69 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-08-27
cargo-c - 0.10.25
Ebuild name:

dev-util/cargo-c-0.10.25

Description

Helper program to build and install c-like libraries

Added to portage

2026-08-27

paraview - 6.1.1
Ebuild name:

sci-visualization/paraview-6.1.1

Description

Powerful scientific data visualization application

Added to portage

2026-08-27

spotify - 1.2.96
Ebuild name:

media-sound/spotify-1.2.96

Description

Spotify is a social music platform

Added to portage

2026-08-27

systemd - 261.2
Ebuild name:

sys-apps/systemd-261.2

Description

System and service manager for Linux

Added to portage

2026-08-27

tor - 0.4.9.11-r1
Ebuild name:

net-vpn/tor-0.4.9.11-r1

Description

Anonymizing overlay network for TCP

Added to portage

2026-08-27

2026-08-26
acr38u - 1.7.11-r5
Ebuild name:

app-crypt/acr38u-1.7.11-r5

Description

Non CCID driver for ACR38 AC1038-based Smart Card Reader

Added to portage

2026-08-26

b4 - 0.16.0-r1
Ebuild name:

net-mail/b4-0.16.0-r1

Description

Utility for fetching patchsets from public-inbox

Added to portage

2026-08-26

boto3 - 1.43.80
Ebuild name:

dev-python/boto3-1.43.80

Description

The AWS SDK for Python

Added to portage

2026-08-26

botocore - 1.43.80
Ebuild name:

dev-python/botocore-1.43.80

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-26

cmd2 - 4.2.2
Ebuild name:

dev-python/cmd2-4.2.2

Description

Extra features for standard library's cmd module

Added to portage

2026-08-26

cramjam - 2.12.1
Ebuild name:

dev-python/cramjam-2.12.1

Description

Thin Python bindings to de/compression algorithms in Rust

Added to portage

2026-08-26

cryptography - 50.0.1
Ebuild name:

dev-python/cryptography-50.0.1

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-08-26

firefox - 154.0.1
Ebuild name:

www-client/firefox-154.0.1

Description

Firefox Web Browser

Added to portage

2026-08-26

firefox-bin - 154.0.1
Ebuild name:

www-client/firefox-bin-154.0.1

Description

Firefox Web Browser

Added to portage

2026-08-26

firefox-l10n - 154.0.1
Ebuild name:

www-client/firefox-l10n-154.0.1

Description

Firefox Web Browser's translation files

Added to portage

2026-08-26

freerdp - 3.31.0
Ebuild name:

net-misc/freerdp-3.31.0

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-08-26

gitpython - 3.1.60
Ebuild name:

dev-python/gitpython-3.1.60

Description

Library used to interact with Git repositories

Added to portage

2026-08-26

glibc - 2.43-r4
Ebuild name:

sys-libs/glibc-2.43-r4

Description

GNU libc C library

Added to portage

2026-08-26

glibc - 2.44-r2
Ebuild name:

sys-libs/glibc-2.44-r2

Description

GNU libc C library

Added to portage

2026-08-26

google-api-core - 2.35.0
Ebuild name:

dev-python/google-api-core-2.35.0

Description

Core Library for Google Client Libraries

Added to portage

2026-08-26

google-auth - 2.57.0
Ebuild name:

dev-python/google-auth-2.57.0

Description

Google Authentication Library

Added to portage

2026-08-26

google-auth-httplib2 - 0.4.2
Ebuild name:

dev-python/google-auth-httplib2-0.4.2

Description

httplib2 Transport for Google Auth

Added to portage

2026-08-26

google-auth-oauthlib - 1.4.1
Ebuild name:

dev-python/google-auth-oauthlib-1.4.1

Description

Google Authentication Library

Added to portage

2026-08-26

googleapis-common-protos - 1.75.2
Ebuild name:

dev-python/googleapis-common-protos-1.75.2

Description

Python classes generated from the common protos in the g

Added to portage

2026-08-26

gpxsee - 16.13
Ebuild name:

sci-geosciences/gpxsee-16.13

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea fil

Added to portage

2026-08-26

gssapi - 1.12.0
Ebuild name:

dev-python/gssapi-1.12.0

Description

Low and high level wrappers around the GSSAPI C libraries

Added to portage

2026-08-26

jupyterlab-desktop-bin - 4.6.3.1
Ebuild name:

sci-misc/jupyterlab-desktop-bin-4.6.3.1

Description

JupyterLab desktop application, based on Electron

Added to portage

2026-08-26

libmd - 1.1.0
Ebuild name:

app-crypt/libmd-1.1.0

Description

Message Digest functions from BSD systems

Added to portage

2026-08-26

nbd - 3.27.1
Ebuild name:

sys-block/nbd-3.27.1

Description

Userland client/server for kernel network block device

Added to portage

2026-08-26

nsd - 4.15.1
Ebuild name:

net-dns/nsd-4.15.1

Description

An authoritative only, high performance, open source name server

Added to portage

2026-08-26

openrgb - 1.0_rc3_p1
Ebuild name:

app-misc/openrgb-1.0_rc3_p1

Description

Open source RGB lighting control

Added to portage

2026-08-26

pbr - 7.1.2
Ebuild name:

dev-python/pbr-7.1.2

Description

Inject some useful and sensible default behaviors into setuptools

Added to portage

2026-08-26

pbs-installer - 2026.8.25
Ebuild name:

dev-python/pbs-installer-2026.8.25

Description

Installer for Python Build Standalone

Added to portage

2026-08-26

plotly - 7.0.0
Ebuild name:

dev-python/plotly-7.0.0

Description

Browser-based graphing library for Python

Added to portage

2026-08-26

portalocker - 4.3.0
Ebuild name:

dev-python/portalocker-4.3.0

Description

A library for Python file locking

Added to portage

2026-08-26

proto-plus - 1.28.4
Ebuild name:

dev-python/proto-plus-1.28.4

Description

Beautiful, Pythonic protocol buffers

Added to portage

2026-08-26

pydata-sphinx-theme - 0.21.0
Ebuild name:

dev-python/pydata-sphinx-theme-0.21.0

Description

Bootstrap-based Sphinx theme from the PyData community

Added to portage

2026-08-26

tex4ht - 20240311_p72882-r5
Ebuild name:

dev-tex/tex4ht-20240311_p72882-r5

Description

Converts (La)TeX to (X)HTML, XML and OO.org

Added to portage

2026-08-26

thunderbird-bin - 140.14.1
Ebuild name:

mail-client/thunderbird-bin-140.14.1

Description

Thunderbird Mail Client

Added to portage

2026-08-26

tox - 4.60.1
Ebuild name:

dev-python/tox-4.60.1

Description

virtualenv-based automation of test activities

Added to portage

2026-08-26

urwid - 4.0.13
Ebuild name:

dev-python/urwid-4.0.13

Description

Curses-based user interface library for Python

Added to portage

2026-08-26

uv - 0.12.6
Ebuild name:

dev-python/uv-0.12.6

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-08-26

uv-build - 0.12.6
Ebuild name:

dev-python/uv-build-0.12.6

Description

PEP517 uv build backend

Added to portage

2026-08-26

virtualenv - 21.7.5
Ebuild name:

dev-python/virtualenv-21.7.5

Description

Virtual Python Environment builder

Added to portage

2026-08-26

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 82.5 ms