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:

85841

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-12
asteval - 1.0.9
Ebuild name:

dev-python/asteval-1.0.9

Description

Evaluator of Python expression using ast module

Added to portage

2026-06-12

awscli - 1.45.28
Ebuild name:

app-admin/awscli-1.45.28

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-12

boto3 - 1.43.28
Ebuild name:

dev-python/boto3-1.43.28

Description

The AWS SDK for Python

Added to portage

2026-06-12

botocore - 1.43.28
Ebuild name:

dev-python/botocore-1.43.28

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-12

chrome-binary-plugins - 149.0.7827.114
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7827.114

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-06-12

chrome-binary-plugins - 150.0.7871.13_beta
Ebuild name:

www-plugins/chrome-binary-plugins-150.0.7871.13_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-12

chrome-binary-plugins - 151.0.7872.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-151.0.7872.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-12

chromedriver-bin - 149.0.7827.114
Ebuild name:

www-apps/chromedriver-bin-149.0.7827.114

Description

WebDriver for Chrome

Added to portage

2026-06-12

cucumber-expressions - 20.0.0
Ebuild name:

dev-python/cucumber-expressions-20.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-06-12

cucumber-tag-expressions - 10.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-10.0.0

Description

Cucumber tag expression parser

Added to portage

2026-06-12

dash - 0.5.13.4-r1
Ebuild name:

app-shells/dash-0.5.13.4-r1

Description

Debian Almquist Shell

Added to portage

2026-06-12

dcc - 2.3.168-r2
Ebuild name:

mail-filter/dcc-2.3.168-r2

Description

Distributed Checksum Clearinghouse

Added to portage

2026-06-12

dcc - 2.3.169
Ebuild name:

mail-filter/dcc-2.3.169

Description

Distributed Checksum Clearinghouse

Added to portage

2026-06-12

deno-bin - 2.8.3
Ebuild name:

dev-lang/deno-bin-2.8.3

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-06-12

django-js-asset - 4.0.1
Ebuild name:

dev-python/django-js-asset-4.0.1

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-06-12

dosbox-staging - 0.82.2-r2
Ebuild name:

games-emulation/dosbox-staging-0.82.2-r2

Description

Modernized DOSBox soft-fork

Added to portage

2026-06-12

google-chrome - 149.0.7827.114
Ebuild name:

www-client/google-chrome-149.0.7827.114

Description

The web browser from Google

Added to portage

2026-06-12

google-chrome-beta - 150.0.7871.13
Ebuild name:

www-client/google-chrome-beta-150.0.7871.13

Description

The web browser from Google

Added to portage

2026-06-12

google-chrome-unstable - 151.0.7872.0
Ebuild name:

www-client/google-chrome-unstable-151.0.7872.0

Description

The web browser from Google

Added to portage

2026-06-12

grpcio - 1.81.1
Ebuild name:

dev-python/grpcio-1.81.1

Description

HTTP/2-based RPC framework

Added to portage

2026-06-12

grpcio-status - 1.81.1
Ebuild name:

dev-python/grpcio-status-1.81.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-06-12

hishel - 1.3.0
Ebuild name:

dev-python/hishel-1.3.0

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2026-06-12

libsecret - 0.21.7-r1
Ebuild name:

app-crypt/libsecret-0.21.7-r1

Description

GObject library for accessing the freedesktop.org Secret Service API

Added to portage

2026-06-12

libu2f-host - 1.1.10-r1
Ebuild name:

app-crypt/libu2f-host-1.1.10-r1

Description

Yubico Universal 2nd Factor (U2F) Host C Library

Added to portage

2026-06-12

maturin - 1.14.0
Ebuild name:

dev-util/maturin-1.14.0

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-06-12

microsoft-edge - 149.0.4022.62
Ebuild name:

www-client/microsoft-edge-149.0.4022.62

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 149.0.4022.52
Ebuild name:

www-client/microsoft-edge-beta-149.0.4022.52

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 149.0.4022.62
Ebuild name:

www-client/microsoft-edge-beta-149.0.4022.62

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-beta - 150.0.4078.5
Ebuild name:

www-client/microsoft-edge-beta-150.0.4078.5

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4064.2
Ebuild name:

www-client/microsoft-edge-dev-150.0.4064.2

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4078.1
Ebuild name:

www-client/microsoft-edge-dev-150.0.4078.1

Description

The web browser from Microsoft

Added to portage

2026-06-12

microsoft-edge-dev - 150.0.4078.5
Ebuild name:

www-client/microsoft-edge-dev-150.0.4078.5

Description

The web browser from Microsoft

Added to portage

2026-06-12

msgpack - 1.2.0
Ebuild name:

dev-python/msgpack-1.2.0

Description

MessagePack (de)serializer for Python

Added to portage

2026-06-12

openmw - 0.51.0
Ebuild name:

games-engines/openmw-0.51.0

Description

Open source reimplementation of TES III Morrowind

Added to portage

2026-06-12

openscenegraph-openmw - 3.6_p20260130
Ebuild name:

dev-games/openscenegraph-openmw-3.6_p20260130

Description

OpenMW-specific fork of OpenSceneGraph

