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:

85472

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-06-01
fastapi - 0.136.3
Ebuild name:

dev-python/fastapi-0.136.3

Description

High performance framework, easy to learn, fast to code, ready for produ

Added to portage

2026-06-01

gentoo-kernel-modprep - 7.0.10_p1
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.10_p1

Description

Minimal subset of gentoo-kernel-bin for building modules

Added to portage

2026-06-01

gentoolkit - 0.7.4
Ebuild name:

app-portage/gentoolkit-0.7.4

Description

Collection of administration scripts for Gentoo

Added to portage

2026-06-01

glances - 4.5.4
Ebuild name:

sys-process/glances-4.5.4

Description

CLI curses based monitoring tool

Added to portage

2026-06-01

gokrazy-rsync - 0.3.3
Ebuild name:

net-misc/gokrazy-rsync-0.3.3

Description

rsync in Go

Added to portage

2026-06-01

less - 702
Ebuild name:

sys-apps/less-702

Description

Excellent text file viewer

Added to portage

2026-06-01

libsearpc - 3.3.0-r5
Ebuild name:

net-libs/libsearpc-3.3.0-r5

Description

Simple C language RPC framework

Added to portage

2026-06-01

linux-sources - 3-r9
Ebuild name:

virtual/linux-sources-3-r9

Description

Virtual for Linux kernel sources

Added to portage

2026-06-01

modus-themes - 5.1.0
Ebuild name:

app-emacs/modus-themes-5.1.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-06-01

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-06-01

portage - 3.0.79-r1
Ebuild name:

sys-apps/portage-3.0.79-r1

Description

The package management and distribution system for Gentoo

Added to portage

2026-06-01

pyaudio - 0.2.14-r1
Ebuild name:

dev-python/pyaudio-0.2.14-r1

Description

Python bindings for PortAudio

Added to portage

2026-06-01

qgis - 4.0.2
Ebuild name:

sci-geosciences/qgis-4.0.2

Description

User friendly Geographic Information System

Added to portage

2026-06-01

seafile - 9.0.18
Ebuild name:

net-misc/seafile-9.0.18

Description

File syncing and sharing software with file encryption and group sharing

Added to portage

2026-06-01

seafile-client - 9.0.18
Ebuild name:

net-misc/seafile-client-9.0.18

Description

Seafile desktop client

Added to portage

2026-06-01

valkey - 0
Ebuild name:

acct-group/valkey-0

Description

Valkey program group

Added to portage

2026-06-01

valkey - 0
Ebuild name:

acct-user/valkey-0

Description

Valkey program user

Added to portage

2026-06-01

valkey - 9.1.0
Ebuild name:

dev-db/valkey-9.1.0

Description

Persistent key-value store, fork of dev-db/redis

Added to portage

2026-06-01

zfs - 2.3.7
Ebuild name:

sys-fs/zfs-2.3.7

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2026-06-01

zfs - 2.4.2
Ebuild name:

sys-fs/zfs-2.4.2

Description

Linux kernel module and userland utilities for ZFS

Added to portage

2026-06-01

zfs-kmod - 2.3.7
Ebuild name:

sys-fs/zfs-kmod-2.3.7

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2026-06-01

2026-05-31
ebuild-mode - 1.83
Ebuild name:

app-xemacs/ebuild-mode-1.83

Description

Emacs modes for editing ebuilds and other Gentoo specific files

Added to portage

2026-05-31

esptool - 5.2.0
Ebuild name:

dev-embedded/esptool-5.2.0

Description

Serial utility for flashing and interacting with Espressif ESP8266 and E

Added to portage

2026-05-31

gcc - 16.1.1_p20260530
Ebuild name:

sys-devel/gcc-16.1.1_p20260530

Description

The GNU Compiler Collection

Added to portage

2026-05-31

getuto - 2.0
Ebuild name:

app-portage/getuto-2.0

Description

Standalone Gentoo gpg trust anchor generation tool for binpkgs

Added to portage

2026-05-31

gnome-shell - 49.7
Ebuild name:

gnome-base/gnome-shell-49.7

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-05-31

gnome-user-docs - 49.7
Ebuild name:

gnome-extra/gnome-user-docs-49.7

Description

GNOME end user documentation

Added to portage

2026-05-31

grass - 8.5.0-r1
Ebuild name:

sci-geosciences/grass-8.5.0-r1

Description

Free GIS with raster and vector functionality, as well as 3D vizuali

Added to portage

2026-05-31

libadwaita - 1.8.6
Ebuild name:

gui-libs/libadwaita-1.8.6

Description

Building blocks for modern GNOME applications

Added to portage

2026-05-31

libcdada - 0.6.4
Ebuild name:

dev-libs/libcdada-0.6.4

Description

Basic data structures in C

Added to portage

2026-05-31

mit-krb5 - 1.22.2
Ebuild name:

app-crypt/mit-krb5-1.22.2

Description

MIT Kerberos V

Added to portage

2026-05-31

mit-krb5 - 1.22.2-r1
Ebuild name:

app-crypt/mit-krb5-1.22.2-r1

Description

MIT Kerberos V

Added to portage

2026-05-31

mit-krb5 - 1.22.2-r2
Ebuild name:

app-crypt/mit-krb5-1.22.2-r2

Description

MIT Kerberos V

Added to portage

2026-05-31

octave-kernel - 1.0.4
Ebuild name:

dev-python/octave-kernel-1.0.4

Description

Jupyter kernel for octave

Added to portage

2026-05-31

pdf-tools - 1.3.0-r1
Ebuild name:

app-emacs/pdf-tools-1.3.0-r1

Description

Emacs Lisp support library for PDF documents

Added to portage

2026-05-31

pycargoebuild - 0.15.2
Ebuild name:

app-portage/pycargoebuild-0.15.2

Description

A generator for Rust/Cargo ebuilds written in Python

Added to portage

2026-05-31

raspberrypi-utils - 0_p20260527
Ebuild name:

dev-embedded/raspberrypi-utils-0_p20260527

Description

Raspberry Pi userspace utilities

Added to portage

2026-05-31

roundcube - 1.6.16
Ebuild name:

mail-client/roundcube-1.6.16

Description

Browser-based multilingual IMAP client with an application-like user i

Added to portage

2026-05-31

serpent - 1.43
Ebuild name:

dev-python/serpent-1.43

Description

A simple serialization library based on ast.literal_eval

Added to portage

2026-05-31

service-identity - 26.1.0
Ebuild name:

dev-python/service-identity-26.1.0

Description

Service identity verification for pyOpenSSL

Added to portage

2026-05-31

shell-maker - 0.89.2-r1
Ebuild name:

app-emacs/shell-maker-0.89.2-r1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-05-31

shell-maker - 0.90.1-r1
Ebuild name:

app-emacs/shell-maker-0.90.1-r1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-05-31

shell-maker - 0.91.2-r1
Ebuild name:

app-emacs/shell-maker-0.91.2-r1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-05-31

starlette - 1.2.1
Ebuild name:

dev-python/starlette-1.2.1

Description

The little ASGI framework that shines

Added to portage

2026-05-31

typer - 0.26.4
Ebuild name:

dev-python/typer-0.26.4

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-05-31

wine-staging - 11.10
Ebuild name:

app-emulation/wine-staging-11.10

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patc

Added to portage

2026-05-31

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