Subversion Repositories ALCASAR

Rev

Rev 40 | Rev 348 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
1 root 1
#!/bin/sh
63 franck 2
# $Id: alcasar-bypass.sh 63 2010-04-08 19:56:10Z franck $
3
 
1 root 4
# Script portail-bypass
5
# Permet d'activer ou de désactiver le contournement de l'authentification et du filtrage WEB
6
usage="Usage: alcasar-bypass.sh -on | -off"
7
nb_args=$#
8
args=$1
9
if [ $nb_args -eq 0 ]
10
then
11
	nb_args=1
12
	args="-h"
13
fi
14
case $args in
15
	-\? | -h* | --h*)
16
		echo "$usage"
17
		exit 0
18
		;;
19
	-on)	
20
		# activation du contournement
21
		for i in chilli squid dansguardian httpd mysqld radiusd
22
		do
23
			if  (pgrep $i) > /dev/null ; then /etc/init.d/$i stop ; fi
24
		done
25
		echo "Configure eth1 ..."
26
		ifup eth1
27
		sh /usr/local/bin/alcasar-iptables-bypass.sh
28
		if ! (pgrep dhcpd)  > /dev/null ; then /etc/init.d/dhcpd start ; fi
29
		echo "Le contournement du module d'authentification et de filtrage WEB est activé"
30
		echo "les journaux du parefeu continuent néanmoins d'être enregistrés"
31
		;;
32
	-off)
33
		# désactivation du contournement
34
		if (pgrep dhcpd) > /dev/null ; then /etc/init.d/dhcpd stop ; fi
35
		for i in chilli squid dansguardian httpd mysqld radiusd
36
		do
37
			if  ! (pgrep $i) > /dev/null ; then /etc/init.d/$i start ; fi
38
		done
39
		sh /usr/local/bin/alcasar-iptables.sh
40
		echo "L'authentification et le filtrage WEB sont de nouveau activés"
41
;;
42
	*)
43
		echo "Argument inconnu :$1";
44
		echo "$usage"
45
		exit 1
46
		;;
47
esac