Added to portage

2026-06-12

opera - 132.0.5905.37
Ebuild name:

www-client/opera-132.0.5905.37

Description

A fast and secure web browser

Added to portage

2026-06-12

opera-developer - 133.0.5917.0
Ebuild name:

www-client/opera-developer-133.0.5917.0

Description

A fast and secure web browser

Added to portage

2026-06-12

opera-developer - 133.0.5924.0
Ebuild name:

www-client/opera-developer-133.0.5924.0

Description

A fast and secure web browser

Added to portage

2026-06-12

oslo-config - 10.5.0
Ebuild name:

dev-python/oslo-config-10.5.0

Description

Oslo Configuration API

Added to portage

2026-06-12

pbs-installer - 2026.6.10
Ebuild name:

dev-python/pbs-installer-2026.6.10

Description

Installer for Python Build Standalone

Added to portage

2026-06-12

peewee - 4.0.7
Ebuild name:

dev-python/peewee-4.0.7

Description

Small Python ORM

Added to portage

2026-06-12

protobuf - 7.35.1
Ebuild name:

dev-python/protobuf-7.35.1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-06-12

pyproject-fmt - 2.24.0
Ebuild name:

dev-python/pyproject-fmt-2.24.0

Description

Format your pyproject.toml file

Added to portage

2026-06-12

python-discovery - 1.4.2
Ebuild name:

dev-python/python-discovery-1.4.2

Description

Python interpreter discovery

Added to portage

2026-06-12

sphinx-autodoc-typehints - 3.10.6
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.10.6

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-06-12

sphinx-autodoc-typehints - 3.11.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.11.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-06-12

sqlglot - 30.11.0
Ebuild name:

dev-python/sqlglot-30.11.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-06-12

vivaldi - 8.0.4033.46
Ebuild name:

www-client/vivaldi-8.0.4033.46

Description

A browser for our friends

Added to portage

2026-06-12

vivaldi-snapshot - 8.1.4068.3
Ebuild name:

www-client/vivaldi-snapshot-8.1.4068.3

Description

A browser for our friends

Added to portage

2026-06-12

vivaldi-snapshot - 8.1.4069.3
Ebuild name:

www-client/vivaldi-snapshot-8.1.4069.3

Description

A browser for our friends

Added to portage

2026-06-12

2026-06-11
awscli - 1.45.27
Ebuild name:

app-admin/awscli-1.45.27

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-11

bcachefs-tools - 1.37.4-r1
Ebuild name:

sys-fs/bcachefs-tools-1.37.4-r1

Description

Tools for bcachefs

Added to portage

2026-06-11

bcachefs-tools - 1.38.2-r1
Ebuild name:

sys-fs/bcachefs-tools-1.38.2-r1

Description

Tools for bcachefs

Added to portage

2026-06-11

binutils - 2.46.1-r1
Ebuild name:

sys-devel/binutils-2.46.1-r1

Description

Tools necessary to build programs

Added to portage

2026-06-11

binutils-libs - 2.46.1-r1
Ebuild name:

sys-libs/binutils-libs-2.46.1-r1

Description

Core binutils libraries (libbfd, libopcodes, libiberty) for extern

Added to portage

2026-06-11

boto3 - 1.43.27
Ebuild name:

dev-python/boto3-1.43.27

Description

The AWS SDK for Python

Added to portage

2026-06-11

botocore - 1.43.27
Ebuild name:

dev-python/botocore-1.43.27

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-11

c-blosc2 - 3.1.3
Ebuild name:

dev-libs/c-blosc2-3.1.3

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-06-11

catalyst - 4.1.1-r1
Ebuild name:

dev-util/catalyst-4.1.1-r1

Description

Release metatool used for creating releases based on Gentoo Linux

Added to portage

2026-06-11

claude-code - 2.1.172
Ebuild name:

dev-util/claude-code-2.1.172

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-06-11

css-parser - 1.1.1
Ebuild name:

dev-python/css-parser-1.1.1

Description

A CSS Cascading Style Sheets library (fork of cssutils)

Added to portage

2026-06-11

cython - 3.2.5-r1
Ebuild name:

dev-python/cython-3.2.5-r1

Description

A Python to C compiler

Added to portage

2026-06-11

evisum - 1.2.5
Ebuild name:

sys-process/evisum-1.2.5

Description

System and process monitor written with EFL

Added to portage

2026-06-11

evisum - 2.0.11
Ebuild name:

sys-process/evisum-2.0.11

Description

System and process monitor written with EFL

Added to portage

2026-06-11

faker - 40.23.0
Ebuild name:

dev-python/faker-40.23.0

Description

A Python package that generates fake data for you

Added to portage

2026-06-11

file - 5.48
Ebuild name:

sys-apps/file-5.48

Description

Identify a file's format by scanning binary data for patterns

Added to portage

2026-06-11

filelock - 3.29.3
Ebuild name:

dev-python/filelock-3.29.3

Description

A platform independent file lock for Python

Added to portage

2026-06-11

foot - 1.27.0
Ebuild name:

gui-apps/foot-1.27.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2026-06-11

