~ubuntu-branches/ubuntu/oneiric/openvpn/oneiric

« back to all changes in this revision

Viewing changes to sample-config-files/openvpn-startup.sh

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2004-06-10 15:59:39 UTC
  • Revision ID: james.westby@ubuntu.com-20040610155939-dcmtiuvcoqnwek62
Tags: upstream-1.6.0
ImportĀ upstreamĀ versionĀ 1.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
# A sample OpenVPN startup script
 
4
# for Linux.
 
5
 
 
6
# openvpn config file directory
 
7
dir=/etc/openvpn
 
8
 
 
9
# load the firewall
 
10
$dir/firewall.sh
 
11
 
 
12
# load TUN/TAP kernel module
 
13
modprobe tun
 
14
 
 
15
# enable IP forwarding
 
16
echo 1 > /proc/sys/net/ipv4/ip_forward
 
17
 
 
18
# Invoke openvpn for each VPN tunnel
 
19
# in daemon mode.  Alternatively,
 
20
# you could remove "--daemon" from
 
21
# the command line and add "daemon"
 
22
# to the config file.
 
23
#
 
24
# Each tunnel should run on a separate
 
25
# UDP port.  Use the "port" option
 
26
# to control this.  Like all of
 
27
# OpenVPN's options, you can
 
28
# specify "--port 8000" on the command
 
29
# line or "port 8000" in the config
 
30
# file.
 
31
 
 
32
openvpn --cd $dir --daemon --config vpn1.conf
 
33
openvpn --cd $dir --daemon --config vpn2.conf
 
34
openvpn --cd $dir --daemon --config vpn2.conf