V961 Tree Umbau

git-svn-id: svn://svn.compuextreme.de/Viitor/V961/Viitor_openvpn@4297 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2008-05-03 16:59:04 +00:00
commit 7548d668c0
3 changed files with 201 additions and 0 deletions

98
etc/init.d/openvpn Executable file
View File

@ -0,0 +1,98 @@
#!/bin/bash
#Framework, welches ein komplettes Linux System aus den Sourcen erstellt
#dieses Framework wird im CVS Repository
#:pserver:cvs.compuextreme.de:/Data/cvs zur Verfügung gestellt
#
#Lage dieser Datei im Archiv: $Source$
#
#(c) 2003 Harald Kueller, Germany
#This program is free software; you can redistribute it and/or
#modify ist under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version
#2 of the License, or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#See the GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not write to the Free Software Foundation,
#Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#InitScript zum Start des Daemons: openpvn
#
#Letzte Änderung von: $Author$
#Datum der letzten Änderung: $Date$
#Version der Datei: $Revision$
#
#$Log$
#Revision 1.2 2006/03/14 20:28:08 segler
#Pfad /etc/sysconfig/net/openvpn korrigiert, Deviceanlegen geht nach /dev/null
#
#Revision 1.1.1.1 2006/03/14 18:57:25 segler
#Environment for openvpn
#
#Revision 1.2 2006/03/14 18:40:25 segler
#Diverse Änderungen in der Filestruktur
#
#
export PATH=$PATH:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
source /etc/init.d/functions
case "$1" in
start)
echo -n "loading tun device driver"
modprobe tun
evaluate_retval
echo -n "Installing tun/tab Device Files"
( if [ ! -d /dev/net ]; then
mkdir /dev/net
fi
rm -f /dev/net/tun &&
mknod /dev/net/tun c 10 200 ) >/dev/null 2>/dev/null
evaluate_retval
if [ ! -f /etc/sysconfig/net/openvpn/default.key ]; then
echo "Generating static key to share in /etc/sysconfig/net/openvpn/default.key"
openvpn --genkey --secret /etc/sysconfig/net/openvpn/default.key
fi
echo "Starting openvpn for"
cd /etc/sysconfig/net/openvpn
for CONFIG in `ls *.config`; do
echo -n "..."$CONFIG | sed -e "s/.config//g"
openvpn --config /etc/sysconfig/net/openvpn/$CONFIG &
evaluate_retval
done
;;
stop)
echo -n "Stopping openvpn"
pkill openvpn
evaluate_retval
echo -n "unloading tun driver"
rmmod tun
evaluate_retval
echo -n "Removing device files"
if [ -f /dev/net/tun ]; then
rm /dev/net/tun
fi
evaluate_retval
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac

69
init/genpkg Normal file
View File

@ -0,0 +1,69 @@
#!/bin/bash
#Framework, welches ein komplettes Linux System aus den Sourcen erstellt
#dieses Framework wird im CVS Repository
#:pserver:cvs.compuextreme.de:/Data/cvs zur Verfügung gestellt
#
#Lage dieser Datei im Archiv: $Source: /Data/cvs/ViitorMake/templates/Script.tem
plate,v $
#
#(c) 2003 Harald Kueller, Germany
#This program is free software; you can redistribute it and/or
#modify ist under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version
#2 of the License, or (at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#See the GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not write to the Free Software Foundation,
#Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#Script:
#
#Letzte Änderung von: $Author$
#Datum der letzten Änderung: $Date$
#Version der Datei: $Revision$
#
#$Log$
#Revision 1.5 2006/09/07 08:40:28 segler
#/usr/sbin/tunneltest added
#
#Revision 1.4 2006/04/05 15:51:16 segler
#linksource /etc/init.d/<script> anstatt ../<script>
#
#Revision 1.3 2006/03/29 15:10:31 segler
#Tippfehler openpvn korrigiert
#
#Revision 1.2 2006/03/14 20:33:38 segler
#/etc/sysconfig/net/openvpn wird nun angelegt...
#
#Revision 1.1.1.1 2006/03/14 18:57:25 segler
#Environment for openvpn
#
#
WDIR=`pwd`
mkdir -p etc/sysconfig/net/openvpn
cd etc/init.d
chmod 755 openvpn
mkdir rc{0,1,2,3,4,5,6}.d
for i in 0 1 6; do
cd rc$i.d
ln -s /etc/init.d/openvpn K75openvpn
cd ..
done
for i in 2 3 4 5; do
cd rc$i.d
ln -s /etc/init.d/openvpn S13openvpn
cd ..
done
cd $WDIR
chmod 755 usr/sbin/tunneltest
~

34
usr/sbin/tunneltest Executable file
View File

@ -0,0 +1,34 @@
#!/bin/bash
if [ $1 ]; then
DEVICE=$1
else
DEVICE=tun0
fi
TUN_IP=`grep ifconfig /etc/sysconfig/net/openvpn/$DEVICE.config | awk '{ print $3; };' `
if [ -f /var/run/tunneltest.pid ]; then
ps -ef | grep `cat /var/run/tunneltest.pid` || rm /var/run/tunneltest.pid
fi
if [ ! -f /var/run/tunneltest.pid ]; then
ping -c 1 -i 1 -w 1 $TUN_IP >/dev/null 2>/dev/null
if [ $? != 0 ]; then
PID=`ps -ef | grep tun1 | grep -v grep | awk '{ print $2; }'`
if [ $PID ]; then
kill -1 $PID
fi
sleep 5s
ping -c 1 -i 1 -w 1 $TUN_IP >/dev/null 2>/dev/null
if [ $? != 0 ]; then
PID=`ps -ef | grep tun1 | grep -v grep | awk '{ print $2; }'`
if [ $PID ]; then
kill -9 $PID
fi
sleep 5s
/usr/sbin/openvpn --config /etc/sysconfig/net/openvpn/$DEVICE.config >/dev/null 2>/dev/null &
fi
fi
fi