foot-terminfo - 1.27.0
Ebuild name:

gui-apps/foot-terminfo-1.27.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2026-06-11

game-device-udev-rules - 20260605
Ebuild name:

games-util/game-device-udev-rules-20260605

Description

udev rules for various game hardware devices

Added to portage

2026-06-11

gherkin-official - 40.0.0
Ebuild name:

dev-python/gherkin-official-40.0.0

Description

Gherkin parser/compiler for Python

Added to portage

2026-06-11

gnupg - 2.5.20-r1
Ebuild name:

app-crypt/gnupg-2.5.20-r1

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2026-06-11

ipykernel - 7.3.0
Ebuild name:

dev-python/ipykernel-7.3.0

Description

IPython Kernel for Jupyter

Added to portage

2026-06-11

libgphoto2 - 2.5.34
Ebuild name:

media-libs/libgphoto2-2.5.34

Description

Library that implements support for numerous digital cameras

Added to portage

2026-06-11

lld - 21.1.8-r1
Ebuild name:

llvm-core/lld-21.1.8-r1

Description

The LLVM linker (link editor)

Added to portage

2026-06-11

lld - 22.1.7-r1
Ebuild name:

llvm-core/lld-22.1.7-r1

Description

The LLVM linker (link editor)

Added to portage

2026-06-11

mcomix - 3.1.1-r1
Ebuild name:

media-gfx/mcomix-3.1.1-r1

Description

GTK image viewer for comic book archives

Added to portage

2026-06-11

meson-python - 0.20.0
Ebuild name:

dev-python/meson-python-0.20.0

Description

Meson PEP 517 Python build backend

Added to portage

2026-06-11

moodle - 4.5.12
Ebuild name:

www-apps/moodle-4.5.12

Description

The Moodle Course Management System

Added to portage

2026-06-11

moodle - 5.0.8
Ebuild name:

www-apps/moodle-5.0.8

Description

The Moodle Course Management System

Added to portage

2026-06-11

moonlight - 6.1.0-r4
Ebuild name:

net-misc/moonlight-6.1.0-r4

Description

NVIDIA GameStream (and Sunshine) client

Added to portage

2026-06-11

mpg123-base - 1.33.6
Ebuild name:

media-sound/mpg123-base-1.33.6

Description

Realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3

Added to portage

2026-06-11

mpg123-output-plugins - 1.33.6
Ebuild name:

media-plugins/mpg123-output-plugins-1.33.6

Description

Plugins for mpg123, the realtime MPEG 1.0/2.0/2.5 audio

Added to portage

2026-06-11

mycli - 1.74.0
Ebuild name:

dev-db/mycli-1.74.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-06-11

nest-asyncio2 - 1.7.0
Ebuild name:

dev-python/nest-asyncio2-1.7.0

Description

Patch asyncio to allow nested event loops

Added to portage

2026-06-11

poppler - 26.05.0-r1
Ebuild name:

app-text/poppler-26.05.0-r1

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2026-06-11

pyghmi - 1.6.17
Ebuild name:

dev-python/pyghmi-1.6.17

Description

A pure python implementation of IPMI protocol

Added to portage

2026-06-11

pypdf - 6.13.2
Ebuild name:

dev-python/pypdf-6.13.2

Description

Python library to work with PDF files

Added to portage

2026-06-11

python - 0.3.14.6
Ebuild name:

dev-lang/python-0.3.14.6

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-11

python - 3.13.14
Ebuild name:

dev-lang/python-3.13.14

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-11

python - 3.14.6
Ebuild name:

dev-lang/python-3.14.6

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-11

python-openstackclient - 10.1.0
Ebuild name:

dev-python/python-openstackclient-10.1.0

Description

A client for the OpenStack APIs

Added to portage

2026-06-11

python-tests - 0.3.14.6
Ebuild name:

dev-python/python-tests-0.3.14.6

Description

Test modules from dev-lang/python

Added to portage

2026-06-11

python-tests - 3.13.14
Ebuild name:

dev-python/python-tests-3.13.14

Description

Test modules from dev-lang/python

Added to portage

2026-06-11

python-tests - 3.14.6
Ebuild name:

dev-python/python-tests-3.14.6

Description

Test modules from dev-lang/python

Added to portage

2026-06-11

senpai - 0.5.0
Ebuild name:

net-irc/senpai-0.5.0

Description

Modern terminal IRC client. NOTICE me

Added to portage

2026-06-11

snd - 26.4
Ebuild name:

media-sound/snd-26.4

Description

Sound editor

Added to portage

2026-06-11

systemtap - 5.5
Ebuild name:

dev-debug/systemtap-5.5

Description

Linux trace/probe tool

Added to portage

2026-06-11

uv - 0.11.20
Ebuild name:

dev-python/uv-0.11.20

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-11

uv-build - 0.11.20
Ebuild name:

dev-python/uv-build-0.11.20

Description

PEP517 uv build backend

Added to portage

2026-06-11

vopono - 0.10.17
Ebuild name:

net-vpn/vopono-0.10.17

Description

Launch applications via VPN tunnels using temporary network namespaces

Added to portage

2026-06-11

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