Subversion Repositories ALCASAR

Rev

Rev 1676 | Rev 1685 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1676 Rev 1684
1
#!/bin/bash
1
#!/bin/bash
2
#  $Id: alcasar.sh 1676 2015-07-27 17:08:20Z richard $ 
2
#  $Id: alcasar.sh 1684 2015-07-30 12:50:48Z richard $ 
3
 
3
 
4
# alcasar.sh
4
# alcasar.sh
5
 
5
 
6
# ALCASAR Install script -  CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...] 
6
# ALCASAR Install script -  CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...] 
7
# Ce programme est un logiciel libre ; This software is free and open source
7
# Ce programme est un logiciel libre ; This software is free and open source
8
# elle que publiée par la Free Software Foundation ; soit la version 3 de la Licence. 
8
# elle que publiée par la Free Software Foundation ; soit la version 3 de la Licence. 
9
# Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE ; 
9
# Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE ; 
10
# sans même une garantie implicite de COMMERCIABILITE ou DE CONFORMITE A UNE UTILISATION PARTICULIERE. 
10
# sans même une garantie implicite de COMMERCIABILITE ou DE CONFORMITE A UNE UTILISATION PARTICULIERE. 
11
# Voir la Licence Publique Générale GNU pour plus de détails. 
11
# Voir la Licence Publique Générale GNU pour plus de détails. 
12
 
12
 
13
#  team@alcasar.net
13
#  team@alcasar.net
14
 
14
 
15
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
15
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
16
# This script is distributed under the Gnu General Public License (GPL)
16
# This script is distributed under the Gnu General Public License (GPL)
17
 
17
 
18
# Script d'installation d'ALCASAR (Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau)
18
# Script d'installation d'ALCASAR (Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau)
19
# ALCASAR est architecturé autour d'une distribution Linux Mageia minimaliste et les logiciels libres suivants :
19
# ALCASAR est architecturé autour d'une distribution Linux Mageia minimaliste et les logiciels libres suivants :
20
# Install script for ALCASAR (a secured and authenticated Internet access control captive portal)
20
# Install script for ALCASAR (a secured and authenticated Internet access control captive portal)
21
# ALCASAR is based on a stripped Mageia (LSB) with the following open source softwares : 
21
# ALCASAR is based on a stripped Mageia (LSB) with the following open source softwares : 
22
# Coovachilli, freeradius, mariaDB, apache, netfilter, dansguardian, ntpd, openssl, dnsmasq, gammu, havp, libclamav, Ulog, fail2ban, tinyproxy, NFsen and NFdump
22
# Coovachilli, freeradius, mariaDB, apache, netfilter, dansguardian, ntpd, openssl, dnsmasq, gammu, havp, libclamav, Ulog, fail2ban, tinyproxy, NFsen and NFdump
23
 
23
 
24
# Options :
24
# Options :
25
#       -i or --install
25
#       -i or --install
26
#       -u or --uninstall
26
#       -u or --uninstall
27
 
27
 
28
# Functions :
28
# Functions :
29
#	testing			: connectivity tests, free space test and mageia version test
29
#	testing			: connectivity tests, free space test and mageia version test
30
#	init			: Installation of RPM and scripts
30
#	init			: Installation of RPM and scripts
31
#	network			: Network parameters
31
#	network			: Network parameters
32
#	ACC			: ALCASAR Control Center installation
32
#	ACC			: ALCASAR Control Center installation
33
#	CA			: Certification Authority initialization
33
#	CA			: Certification Authority initialization
34
#	init_db			: Initilization of radius database managed with MariaDB
34
#	init_db			: Initilization of radius database managed with MariaDB
35
#	radius			: FreeRadius initialisation
35
#	radius			: FreeRadius initialisation
36
#	radius_web		: copy ans modifiy original "freeradius web" in ACC
36
#	radius_web		: copy ans modifiy original "freeradius web" in ACC
37
#	chilli			: coovachilli initialisation (+authentication page)
37
#	chilli			: coovachilli initialisation (+authentication page)
38
#	dansguardian		: DansGuardian filtering HTTP proxy configuration
38
#	dansguardian		: DansGuardian filtering HTTP proxy configuration
39
#	antivirus		: HAVP + libclamav configuration
39
#	antivirus		: HAVP + libclamav configuration
40
#	tinyproxy		: little proxy for user filtered with "WL + antivirus" and "antivirus"
40
#	tinyproxy		: little proxy for user filtered with "WL + antivirus" and "antivirus"
41
#	ulogd			: log system in userland (match NFLOG target of iptables)
41
#	ulogd			: log system in userland (match NFLOG target of iptables)
42
#	nfsen		:	: Configuration du grapheur nfsen pour apache 
42
#	nfsen		:	: Configuration du grapheur nfsen pour apache 
43
#	dnsmasq			: Name server configuration
43
#	dnsmasq			: Name server configuration
44
#	vnstat			: little network stat daemon
44
#	vnstat			: little network stat daemon
45
#	BL			: BlackList of Toulouse configuration : split into 3 BL (for Dnsmasq, for dansguardian and for Netfilter)
45
#	BL			: BlackList of Toulouse configuration : split into 3 BL (for Dnsmasq, for dansguardian and for Netfilter)
46
#	cron			: Logs export + watchdog + connexion statistics
46
#	cron			: Logs export + watchdog + connexion statistics
47
#	fail2ban		: Fail2ban IDS installation and configuration
47
#	fail2ban		: Fail2ban IDS installation and configuration
48
#	gammu_smsd		: Autoregister addon via SMS (gammu-smsd)
48
#	gammu_smsd		: Autoregister addon via SMS (gammu-smsd)
49
#	post_install		: Security, log rotation, etc.
49
#	post_install		: Security, log rotation, etc.
50
 
50
 
51
DATE=`date '+%d %B %Y - %Hh%M'`
51
DATE=`date '+%d %B %Y - %Hh%M'`
52
DATE_SHORT=`date '+%d/%m/%Y'`
52
DATE_SHORT=`date '+%d/%m/%Y'`
53
Lang=`echo $LANG|cut -c 1-2`
53
Lang=`echo $LANG|cut -c 1-2`
54
mode="install"
54
mode="install"
55
# ******* Files parameters - paramètres fichiers *********
55
# ******* Files parameters - paramètres fichiers *********
56
DIR_INSTALL=`pwd`				# current directory 
56
DIR_INSTALL=`pwd`				# current directory 
57
DIR_CONF="$DIR_INSTALL/conf"			# install directory (with conf files)
57
DIR_CONF="$DIR_INSTALL/conf"			# install directory (with conf files)
58
DIR_SCRIPTS="$DIR_INSTALL/scripts"		# install directory (with script files)
58
DIR_SCRIPTS="$DIR_INSTALL/scripts"		# install directory (with script files)
59
DIR_SAVE="/var/Save"				# backup directory (traceability_log, user_db, security_log)
59
DIR_SAVE="/var/Save"				# backup directory (traceability_log, user_db, security_log)
60
DIR_WEB="/var/www/html"				# directory of APACHE
60
DIR_WEB="/var/www/html"				# directory of APACHE
61
DIR_DG="/etc/dansguardian"			# directory of DansGuardian
61
DIR_DG="/etc/dansguardian"			# directory of DansGuardian
62
DIR_ACC="$DIR_WEB/acc"				# directory of the 'ALCASAR Control Center'
62
DIR_ACC="$DIR_WEB/acc"				# directory of the 'ALCASAR Control Center'
63
DIR_DEST_BIN="/usr/local/bin"			# directory of ALCASAR scripts
63
DIR_DEST_BIN="/usr/local/bin"			# directory of ALCASAR scripts
64
DIR_DEST_SBIN="/usr/local/sbin"			# directory of ALCASAR admin scripts
64
DIR_DEST_SBIN="/usr/local/sbin"			# directory of ALCASAR admin scripts
65
DIR_DEST_ETC="/usr/local/etc"			# directory of ALCASAR conf files
65
DIR_DEST_ETC="/usr/local/etc"			# directory of ALCASAR conf files
66
DIR_DEST_SHARE="/usr/local/share"		# directory of share files used by ALCASAR (dnsmasq for instance)
66
DIR_DEST_SHARE="/usr/local/share"		# directory of share files used by ALCASAR (dnsmasq for instance)
67
CONF_FILE="$DIR_DEST_ETC/alcasar.conf"		# central ALCASAR conf file
67
CONF_FILE="$DIR_DEST_ETC/alcasar.conf"		# central ALCASAR conf file
68
PASSWD_FILE="/root/ALCASAR-passwords.txt"	# text file with the passwords and shared secrets
68
PASSWD_FILE="/root/ALCASAR-passwords.txt"	# text file with the passwords and shared secrets
69
# ******* DBMS parameters - paramètres SGBD ********
69
# ******* DBMS parameters - paramètres SGBD ********
70
DB_RADIUS="radius"				# database name used by FreeRadius server
70
DB_RADIUS="radius"				# database name used by FreeRadius server
71
DB_USER="radius"				# user name allows to request the users database
71
DB_USER="radius"				# user name allows to request the users database
72
DB_GAMMU="gammu"				# database name used by Gammu-smsd
72
DB_GAMMU="gammu"				# database name used by Gammu-smsd
73
# ******* Network parameters - paramètres réseau *******
73
# ******* Network parameters - paramètres réseau *******
74
HOSTNAME="alcasar"				# default hostname
74
HOSTNAME="alcasar"				# default hostname
75
DOMAIN="localdomain"				# default local domain
75
DOMAIN="localdomain"				# default local domain
76
EXTIF=`/sbin/ip route|grep default|cut -d" " -f5`						# EXTIF is connected to the ISP broadband modem/router (In France : Box-FAI)
76
EXTIF=`/sbin/ip route|grep default|cut -d" " -f5`						# EXTIF is connected to the ISP broadband modem/router (In France : Box-FAI)
77
INTIF=`/sbin/ip	link|grep '^[[:digit:]]:'|grep -v "lo\|$EXTIF\|tun0"|cut -d" " -f2|tr -d ":"`	# INTIF is connected to the consultation network
77
INTIF=`/sbin/ip	link|grep '^[[:digit:]]:'|grep -v "lo\|$EXTIF\|tun0"|cut -d" " -f2|tr -d ":"`	# INTIF is connected to the consultation network
78
MTU="1500"
78
MTU="1500"
79
DEFAULT_PRIVATE_IP_MASK="192.168.182.1/24"	# Default ALCASAR IP address
79
DEFAULT_PRIVATE_IP_MASK="192.168.182.1/24"	# Default ALCASAR IP address
80
# ****** Paths - chemin des commandes *******
80
# ****** Paths - chemin des commandes *******
81
SED="/bin/sed -i"
81
SED="/bin/sed -i"
82
# ****************** End of global parameters *********************
82
# ****************** End of global parameters *********************
83
 
83
 
84
license ()
84
license ()
85
{
85
{
86
	if [ $Lang == "fr" ]
86
	if [ $Lang == "fr" ]
87
	then
87
	then
88
		cat $DIR_INSTALL/gpl-warning.fr.txt | more
88
		cat $DIR_INSTALL/gpl-warning.fr.txt | more
89
	else
89
	else
90
		cat $DIR_INSTALL/gpl-warning.txt | more
90
		cat $DIR_INSTALL/gpl-warning.txt | more
91
	fi
91
	fi
92
	response=0
92
	response=0
93
	PTN='^[oOyYnN]$'
93
	PTN='^[oOyYnN]$'
94
	until [[ $(expr $response : $PTN) -gt 0 ]]
94
	until [[ $(expr $response : $PTN) -gt 0 ]]
95
	do
95
	do
96
		if [ $Lang == "fr" ]
96
		if [ $Lang == "fr" ]
97
			then echo -n "Acceptez-vous les termes de cette licence (O/n)? : "
97
			then echo -n "Acceptez-vous les termes de cette licence (O/n)? : "
98
			else echo -n "Do you accept the terms of this license (Y/n)? : "
98
			else echo -n "Do you accept the terms of this license (Y/n)? : "
99
		fi
99
		fi
100
		read response
100
		read response
101
	done
101
	done
102
	if [ "$response" = "n" ] || [ "$response" = "N" ]
102
	if [ "$response" = "n" ] || [ "$response" = "N" ]
103
	then
103
	then
104
		exit 1
104
		exit 1
105
	fi
105
	fi
106
}
106
}
107
 
107
 
108
header_install ()
108
header_install ()
109
{
109
{
110
	clear
110
	clear
111
	echo "-----------------------------------------------------------------------------"
111
	echo "-----------------------------------------------------------------------------"
112
	echo "                     ALCASAR V$VERSION Installation"
112
	echo "                     ALCASAR V$VERSION Installation"
113
	echo "Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau"
113
	echo "Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau"
114
	echo "-----------------------------------------------------------------------------"
114
	echo "-----------------------------------------------------------------------------"
115
}
115
}
116
 
116
 
117
##################################################################
117
##################################################################
118
##			Function "testing"			##
118
##			Function "testing"			##
119
## - Test of Mageia version					##
119
## - Test of Mageia version					##
120
## - Test of ALCASAR version (if already installed)		##
120
## - Test of ALCASAR version (if already installed)		##
121
## - Test of free space on /var  (>10G)				##
121
## - Test of free space on /var  (>10G)				##
122
## - Test of Internet access					##
122
## - Test of Internet access					##
123
##################################################################
123
##################################################################
124
testing ()
124
testing ()
125
{
125
{
126
# Test of Mageia version
126
# Test of Mageia version
127
# extract the current Mageia version and hardware architecture (i586 ou X64)
127
# extract the current Mageia version and hardware architecture (i586 ou X64)
128
	fic=`cat /etc/product.id`
128
	fic=`cat /etc/product.id`
129
	unknown_os=0
129
	unknown_os=0
130
	old="$IFS"
130
	old="$IFS"
131
	IFS=","
131
	IFS=","
132
	set $fic
132
	set $fic
133
	for i in $*
133
	for i in $*
134
	do
134
	do
135
		if [ "`echo $i|grep distribution|cut -d'=' -f1`" == "distribution" ]
135
		if [ "`echo $i|grep distribution|cut -d'=' -f1`" == "distribution" ]
136
			then 
136
			then 
137
			DISTRIBUTION=`echo $i|cut -d"=" -f2`
137
			DISTRIBUTION=`echo $i|cut -d"=" -f2`
138
			unknown_os=`expr $unknown_os + 1`
138
			unknown_os=`expr $unknown_os + 1`
139
		fi
139
		fi
140
		if [ "`echo $i|grep version|cut -d'=' -f1`" == "version" ]
140
		if [ "`echo $i|grep version|cut -d'=' -f1`" == "version" ]
141
			then 
141
			then 
142
			CURRENT_VERSION=`echo $i|cut -d"=" -f2`
142
			CURRENT_VERSION=`echo $i|cut -d"=" -f2`
143
			unknown_os=`expr $unknown_os + 1`
143
			unknown_os=`expr $unknown_os + 1`
144
		fi
144
		fi
145
		if [ "`echo $i|grep arch|cut -d'=' -f1`" == "arch" ]
145
		if [ "`echo $i|grep arch|cut -d'=' -f1`" == "arch" ]
146
			then 
146
			then 
147
			ARCH=`echo $i|cut -d"=" -f2`
147
			ARCH=`echo $i|cut -d"=" -f2`
148
			unknown_os=`expr $unknown_os + 1`
148
			unknown_os=`expr $unknown_os + 1`
149
		fi
149
		fi
150
	done
150
	done
151
	IFS="$old"
151
	IFS="$old"
152
# Test if ALCASAR is already installed
152
# Test if ALCASAR is already installed
153
	if [ -e $CONF_FILE ]
153
	if [ -e $CONF_FILE ]
154
	then
154
	then
155
		current_version=`cat $CONF_FILE | grep VERSION | cut -d"=" -f2`
155
		current_version=`cat $CONF_FILE | grep VERSION | cut -d"=" -f2`
156
		if [ $Lang == "fr" ]
156
		if [ $Lang == "fr" ]
157
			then echo -n "La version "; echo -n $current_version ; echo " d'ALCASAR est déjà installée";
157
			then echo -n "La version "; echo -n $current_version ; echo " d'ALCASAR est déjà installée";
158
			else echo -n "ALCASAR Version "; echo -n $current_version ; echo " is already installed";
158
			else echo -n "ALCASAR Version "; echo -n $current_version ; echo " is already installed";
159
		fi
159
		fi
160
		response=0
160
		response=0
161
		PTN='^[oOnNyY]$'
161
		PTN='^[oOnNyY]$'
162
		until [[ $(expr $response : $PTN) -gt 0 ]]
162
		until [[ $(expr $response : $PTN) -gt 0 ]]
163
		do
163
		do
164
			if [ $Lang == "fr" ]
164
			if [ $Lang == "fr" ]
165
				then echo -n "Voulez-vous effectuer une mise à jour (O/n)? ";
165
				then echo -n "Voulez-vous effectuer une mise à jour (O/n)? ";
166
				else echo -n "Do you want to update (Y/n)?";
166
				else echo -n "Do you want to update (Y/n)?";
167
			 fi
167
			 fi
168
			read response
168
			read response
169
		done
169
		done
170
		if [ "$response" = "n" ] || [ "$response" = "N" ] 
170
		if [ "$response" = "n" ] || [ "$response" = "N" ] 
171
		then
171
		then
172
			rm -f /tmp/alcasar-conf*
172
			rm -f /tmp/alcasar-conf*
173
		else
173
		else
-
 
174
# Retrieve former NICname
-
 
175
			EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`				# EXTernal InterFace
-
 
176
			INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`				# INTernal InterFace
174
# Create the current conf file
177
# Create the current conf file
175
			$DIR_SCRIPTS/alcasar-conf.sh --create
178
			$DIR_SCRIPTS/alcasar-conf.sh --create
176
			mode="update"
179
			mode="update"
177
		fi
180
		fi
178
	fi
181
	fi
179
	if [[ ( $unknown_os != 3 ) || ("$DISTRIBUTION" != "Mageia" ) || ( "$CURRENT_VERSION" != "4" ) ]]
182
	if [[ ( $unknown_os != 3 ) || ("$DISTRIBUTION" != "Mageia" ) || ( "$CURRENT_VERSION" != "4" ) ]]
180
		then
183
		then
181
		if [ -e /tmp/alcasar-conf.tar.gz ] # update
184
		if [ -e /tmp/alcasar-conf.tar.gz ] # update
182
			then
185
			then
183
			echo
186
			echo
184
			if [ $Lang == "fr" ]
187
			if [ $Lang == "fr" ]
185
				then	
188
				then	
186
				echo "La mise à jour automatique d'ALCASAR ne peut pas être réalisée."
189
				echo "La mise à jour automatique d'ALCASAR ne peut pas être réalisée."
187
				echo "1 - Récupérez le fichier de configuration actuel (/tmp/alcasar-conf.tar.gz)."
190
				echo "1 - Récupérez le fichier de configuration actuel (/tmp/alcasar-conf.tar.gz)."
188
				echo "2 - Installez Linux-Mageia 4.1 (cf. doc d'installation)"
191
				echo "2 - Installez Linux-Mageia 4.1 (cf. doc d'installation)"
189
				echo "3 - recopiez le fichier 'alcasar-conf.tar.gz' dans le répertoire '/tmp' avant de lancer l'installation d'ALCASAR"
192
				echo "3 - recopiez le fichier 'alcasar-conf.tar.gz' dans le répertoire '/tmp' avant de lancer l'installation d'ALCASAR"
190
			else
193
			else
191
				echo "The automatic update of ALCASAR can't be performed."
194
				echo "The automatic update of ALCASAR can't be performed."
192
				echo "1 - Retrieve the configuration file (/tmp/alcasar-conf.tar.gz)"
195
				echo "1 - Retrieve the configuration file (/tmp/alcasar-conf.tar.gz)"
193
				echo "2 - Install Linux-Mageia 4.1 (cf. installation doc)"
196
				echo "2 - Install Linux-Mageia 4.1 (cf. installation doc)"
194
				echo "3 - Copy again the file 'alcasar-conf.tar.gz' in the folder '/tmp' before launching the installation of ALCASAR"
197
				echo "3 - Copy again the file 'alcasar-conf.tar.gz' in the folder '/tmp' before launching the installation of ALCASAR"
195
			fi
198
			fi
196
		else
199
		else
197
			if [ $Lang == "fr" ]
200
			if [ $Lang == "fr" ]
198
				then	
201
				then	
199
				echo "L'installation d'ALCASAR ne peut pas être réalisée."
202
				echo "L'installation d'ALCASAR ne peut pas être réalisée."
200
			else
203
			else
201
				echo "The installation of ALCASAR can't be performed."
204
				echo "The installation of ALCASAR can't be performed."
202
			fi
205
			fi
203
		fi
206
		fi
204
		echo
207
		echo
205
		if [ $Lang == "fr" ]
208
		if [ $Lang == "fr" ]
206
			then	
209
			then	
207
			echo "Le système d'exploitation doit être remplacé (Mageia4.1)"
210
			echo "Le système d'exploitation doit être remplacé (Mageia4.1)"
208
		else
211
		else
209
			echo "The OS must be replaced (Mageia4.1)"
212
			echo "The OS must be replaced (Mageia4.1)"
210
		fi
213
		fi
211
		exit 0
214
		exit 0
212
	fi
215
	fi
213
	if [ ! -d /var/log/netflow/porttracker ]
216
	if [ ! -d /var/log/netflow/porttracker ]
214
		then
217
		then
215
# Test of free space on /var
218
# Test of free space on /var
216
		free_space=`df -BG --output=avail /var|tail -1|tr -d [:space:]G`
219
		free_space=`df -BG --output=avail /var|tail -1|tr -d [:space:]G`
217
		if [ $free_space -lt 10 ]
220
		if [ $free_space -lt 10 ]
218
			then
221
			then
219
			if [ $Lang == "fr" ]
222
			if [ $Lang == "fr" ]
220
				then echo "place disponible sur /var insufisante ($free_space Go au lieu de 10 Go au minimum)"
223
				then echo "place disponible sur /var insufisante ($free_space Go au lieu de 10 Go au minimum)"
221
				else echo "not enough free space on /var ($free_space GB instead of at least 10 GB)"
224
				else echo "not enough free space on /var ($free_space GB instead of at least 10 GB)"
222
			fi
225
			fi
223
		exit 0
226
		exit 0
224
		fi
227
		fi
225
	fi
228
	fi
226
	if [ $Lang == "fr" ]
229
	if [ $Lang == "fr" ]
227
		then echo -n "Tests des paramètres réseau : "
230
		then echo -n "Tests des paramètres réseau : "
228
		else echo -n "Network parameters tests : "
231
		else echo -n "Network parameters tests : "
229
	fi
232
	fi
230
# Test of Ethernet links state
233
# Test of Ethernet links state
231
	DOWN_IF=`/sbin/ip link|grep "NO-CARRIER"|cut -d":" -f2|tr -d " "`
234
	DOWN_IF=`/sbin/ip link|grep "NO-CARRIER"|cut -d":" -f2|tr -d " "`
232
	for i in $DOWN_IF
235
	for i in $DOWN_IF
233
	do
236
	do
234
		if [ $Lang == "fr" ]
237
		if [ $Lang == "fr" ]
235
		then 
238
		then 
236
			echo "Échec"
239
			echo "Échec"
237
			echo "Le lien réseau de la carte $i n'est pas actif."
240
			echo "Le lien réseau de la carte $i n'est pas actif."
238
			echo "Assurez-vous que cette carte est bien connectée à un équipement (commutateur, A.P., etc.)"
241
			echo "Assurez-vous que cette carte est bien connectée à un équipement (commutateur, A.P., etc.)"
239
		else
242
		else
240
			echo "Failed"
243
			echo "Failed"
241
			echo "The link state of $i interface is down."
244
			echo "The link state of $i interface is down."
242
			echo "Make sure that this network card is connected to a switch or an A.P."
245
			echo "Make sure that this network card is connected to a switch or an A.P."
243
		fi
246
		fi
244
		exit 0
247
		exit 0
245
	done
248
	done
246
	echo -n "."
249
	echo -n "."
247
 
250
 
248
# Test EXTIF config files
251
# Test EXTIF config files
249
	PUBLIC_IP_MASK=`ip addr show $EXTIF|grep "inet "|cut -d" " -f6`
252
	PUBLIC_IP_MASK=`ip addr show $EXTIF|grep "inet "|cut -d" " -f6`
250
	PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
253
	PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
251
	PUBLIC_GATEWAY=`ip route list|grep ^default|cut -d" " -f3`
254
	PUBLIC_GATEWAY=`ip route list|grep ^default|cut -d" " -f3`
252
	if [ `echo $PUBLIC_IP|wc -c` -lt 7 ] || [ `echo $PUBLIC_GATEWAY|wc -c` -lt 7 ]
255
	if [ `echo $PUBLIC_IP|wc -c` -lt 7 ] || [ `echo $PUBLIC_GATEWAY|wc -c` -lt 7 ]
253
	then
256
	then
254
		if [ $Lang == "fr" ]
257
		if [ $Lang == "fr" ]
255
		then 
258
		then 
256
			echo "Échec"
259
			echo "Échec"
257
			echo "La carte réseau connectée à Internet ($EXTIF) n'est pas correctement configurée."
260
			echo "La carte réseau connectée à Internet ($EXTIF) n'est pas correctement configurée."
258
			echo "Renseignez les champs suivants dans le fichier '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
261
			echo "Renseignez les champs suivants dans le fichier '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
259
			echo "Appliquez les changements : 'systemctl restart network'"
262
			echo "Appliquez les changements : 'systemctl restart network'"
260
		else
263
		else
261
			echo "Failed"
264
			echo "Failed"
262
			echo "The Internet connected network card ($EXTIF) isn't well configured."
265
			echo "The Internet connected network card ($EXTIF) isn't well configured."
263
			echo "The folowing parametres must be set in the file '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
266
			echo "The folowing parametres must be set in the file '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
264
			echo "Apply the new configuration 'systemctl restart network'"
267
			echo "Apply the new configuration 'systemctl restart network'"
265
		fi
268
		fi
266
		echo "DEVICE=$EXTIF"
269
		echo "DEVICE=$EXTIF"
267
		echo "IPADDR="
270
		echo "IPADDR="
268
		echo "NETMASK="
271
		echo "NETMASK="
269
		echo "GATEWAY="
272
		echo "GATEWAY="
270
		echo "DNS1="
273
		echo "DNS1="
271
		echo "DNS2="
274
		echo "DNS2="
272
		echo "ONBOOT=yes"
275
		echo "ONBOOT=yes"
273
		exit 0
276
		exit 0
274
	fi
277
	fi
275
	echo -n "."
278
	echo -n "."
276
 
279
 
277
# Test if router is alive (Box FAI)
280
# Test if router is alive (Box FAI)
278
	if [ `ip route list|grep -c ^default` -ne "1" ] ; then
281
	if [ `ip route list|grep -c ^default` -ne "1" ] ; then
279
		if [ $Lang == "fr" ]
282
		if [ $Lang == "fr" ]
280
		then 
283
		then 
281
			echo "Échec"
284
			echo "Échec"
282
			echo "Vous n'avez pas configuré l'accès à Internet ou le câble réseau n'est pas sur la bonne carte."
285
			echo "Vous n'avez pas configuré l'accès à Internet ou le câble réseau n'est pas sur la bonne carte."
283
			echo "Réglez ce problème puis relancez ce script."
286
			echo "Réglez ce problème puis relancez ce script."
284
		else
287
		else
285
			echo "Failed"
288
			echo "Failed"
286
			echo "You haven't configured Internet access or Internet link is on the wrong Ethernet card"
289
			echo "You haven't configured Internet access or Internet link is on the wrong Ethernet card"
287
			echo "Resolv this problem, then restart this script."
290
			echo "Resolv this problem, then restart this script."
288
		fi
291
		fi
289
		exit 0
292
		exit 0
290
	fi
293
	fi
291
	echo -n "."
294
	echo -n "."
292
# On teste le lien vers le routeur par defaut
295
# On teste le lien vers le routeur par defaut
293
	arp_reply=`/usr/sbin/arping -b -I$EXTIF -c1 -w2 $PUBLIC_GATEWAY|grep response|cut -d" " -f2`
296
	arp_reply=`/usr/sbin/arping -b -I$EXTIF -c1 -w2 $PUBLIC_GATEWAY|grep response|cut -d" " -f2`
294
	if [ $(expr $arp_reply) -eq 0 ]
297
	if [ $(expr $arp_reply) -eq 0 ]
295
	       	then
298
	       	then
296
		if [ $Lang == "fr" ]
299
		if [ $Lang == "fr" ]
297
		then 
300
		then 
298
			echo "Échec"
301
			echo "Échec"
299
			echo "Le routeur de site ou la Box Internet ($PUBLIC_GATEWAY) ne répond pas."
302
			echo "Le routeur de site ou la Box Internet ($PUBLIC_GATEWAY) ne répond pas."
300
			echo "Réglez ce problème puis relancez ce script."
303
			echo "Réglez ce problème puis relancez ce script."
301
		else
304
		else
302
			echo "Failed"
305
			echo "Failed"
303
			echo "The Internet gateway doesn't answered"
306
			echo "The Internet gateway doesn't answered"
304
			echo "Resolv this problem, then restart this script."
307
			echo "Resolv this problem, then restart this script."
305
		fi
308
		fi
306
		exit 0
309
		exit 0
307
	fi
310
	fi
308
	echo -n "."
311
	echo -n "."
309
# On teste la connectivité Internet
312
# On teste la connectivité Internet
310
	rm -rf /tmp/con_ok.html
313
	rm -rf /tmp/con_ok.html
311
	/usr/bin/curl www.google.fr -s -o /tmp/con_ok.html
314
	/usr/bin/curl www.google.fr -s -o /tmp/con_ok.html
312
	if [ ! -e /tmp/con_ok.html ]
315
	if [ ! -e /tmp/con_ok.html ]
313
	then
316
	then
314
		if [ $Lang == "fr" ]
317
		if [ $Lang == "fr" ]
315
		then 
318
		then 
316
			echo "La tentative de connexion vers Internet a échoué (google.fr)."
319
			echo "La tentative de connexion vers Internet a échoué (google.fr)."
317
			echo "Vérifiez que la carte $EXTIF est bien connectée au routeur du FAI."
320
			echo "Vérifiez que la carte $EXTIF est bien connectée au routeur du FAI."
318
			echo "Vérifiez la validité des adresses IP des DNS."
321
			echo "Vérifiez la validité des adresses IP des DNS."
319
		else
322
		else
320
			echo "The Internet connection try failed (google.fr)."
323
			echo "The Internet connection try failed (google.fr)."
321
			echo "Please, verify that the $EXTIF card is connected with the Internet gateway."
324
			echo "Please, verify that the $EXTIF card is connected with the Internet gateway."
322
			echo "Verify the DNS IP addresses"
325
			echo "Verify the DNS IP addresses"
323
		fi
326
		fi
324
		exit 0
327
		exit 0
325
	fi
328
	fi
326
	rm -rf /tmp/con_ok.html
329
	rm -rf /tmp/con_ok.html
327
	echo ". : ok"
330
	echo ". : ok"
328
} # end of testing ()
331
} # end of testing ()
329
 
332
 
330
##################################################################
333
##################################################################
331
##			Function "init"				##
334
##			Function "init"				##
332
## - Création du fichier "/root/ALCASAR_parametres.txt"		##
335
## - Création du fichier "/root/ALCASAR_parametres.txt"		##
333
## - Installation et modification des scripts du portail	##
336
## - Installation et modification des scripts du portail	##
334
##################################################################
337
##################################################################
335
init ()
338
init ()
336
{
339
{
337
	if [ "$mode" != "update" ]
340
	if [ "$mode" != "update" ]
338
	then
341
	then
339
# On affecte le nom d'organisme
342
# On affecte le nom d'organisme
340
		header_install
343
		header_install
341
		ORGANISME=!
344
		ORGANISME=!
342
		PTN='^[a-zA-Z0-9-]*$'
345
		PTN='^[a-zA-Z0-9-]*$'
343
		until [[ $(expr $ORGANISME : $PTN) -gt 0 ]]
346
		until [[ $(expr $ORGANISME : $PTN) -gt 0 ]]
344
                do
347
                do
345
			if [ $Lang == "fr" ]
348
			if [ $Lang == "fr" ]
346
			       	then echo -n "Entrez le nom de votre organisme : "
349
			       	then echo -n "Entrez le nom de votre organisme : "
347
				else echo -n "Enter the name of your organism : "
350
				else echo -n "Enter the name of your organism : "
348
			fi
351
			fi
349
			read ORGANISME
352
			read ORGANISME
350
			if [ "$ORGANISME" == "" ]
353
			if [ "$ORGANISME" == "" ]
351
				then
354
				then
352
				ORGANISME=!
355
				ORGANISME=!
353
			fi
356
			fi
354
		done
357
		done
355
	fi
358
	fi
356
# On crée aléatoirement les mots de passe et les secrets partagés
359
# On crée aléatoirement les mots de passe et les secrets partagés
357
	rm -f $PASSWD_FILE
360
	rm -f $PASSWD_FILE
358
	grubpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
361
	grubpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
359
	echo -n "Password to protect the GRUB boot menu (!!!qwerty keyboard) : " > $PASSWD_FILE
362
	echo -n "Password to protect the GRUB boot menu (!!!qwerty keyboard) : " > $PASSWD_FILE
360
	echo "$grubpwd" >> $PASSWD_FILE
363
	echo "$grubpwd" >> $PASSWD_FILE
361
	md5_grubpwd=`/usr/bin/openssl passwd -1 $grubpwd`
364
	md5_grubpwd=`/usr/bin/openssl passwd -1 $grubpwd`
362
	$SED "/^password.*/d" /boot/grub/menu.lst
365
	$SED "/^password.*/d" /boot/grub/menu.lst
363
	$SED "1ipassword --md5 $md5_grubpwd" /boot/grub/menu.lst
366
	$SED "1ipassword --md5 $md5_grubpwd" /boot/grub/menu.lst
364
	mysqlpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
367
	mysqlpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
365
	echo -n "Name and password of Mysql/mariadb administrator : " >> $PASSWD_FILE
368
	echo -n "Name and password of Mysql/mariadb administrator : " >> $PASSWD_FILE
366
	echo "root / $mysqlpwd" >> $PASSWD_FILE
369
	echo "root / $mysqlpwd" >> $PASSWD_FILE
367
	radiuspwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
370
	radiuspwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
368
	echo -n "Name and password of Mysql/mariadb user : " >> $PASSWD_FILE
371
	echo -n "Name and password of Mysql/mariadb user : " >> $PASSWD_FILE
369
	echo "$DB_USER / $radiuspwd" >> $PASSWD_FILE
372
	echo "$DB_USER / $radiuspwd" >> $PASSWD_FILE
370
	secretuam=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
373
	secretuam=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
371
	echo -n "Shared secret between the script 'intercept.php' and coova-chilli : " >> $PASSWD_FILE
374
	echo -n "Shared secret between the script 'intercept.php' and coova-chilli : " >> $PASSWD_FILE
372
	echo "$secretuam" >> $PASSWD_FILE
375
	echo "$secretuam" >> $PASSWD_FILE
373
	secretradius=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
376
	secretradius=`cat /dev/urandom | tr -dc [:alnum:] | head -c8`
374
	echo -n "Shared secret between coova-chilli and FreeRadius : " >> $PASSWD_FILE
377
	echo -n "Shared secret between coova-chilli and FreeRadius : " >> $PASSWD_FILE
375
	echo "$secretradius" >> $PASSWD_FILE
378
	echo "$secretradius" >> $PASSWD_FILE
376
	chmod 640 $PASSWD_FILE
379
	chmod 640 $PASSWD_FILE
377
# Scripts and conf files copy 
380
# Scripts and conf files copy 
378
#  - in /usr/local/bin :  alcasar-{CA.sh,conf.sh,import-clean.sh,iptables-bypass.sh,iptables.sh,log.sh,watchdog.sh}
381
#  - in /usr/local/bin :  alcasar-{CA.sh,conf.sh,import-clean.sh,iptables-bypass.sh,iptables.sh,log.sh,watchdog.sh}
379
	cp -f $DIR_SCRIPTS/alcasar* $DIR_DEST_BIN/. ; chown root:root $DIR_DEST_BIN/alcasar* ; chmod 740 $DIR_DEST_BIN/alcasar*
382
	cp -f $DIR_SCRIPTS/alcasar* $DIR_DEST_BIN/. ; chown root:root $DIR_DEST_BIN/alcasar* ; chmod 740 $DIR_DEST_BIN/alcasar*
380
#  - in /usr/local/sbin :  alcasar-{bl.sh,bypass.sh,dateLog.sh,havp.sh,logout.sh,mysql.sh,nf.sh,profil.sh,uninstall.sh,version-list.sh,load-balancing.sh}
383
#  - in /usr/local/sbin :  alcasar-{bl.sh,bypass.sh,dateLog.sh,havp.sh,logout.sh,mysql.sh,nf.sh,profil.sh,uninstall.sh,version-list.sh,load-balancing.sh}
381
	cp -f $DIR_SCRIPTS/sbin/alcasar* $DIR_DEST_SBIN/. ; chown root:root $DIR_DEST_SBIN/alcasar* ; chmod 740 $DIR_DEST_SBIN/alcasar*
384
	cp -f $DIR_SCRIPTS/sbin/alcasar* $DIR_DEST_SBIN/. ; chown root:root $DIR_DEST_SBIN/alcasar* ; chmod 740 $DIR_DEST_SBIN/alcasar*
382
#  - in /usr/local/etc : alcasar-{bl-categories-enabled,dns-name,iptables-local.sh,services}
385
#  - in /usr/local/etc : alcasar-{bl-categories-enabled,dns-name,iptables-local.sh,services}
383
	cp -f $DIR_CONF/etc/alcasar* $DIR_DEST_ETC/. ; chown root:apache $DIR_DEST_ETC/alcasar* ; chmod 660 $DIR_DEST_ETC/alcasar*
386
	cp -f $DIR_CONF/etc/alcasar* $DIR_DEST_ETC/. ; chown root:apache $DIR_DEST_ETC/alcasar* ; chmod 660 $DIR_DEST_ETC/alcasar*
384
	$SED "s?^radiussecret.*?radiussecret=\"$secretradius\"?g" $DIR_DEST_SBIN/alcasar-logout.sh
387
	$SED "s?^radiussecret.*?radiussecret=\"$secretradius\"?g" $DIR_DEST_SBIN/alcasar-logout.sh
385
	$SED "s?^DB_RADIUS=.*?DB_RADIUS=\"$DB_RADIUS\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh
388
	$SED "s?^DB_RADIUS=.*?DB_RADIUS=\"$DB_RADIUS\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh
386
	$SED "s?^DB_USER=.*?DB_USER=\"$DB_USER\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
389
	$SED "s?^DB_USER=.*?DB_USER=\"$DB_USER\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
387
	$SED "s?^radiuspwd=.*?radiuspwd=\"$radiuspwd\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
390
	$SED "s?^radiuspwd=.*?radiuspwd=\"$radiuspwd\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
388
# generate central conf file
391
# generate central conf file
389
	cat <<EOF > $CONF_FILE
392
	cat <<EOF > $CONF_FILE
390
##########################################
393
##########################################
391
##                                      ##
394
##                                      ##
392
##          ALCASAR Parameters          ##
395
##          ALCASAR Parameters          ##
393
##                                      ##
396
##                                      ##
394
##########################################
397
##########################################
395
 
398
 
396
INSTALL_DATE=$DATE
399
INSTALL_DATE=$DATE
397
VERSION=$VERSION
400
VERSION=$VERSION
398
ORGANISM=$ORGANISME
401
ORGANISM=$ORGANISME
399
DOMAIN=$DOMAIN
402
DOMAIN=$DOMAIN
400
EOF
403
EOF
401
	chmod o-rwx $CONF_FILE
404
	chmod o-rwx $CONF_FILE
402
} # End of init ()
405
} # End of init ()
403
 
406
 
404
##################################################################
407
##################################################################
405
##			Function "network"			##
408
##			Function "network"			##
406
## - Définition du plan d'adressage du réseau de consultation	##
409
## - Définition du plan d'adressage du réseau de consultation	##
407
## - Nommage DNS du système 					##
410
## - Nommage DNS du système 					##
408
## - Configuration de l'interface INTIF (réseau de consultation)##
411
## - Configuration de l'interface INTIF (réseau de consultation)##
409
## - Modification du fichier /etc/hosts				##
412
## - Modification du fichier /etc/hosts				##
410
## - Configuration du serveur de temps (NTP)			##
413
## - Configuration du serveur de temps (NTP)			##
411
## - Renseignement des fichiers hosts.allow et hosts.deny	##
414
## - Renseignement des fichiers hosts.allow et hosts.deny	##
412
##################################################################
415
##################################################################
413
network ()
416
network ()
414
{
417
{
415
	header_install
418
	header_install
416
	if [ "$mode" != "update" ]
419
	if [ "$mode" != "update" ]
417
		then
420
		then
418
		if [ $Lang == "fr" ]
421
		if [ $Lang == "fr" ]
419
			then echo "Par défaut, l'adresse IP d'ALCASAR sur le réseau de consultation est : $DEFAULT_PRIVATE_IP_MASK"
422
			then echo "Par défaut, l'adresse IP d'ALCASAR sur le réseau de consultation est : $DEFAULT_PRIVATE_IP_MASK"
420
			else echo "The default ALCASAR IP address on consultation network is : $DEFAULT_PRIVATE_IP_MASK"
423
			else echo "The default ALCASAR IP address on consultation network is : $DEFAULT_PRIVATE_IP_MASK"
421
		fi
424
		fi
422
		response=0
425
		response=0
423
		PTN='^[oOyYnN]$'
426
		PTN='^[oOyYnN]$'
424
		until [[ $(expr $response : $PTN) -gt 0 ]]
427
		until [[ $(expr $response : $PTN) -gt 0 ]]
425
		do
428
		do
426
			if [ $Lang == "fr" ]
429
			if [ $Lang == "fr" ]
427
				then echo -n "Voulez-vous utiliser cette adresse et ce plan d'adressage (recommandé) (O/n)? : "
430
				then echo -n "Voulez-vous utiliser cette adresse et ce plan d'adressage (recommandé) (O/n)? : "
428
				else echo -n "Do you want to use this IP address and this IP addressing plan (recommanded) (Y/n)? : "
431
				else echo -n "Do you want to use this IP address and this IP addressing plan (recommanded) (Y/n)? : "
429
			fi
432
			fi
430
			read response
433
			read response
431
		done
434
		done
432
		if [ "$response" = "n" ] || [ "$response" = "N" ]
435
		if [ "$response" = "n" ] || [ "$response" = "N" ]
433
		then
436
		then
434
			PRIVATE_IP_MASK="0"
437
			PRIVATE_IP_MASK="0"
435
			PTN='^\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\)/[012]\?[[:digit:]]$'
438
			PTN='^\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\).\([01]\?[[:digit:]][[:digit:]]\?\|2[0-4][[:digit:]]\|25[0-5]\)/[012]\?[[:digit:]]$'
436
			until [[ $(expr $PRIVATE_IP_MASK : $PTN) -gt 0 ]]
439
			until [[ $(expr $PRIVATE_IP_MASK : $PTN) -gt 0 ]]
437
			do
440
			do
438
				if [ $Lang == "fr" ]
441
				if [ $Lang == "fr" ]
439
					then echo -n "Entrez l'adresse IP d'ALCASAR au format CIDR (a.b.c.d/xx) : "
442
					then echo -n "Entrez l'adresse IP d'ALCASAR au format CIDR (a.b.c.d/xx) : "
440
					else echo -n "Enter ALCASAR IP address in CIDR format (a.b.c.d/xx) : "
443
					else echo -n "Enter ALCASAR IP address in CIDR format (a.b.c.d/xx) : "
441
				fi
444
				fi
442
				read PRIVATE_IP_MASK
445
				read PRIVATE_IP_MASK
443
			done
446
			done
444
		else
447
		else
445
       			PRIVATE_IP_MASK=$DEFAULT_PRIVATE_IP_MASK
448
       			PRIVATE_IP_MASK=$DEFAULT_PRIVATE_IP_MASK
446
		fi
449
		fi
447
	else
450
	else
448
		PRIVATE_IP_MASK=`grep PRIVATE_IP conf/etc/alcasar.conf|cut -d"=" -f2` 
451
		PRIVATE_IP_MASK=`grep PRIVATE_IP conf/etc/alcasar.conf|cut -d"=" -f2` 
449
		rm -rf conf/etc/alcasar.conf
452
		rm -rf conf/etc/alcasar.conf
450
	fi
453
	fi
451
# Define LAN side global parameters
454
# Define LAN side global parameters
452
	hostname $HOSTNAME.$DOMAIN
455
	hostname $HOSTNAME.$DOMAIN
453
	echo $HOSTNAME.$DOMAIN > /etc/hostname
456
	echo $HOSTNAME.$DOMAIN > /etc/hostname
454
	PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP_MASK | cut -d"=" -f2`				# private network address (ie.: 192.168.182.0)
457
	PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP_MASK | cut -d"=" -f2`				# private network address (ie.: 192.168.182.0)
455
	private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f4`					# last octet of LAN address
458
	private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f4`					# last octet of LAN address
456
	PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`				# private network mask (ie.: 255.255.255.0)
459
	PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`				# private network mask (ie.: 255.255.255.0)
457
	PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP_MASK |cut -d"=" -f2`					# network prefix (ie. 24)
460
	PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP_MASK |cut -d"=" -f2`					# network prefix (ie. 24)
458
	PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`						# ALCASAR private ip address (consultation LAN side)
461
	PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`						# ALCASAR private ip address (consultation LAN side)
459
	if [ $PRIVATE_IP == $PRIVATE_NETWORK ]								# when entering network address instead of ip address
462
	if [ $PRIVATE_IP == $PRIVATE_NETWORK ]								# when entering network address instead of ip address
460
		then
463
		then
461
		PRIVATE_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`	
464
		PRIVATE_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`	
462
		PRIVATE_IP_MASK=`echo $PRIVATE_IP/$PRIVATE_PREFIX`
465
		PRIVATE_IP_MASK=`echo $PRIVATE_IP/$PRIVATE_PREFIX`
463
	fi	
466
	fi	
464
	private_ip_ending=`echo $PRIVATE_IP | cut -d"." -f4`						# last octet of LAN address
467
	private_ip_ending=`echo $PRIVATE_IP | cut -d"." -f4`						# last octet of LAN address
465
	PRIVATE_SECOND_IP=`echo $PRIVATE_IP | cut -d"." -f1-3`"."`expr $private_ip_ending + 1`		# second network address (ex.: 192.168.182.2)
468
	PRIVATE_SECOND_IP=`echo $PRIVATE_IP | cut -d"." -f1-3`"."`expr $private_ip_ending + 1`		# second network address (ex.: 192.168.182.2)
466
	PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX						# ie.: 192.168.182.0/24
469
	PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX						# ie.: 192.168.182.0/24
467
	classe=$((PRIVATE_PREFIX/8))									# ie.: 2=classe B, 3=classe C
470
	classe=$((PRIVATE_PREFIX/8))									# ie.: 2=classe B, 3=classe C
468
	PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`.				# compatibility with hosts.allow et hosts.deny (ie.: 192.168.182.)
471
	PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`.				# compatibility with hosts.allow et hosts.deny (ie.: 192.168.182.)
469
	PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2`			# private network broadcast (ie.: 192.168.182.255)
472
	PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2`			# private network broadcast (ie.: 192.168.182.255)
470
	private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f4`				# last octet of LAN broadcast
473
	private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f4`				# last octet of LAN broadcast
471
	PRIVATE_FIRST_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`	# First network address (ex.: 192.168.182.1)
474
	PRIVATE_FIRST_IP=`echo $PRIVATE_NETWORK | cut -d"." -f1-3`"."`expr $private_network_ending + 1`	# First network address (ex.: 192.168.182.1)
472
	PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1`	# last network address (ex.: 192.168.182.254)
475
	PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1`	# last network address (ex.: 192.168.182.254)
473
	PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'` 	# MAC address of INTIF
476
	PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'` 	# MAC address of INTIF
474
# Define Internet parameters
477
# Define Internet parameters
475
	DNS1=`grep ^nameserver /etc/resolv.conf|awk -F" " '{print $2}'|head -n 1`				# 1st DNS server
478
	DNS1=`grep ^nameserver /etc/resolv.conf|awk -F" " '{print $2}'|head -n 1`				# 1st DNS server
476
	nb_dns=`grep ^nameserver /etc/resolv.conf|wc -l`
479
	nb_dns=`grep ^nameserver /etc/resolv.conf|wc -l`
477
	if [ $nb_dns == 2 ]
480
	if [ $nb_dns == 2 ]
478
		then
481
		then
479
		DNS2=`grep ^nameserver /etc/resolv.conf|cut -d" " -f2|tail -n 1`			# 2nd DNS server (if exist)
482
		DNS2=`grep ^nameserver /etc/resolv.conf|cut -d" " -f2|tail -n 1`			# 2nd DNS server (if exist)
480
	fi
483
	fi
481
	DNS1=${DNS1:=208.67.220.220}
484
	DNS1=${DNS1:=208.67.220.220}
482
	DNS2=${DNS2:=208.67.222.222}
485
	DNS2=${DNS2:=208.67.222.222}
483
	PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
486
	PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
484
	PUBLIC_PREFIX=`/bin/ipcalc -p $PUBLIC_IP $PUBLIC_NETMASK|cut -d"=" -f2`
487
	PUBLIC_PREFIX=`/bin/ipcalc -p $PUBLIC_IP $PUBLIC_NETMASK|cut -d"=" -f2`
485
	PUBLIC_NETWORK=`/bin/ipcalc -n $PUBLIC_IP/$PUBLIC_PREFIX|cut -d"=" -f2`
488
	PUBLIC_NETWORK=`/bin/ipcalc -n $PUBLIC_IP/$PUBLIC_PREFIX|cut -d"=" -f2`
486
# Wrtie the conf file
489
# Wrtie the conf file
487
	echo "EXTIF=$EXTIF" >> $CONF_FILE
490
	echo "EXTIF=$EXTIF" >> $CONF_FILE
488
	echo "INTIF=$INTIF" >> $CONF_FILE
491
	echo "INTIF=$INTIF" >> $CONF_FILE
489
	IP_SETTING=`grep BOOTPROTO /etc/sysconfig/network-scripts/ifcfg-$EXTIF|cut -d"=" -f2`		# IP setting (static or dynamic)
492
	IP_SETTING=`grep BOOTPROTO /etc/sysconfig/network-scripts/ifcfg-$EXTIF|cut -d"=" -f2`		# IP setting (static or dynamic)
490
	if [ $IP_SETTING == "dhcp" ]
493
	if [ $IP_SETTING == "dhcp" ]
491
		then
494
		then
492
		echo "PUBLIC_IP=dhcp" >> $CONF_FILE
495
		echo "PUBLIC_IP=dhcp" >> $CONF_FILE
493
		echo "GW=dhcp" >> $CONF_FILE
496
		echo "GW=dhcp" >> $CONF_FILE
494
	else
497
	else
495
		echo "PUBLIC_IP=$PUBLIC_IP/$PUBLIC_PREFIX" >> $CONF_FILE
498
		echo "PUBLIC_IP=$PUBLIC_IP/$PUBLIC_PREFIX" >> $CONF_FILE
496
		echo "GW=$PUBLIC_GATEWAY" >> $CONF_FILE
499
		echo "GW=$PUBLIC_GATEWAY" >> $CONF_FILE
497
	fi
500
	fi
498
	echo "DNS1=$DNS1" >> $CONF_FILE
501
	echo "DNS1=$DNS1" >> $CONF_FILE
499
	echo "DNS2=$DNS2" >> $CONF_FILE
502
	echo "DNS2=$DNS2" >> $CONF_FILE
500
	echo "PUBLIC_MTU=$MTU" >> $CONF_FILE
503
	echo "PUBLIC_MTU=$MTU" >> $CONF_FILE
501
	echo "PRIVATE_IP=$PRIVATE_IP_MASK" >> $CONF_FILE
504
	echo "PRIVATE_IP=$PRIVATE_IP_MASK" >> $CONF_FILE
502
	echo "DHCP=on" >> $CONF_FILE
505
	echo "DHCP=on" >> $CONF_FILE
503
	echo "EXT_DHCP_IP=none" >> $CONF_FILE
506
	echo "EXT_DHCP_IP=none" >> $CONF_FILE
504
	echo "RELAY_DHCP_IP=none" >> $CONF_FILE
507
	echo "RELAY_DHCP_IP=none" >> $CONF_FILE
505
	echo "RELAY_DHCP_PORT=none" >> $CONF_FILE
508
	echo "RELAY_DHCP_PORT=none" >> $CONF_FILE
506
	echo "PROTOCOLS_FILTERING=off" >> $CONF_FILE
509
	echo "PROTOCOLS_FILTERING=off" >> $CONF_FILE
507
	echo "INT_DNS_DOMAIN=none" >> $CONF_FILE
510
	echo "INT_DNS_DOMAIN=none" >> $CONF_FILE
508
	echo "INT_DNS_IP=none" >> $CONF_FILE
511
	echo "INT_DNS_IP=none" >> $CONF_FILE
509
	echo "INT_DNS_ACTIVE=off" >> $CONF_FILE
512
	echo "INT_DNS_ACTIVE=off" >> $CONF_FILE
510
# network default
513
# network default
511
	[ -e /etc/sysconfig/network.default ] || cp /etc/sysconfig/network /etc/sysconfig/network.default
514
	[ -e /etc/sysconfig/network.default ] || cp /etc/sysconfig/network /etc/sysconfig/network.default
512
	cat <<EOF > /etc/sysconfig/network
515
	cat <<EOF > /etc/sysconfig/network
513
NETWORKING=yes
516
NETWORKING=yes
514
HOSTNAME="$HOSTNAME.$DOMAIN"
517
HOSTNAME="$HOSTNAME.$DOMAIN"
515
FORWARD_IPV4=true
518
FORWARD_IPV4=true
516
EOF
519
EOF
517
# /etc/hosts config
520
# /etc/hosts config
518
	[ -e /etc/hosts.default ] || cp /etc/hosts /etc/hosts.default
521
	[ -e /etc/hosts.default ] || cp /etc/hosts /etc/hosts.default
519
	cat <<EOF > /etc/hosts
522
	cat <<EOF > /etc/hosts
520
127.0.0.1	localhost
523
127.0.0.1	localhost
521
$PRIVATE_IP	$HOSTNAME.$DOMAIN $HOSTNAME $ORGANISME.$DOMAIN $ORGANISME
524
$PRIVATE_IP	$HOSTNAME.$DOMAIN $HOSTNAME $ORGANISME.$DOMAIN $ORGANISME
522
EOF
525
EOF
523
# EXTIF (Internet) config
526
# EXTIF (Internet) config
524
	[ -e /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF ] || cp /etc/sysconfig/network-scripts/ifcfg-$EXTIF /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF
527
	[ -e /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF ] || cp /etc/sysconfig/network-scripts/ifcfg-$EXTIF /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF
525
	if [ $IP_SETTING == "dhcp" ]
528
	if [ $IP_SETTING == "dhcp" ]
526
		then
529
		then
527
		cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
530
		cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
528
DEVICE=$EXTIF
531
DEVICE=$EXTIF
529
BOOTPROTO=dhcp
532
BOOTPROTO=dhcp
530
DNS1=127.0.0.1
533
DNS1=127.0.0.1
531
PEERDNS=no
534
PEERDNS=no
532
RESOLV_MODS=yes
535
RESOLV_MODS=yes
533
ONBOOT=yes
536
ONBOOT=yes
534
NOZEROCONF=yes
537
NOZEROCONF=yes
535
METRIC=10
538
METRIC=10
536
MII_NOT_SUPPORTED=yes
539
MII_NOT_SUPPORTED=yes
537
IPV6INIT=no
540
IPV6INIT=no
538
IPV6TO4INIT=no
541
IPV6TO4INIT=no
539
ACCOUNTING=no
542
ACCOUNTING=no
540
USERCTL=no
543
USERCTL=no
541
MTU=$MTU
544
MTU=$MTU
542
EOF
545
EOF
543
		else	
546
		else	
544
		cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
547
		cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
545
DEVICE=$EXTIF
548
DEVICE=$EXTIF
546
BOOTPROTO=static
549
BOOTPROTO=static
547
IPADDR=$PUBLIC_IP
550
IPADDR=$PUBLIC_IP
548
NETMASK=$PUBLIC_NETMASK
551
NETMASK=$PUBLIC_NETMASK
549
GATEWAY=$PUBLIC_GATEWAY
552
GATEWAY=$PUBLIC_GATEWAY
550
DNS1=127.0.0.1
553
DNS1=127.0.0.1
551
RESOLV_MODS=yes
554
RESOLV_MODS=yes
552
ONBOOT=yes
555
ONBOOT=yes
553
METRIC=10
556
METRIC=10
554
NOZEROCONF=yes
557
NOZEROCONF=yes
555
MII_NOT_SUPPORTED=yes
558
MII_NOT_SUPPORTED=yes
556
IPV6INIT=no
559
IPV6INIT=no
557
IPV6TO4INIT=no
560
IPV6TO4INIT=no
558
ACCOUNTING=no
561
ACCOUNTING=no
559
USERCTL=no
562
USERCTL=no
560
MTU=$MTU
563
MTU=$MTU
561
EOF
564
EOF
562
	fi
565
	fi
563
# Config INTIF (consultation LAN) in normal mode
566
# Config INTIF (consultation LAN) in normal mode
564
	cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$INTIF
567
	cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$INTIF
565
DEVICE=$INTIF
568
DEVICE=$INTIF
566
BOOTPROTO=static
569
BOOTPROTO=static
567
ONBOOT=yes
570
ONBOOT=yes
568
NOZEROCONF=yes
571
NOZEROCONF=yes
569
MII_NOT_SUPPORTED=yes
572
MII_NOT_SUPPORTED=yes
570
IPV6INIT=no
573
IPV6INIT=no
571
IPV6TO4INIT=no
574
IPV6TO4INIT=no
572
ACCOUNTING=no
575
ACCOUNTING=no
573
USERCTL=no
576
USERCTL=no
574
EOF
577
EOF
575
	cp -f /etc/sysconfig/network-scripts/ifcfg-$INTIF /etc/sysconfig/network-scripts/default-ifcfg-$INTIF
578
	cp -f /etc/sysconfig/network-scripts/ifcfg-$INTIF /etc/sysconfig/network-scripts/default-ifcfg-$INTIF
576
# Config of INTIF in bypass mode (see "alcasar-bypass.sh")
579
# Config of INTIF in bypass mode (see "alcasar-bypass.sh")
577
	cat <<EOF > /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
580
	cat <<EOF > /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
578
DEVICE=$INTIF
581
DEVICE=$INTIF
579
BOOTPROTO=static
582
BOOTPROTO=static
580
IPADDR=$PRIVATE_IP
583
IPADDR=$PRIVATE_IP
581
NETMASK=$PRIVATE_NETMASK
584
NETMASK=$PRIVATE_NETMASK
582
ONBOOT=yes
585
ONBOOT=yes
583
METRIC=10
586
METRIC=10
584
NOZEROCONF=yes
587
NOZEROCONF=yes
585
MII_NOT_SUPPORTED=yes
588
MII_NOT_SUPPORTED=yes
586
IPV6INIT=no
589
IPV6INIT=no
587
IPV6TO4INIT=no
590
IPV6TO4INIT=no
588
ACCOUNTING=no
591
ACCOUNTING=no
589
USERCTL=no
592
USERCTL=no
590
EOF
593
EOF
591
# Mise à l'heure du serveur
594
# Mise à l'heure du serveur
592
	[ -e /etc/ntp/step-tickers.default ] || cp /etc/ntp/step-tickers /etc/ntp/step-tickers.default
595
	[ -e /etc/ntp/step-tickers.default ] || cp /etc/ntp/step-tickers /etc/ntp/step-tickers.default
593
	cat <<EOF > /etc/ntp/step-tickers
596
	cat <<EOF > /etc/ntp/step-tickers
594
0.fr.pool.ntp.org	# adapt to your country
597
0.fr.pool.ntp.org	# adapt to your country
595
1.fr.pool.ntp.org
598
1.fr.pool.ntp.org
596
2.fr.pool.ntp.org
599
2.fr.pool.ntp.org
597
EOF
600
EOF
598
# Configuration du serveur de temps (sur lui même)
601
# Configuration du serveur de temps (sur lui même)
599
	[ -e /etc/ntp.conf.default ] || cp /etc/ntp.conf /etc/ntp.conf.default
602
	[ -e /etc/ntp.conf.default ] || cp /etc/ntp.conf /etc/ntp.conf.default
600
	cat <<EOF > /etc/ntp.conf
603
	cat <<EOF > /etc/ntp.conf
601
server 0.fr.pool.ntp.org	# adapt to your country
604
server 0.fr.pool.ntp.org	# adapt to your country
602
server 1.fr.pool.ntp.org
605
server 1.fr.pool.ntp.org
603
server 2.fr.pool.ntp.org
606
server 2.fr.pool.ntp.org
604
server 127.127.1.0   		# local clock si NTP internet indisponible ...
607
server 127.127.1.0   		# local clock si NTP internet indisponible ...
605
fudge 127.127.1.0 stratum 10
608
fudge 127.127.1.0 stratum 10
606
restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap
609
restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap
607
restrict 127.0.0.1
610
restrict 127.0.0.1
608
driftfile /var/lib/ntp/drift
611
driftfile /var/lib/ntp/drift
609
logfile /var/log/ntp.log
612
logfile /var/log/ntp.log
610
disable monitor
613
disable monitor
611
EOF
614
EOF
612
 
615
 
613
	chown -R ntp:ntp /var/lib/ntp
616
	chown -R ntp:ntp /var/lib/ntp
614
# Renseignement des fichiers hosts.allow et hosts.deny
617
# Renseignement des fichiers hosts.allow et hosts.deny
615
	[ -e /etc/hosts.allow.default ]  || cp /etc/hosts.allow /etc/hosts.allow.default
618
	[ -e /etc/hosts.allow.default ]  || cp /etc/hosts.allow /etc/hosts.allow.default
616
	cat <<EOF > /etc/hosts.allow
619
	cat <<EOF > /etc/hosts.allow
617
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
620
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
618
sshd: ALL
621
sshd: ALL
619
ntpd: $PRIVATE_NETWORK_SHORT
622
ntpd: $PRIVATE_NETWORK_SHORT
620
EOF
623
EOF
621
	[ -e /etc/host.deny.default ]  || cp /etc/hosts.deny /etc/hosts.deny.default
624
	[ -e /etc/host.deny.default ]  || cp /etc/hosts.deny /etc/hosts.deny.default
622
	cat <<EOF > /etc/hosts.deny
625
	cat <<EOF > /etc/hosts.deny
623
ALL: ALL: spawn ( /bin/echo "service %d demandé par %c" | /bin/mail -s "Tentative d'accès au service %d par %c REFUSE !!!" security ) &
626
ALL: ALL: spawn ( /bin/echo "service %d demandé par %c" | /bin/mail -s "Tentative d'accès au service %d par %c REFUSE !!!" security ) &
624
EOF
627
EOF
625
	chmod o+r $DIR_DEST_BIN/alcasar-iptables.sh #lecture possible pour apache (interface php du filtrage réseau)
628
	chmod o+r $DIR_DEST_BIN/alcasar-iptables.sh #lecture possible pour apache (interface php du filtrage réseau)
626
# create the ip_blocked file with a first line (LAN between ALCASAR and the Internet GW)
629
# create the ip_blocked file with a first line (LAN between ALCASAR and the Internet GW)
627
	echo "#$PUBLIC_NETWORK/$PUBLIC_PREFIX LAN-ALCASAR-BOX" > $DIR_DEST_ETC/alcasar-ip-blocked
630
	echo "#$PUBLIC_NETWORK/$PUBLIC_PREFIX LAN-ALCASAR-BOX" > $DIR_DEST_ETC/alcasar-ip-blocked
628
# load conntrack ftp module
631
# load conntrack ftp module
629
	[ -e /etc/modprobe.preload.default ] || cp /etc/modprobe.preload /etc/modprobe.preload.default
632
	[ -e /etc/modprobe.preload.default ] || cp /etc/modprobe.preload /etc/modprobe.preload.default
630
	echo "ip_conntrack_ftp" >>  /etc/modprobe.preload
633
	echo "ip_conntrack_ftp" >>  /etc/modprobe.preload
631
# load ipt_NETFLOW module
634
# load ipt_NETFLOW module
632
	echo "ipt_NETFLOW" >>  /etc/modprobe.preload
635
	echo "ipt_NETFLOW" >>  /etc/modprobe.preload
633
# modify iptables service files (start with "alcasar-iptables.sh" and stop with flush)
636
# modify iptables service files (start with "alcasar-iptables.sh" and stop with flush)
634
[ -e /lib/systemd/system/iptables.service.default ] || cp /lib/systemd/system/iptables.service /lib/systemd/system/iptables.service.default
637
[ -e /lib/systemd/system/iptables.service.default ] || cp /lib/systemd/system/iptables.service /lib/systemd/system/iptables.service.default
635
$SED 's/ExecStart=\/usr\/libexec\/iptables.init start/ExecStart=\/usr\/local\/bin\/alcasar-iptables.sh/' /lib/systemd/system/iptables.service
638
$SED 's/ExecStart=\/usr\/libexec\/iptables.init start/ExecStart=\/usr\/local\/bin\/alcasar-iptables.sh/' /lib/systemd/system/iptables.service
636
[ -e /usr/libexec/iptables.init.default ] || cp /usr/libexec/iptables.init /usr/libexec/iptables.init.default
639
[ -e /usr/libexec/iptables.init.default ] || cp /usr/libexec/iptables.init /usr/libexec/iptables.init.default
637
$SED "s?\[ -f \$IPTABLES_CONFIG \] .*?#&?" /usr/libexec/iptables.init # comment the test in order the stop function run (fluxh all rules & policies)
640
$SED "s?\[ -f \$IPTABLES_CONFIG \] .*?#&?" /usr/libexec/iptables.init # comment the test in order the stop function run (fluxh all rules & policies)
638
# 
641
# 
639
# the script "$DIR_DEST_BIN/alcasar-iptables.sh" is launched at the end in order to allow update via ssh
642
# the script "$DIR_DEST_BIN/alcasar-iptables.sh" is launched at the end in order to allow update via ssh
640
} # End of network ()
643
} # End of network ()
641
 
644
 
642
##################################################################
645
##################################################################
643
##			Function "ACC"				##
646
##			Function "ACC"				##
644
## - installation du centre de gestion (ALCASAR Control Center)	##
647
## - installation du centre de gestion (ALCASAR Control Center)	##
645
## - configuration du serveur web (Apache)			##
648
## - configuration du serveur web (Apache)			##
646
## - définition du 1er comptes de gestion 			##
649
## - définition du 1er comptes de gestion 			##
647
## - sécurisation des accès					##
650
## - sécurisation des accès					##
648
##################################################################
651
##################################################################
649
ACC ()
652
ACC ()
650
{
653
{
651
	[ -d $DIR_WEB ] && rm -rf $DIR_WEB
654
	[ -d $DIR_WEB ] && rm -rf $DIR_WEB
652
	mkdir $DIR_WEB
655
	mkdir $DIR_WEB
653
# Copie et configuration des fichiers du centre de gestion
656
# Copie et configuration des fichiers du centre de gestion
654
	cp -rf $DIR_INSTALL/web/* $DIR_WEB/
657
	cp -rf $DIR_INSTALL/web/* $DIR_WEB/
655
	echo "$VERSION" > $DIR_WEB/VERSION
658
	echo "$VERSION" > $DIR_WEB/VERSION
656
	$SED "s?99/99/9999?$DATE_SHORT?g" $DIR_ACC/menu.php
659
	$SED "s?99/99/9999?$DATE_SHORT?g" $DIR_ACC/menu.php
657
	$SED "s?\$DB_RADIUS = .*?\$DB_RADIUS = \"$DB_RADIUS\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
660
	$SED "s?\$DB_RADIUS = .*?\$DB_RADIUS = \"$DB_RADIUS\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
658
	$SED "s?\$DB_USER = .*?\$DB_USER = \"$DB_USER\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
661
	$SED "s?\$DB_USER = .*?\$DB_USER = \"$DB_USER\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
659
	$SED "s?\$radiuspwd = .*?\$radiuspwd = \"$radiuspwd\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
662
	$SED "s?\$radiuspwd = .*?\$radiuspwd = \"$radiuspwd\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
660
	chmod 640 $DIR_ACC/phpsysinfo/includes/xml/portail.php
663
	chmod 640 $DIR_ACC/phpsysinfo/includes/xml/portail.php
661
	chown -R apache:apache $DIR_WEB/*
664
	chown -R apache:apache $DIR_WEB/*
662
# create the backup structure :
665
# create the backup structure :
663
# - base = users database
666
# - base = users database
664
# - archive = tarball of "base + http firewall + netflow"
667
# - archive = tarball of "base + http firewall + netflow"
665
# - security = watchdog disconnection)
668
# - security = watchdog disconnection)
666
	for i in base archive security;
669
	for i in base archive security;
667
	do
670
	do
668
		[ -d $DIR_SAVE/$i ] || mkdir -p $DIR_SAVE/$i
671
		[ -d $DIR_SAVE/$i ] || mkdir -p $DIR_SAVE/$i
669
	done
672
	done
670
	chown -R root:apache $DIR_SAVE
673
	chown -R root:apache $DIR_SAVE
671
# Configuration et sécurisation php
674
# Configuration et sécurisation php
672
	[ -e /etc/php.ini.default ] || cp /etc/php.ini /etc/php.ini.default
675
	[ -e /etc/php.ini.default ] || cp /etc/php.ini /etc/php.ini.default
673
	timezone=`cat /etc/sysconfig/clock|grep ZONE|cut -d"=" -f2`
676
	timezone=`cat /etc/sysconfig/clock|grep ZONE|cut -d"=" -f2`
674
	$SED "s?^;date.timezone =.*?date.timezone = $timezone?g" /etc/php.ini
677
	$SED "s?^;date.timezone =.*?date.timezone = $timezone?g" /etc/php.ini
675
	$SED "s?^upload_max_filesize.*?upload_max_filesize = 100M?g" /etc/php.ini
678
	$SED "s?^upload_max_filesize.*?upload_max_filesize = 100M?g" /etc/php.ini
676
	$SED "s?^post_max_size.*?post_max_size = 100M?g" /etc/php.ini
679
	$SED "s?^post_max_size.*?post_max_size = 100M?g" /etc/php.ini
677
	$SED "s?^html_errors.*?html_errors = Off?g" /etc/php.ini
680
	$SED "s?^html_errors.*?html_errors = Off?g" /etc/php.ini
678
	$SED "s?^expose_php.*?expose_php = Off?g" /etc/php.ini
681
	$SED "s?^expose_php.*?expose_php = Off?g" /etc/php.ini
679
# Configuration et sécurisation Apache
682
# Configuration et sécurisation Apache
680
	rm -rf /var/www/cgi-bin/* /var/www/perl/* /var/www/icons/README* /var/www/error/README*
683
	rm -rf /var/www/cgi-bin/* /var/www/perl/* /var/www/icons/README* /var/www/error/README*
681
	[ -e /etc/httpd/conf/httpd.conf.default ] || cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.default
684
	[ -e /etc/httpd/conf/httpd.conf.default ] || cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.default
682
	$SED "s?^#ServerName.*?ServerName $HOSTNAME.$DOMAIN?g" /etc/httpd/conf/httpd.conf
685
	$SED "s?^#ServerName.*?ServerName $HOSTNAME.$DOMAIN?g" /etc/httpd/conf/httpd.conf
683
	$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
686
	$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
684
	$SED "s?Options Indexes.*?Options -Indexes?g" /etc/httpd/conf/httpd.conf
687
	$SED "s?Options Indexes.*?Options -Indexes?g" /etc/httpd/conf/httpd.conf
685
	echo "ServerTokens Prod" >> /etc/httpd/conf/httpd.conf
688
	echo "ServerTokens Prod" >> /etc/httpd/conf/httpd.conf
686
	echo "ServerSignature Off" >> /etc/httpd/conf/httpd.conf
689
	echo "ServerSignature Off" >> /etc/httpd/conf/httpd.conf
687
	[ -e /etc/httpd/conf/modules.d/00_base.conf.default ] || cp /etc/httpd/conf/modules.d/00_base.conf /etc/httpd/conf/modules.d/00_base.conf.default
690
	[ -e /etc/httpd/conf/modules.d/00_base.conf.default ] || cp /etc/httpd/conf/modules.d/00_base.conf /etc/httpd/conf/modules.d/00_base.conf.default
688
	$SED "s?^LoadModule authn_anon_module.*?#LoadModule authn_anon_module modules/mod_authn_anon.so?g" /etc/httpd/conf/modules.d/00_base.conf
691
	$SED "s?^LoadModule authn_anon_module.*?#LoadModule authn_anon_module modules/mod_authn_anon.so?g" /etc/httpd/conf/modules.d/00_base.conf
689
	$SED "s?^LoadModule status_module.*?#LoadModule status_module modules/mod_status.so?g" /etc/httpd/conf/modules.d/00_base.conf
692
	$SED "s?^LoadModule status_module.*?#LoadModule status_module modules/mod_status.so?g" /etc/httpd/conf/modules.d/00_base.conf
690
	$SED "s?^LoadModule info_module.*?#LoadModule info_module modules/mod_info.so?g" /etc/httpd/conf/modules.d/00_base.conf
693
	$SED "s?^LoadModule info_module.*?#LoadModule info_module modules/mod_info.so?g" /etc/httpd/conf/modules.d/00_base.conf
691
	$SED "s?^LoadModule imagemap_module.*?#LoadModule imagemap_module modules/mod_imagemap.so?g" /etc/httpd/conf/modules.d/00_base.conf
694
	$SED "s?^LoadModule imagemap_module.*?#LoadModule imagemap_module modules/mod_imagemap.so?g" /etc/httpd/conf/modules.d/00_base.conf
692
	$SED "s?^LoadModule rewrite_module.*?#LoadModule rewrite_module modules/mod_rewrite.so?g" /etc/httpd/conf/modules.d/00_base.conf
695
	$SED "s?^LoadModule rewrite_module.*?#LoadModule rewrite_module modules/mod_rewrite.so?g" /etc/httpd/conf/modules.d/00_base.conf
693
	$SED "s?^LoadModule speling_module.*?#LoadModule speling_module modules/mod_speling.so?g" /etc/httpd/conf/modules.d/00_base.conf
696
	$SED "s?^LoadModule speling_module.*?#LoadModule speling_module modules/mod_speling.so?g" /etc/httpd/conf/modules.d/00_base.conf
694
	[ -e /etc/httpd/conf/conf.d/ssl.conf.default ] || cp /etc/httpd/conf/conf.d/ssl.conf /etc/httpd/conf/conf.d/ssl.conf.default
697
	[ -e /etc/httpd/conf/conf.d/ssl.conf.default ] || cp /etc/httpd/conf/conf.d/ssl.conf /etc/httpd/conf/conf.d/ssl.conf.default
695
	$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" /etc/httpd/conf/conf.d/ssl.conf # Listen only on INTIF
698
	$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" /etc/httpd/conf/conf.d/ssl.conf # Listen only on INTIF
696
	$SED "s?^SSLCipherSuite.*?SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!DSS?g" /etc/httpd/conf/conf.d/ssl.conf  #DSS is no more secured
699
	$SED "s?^SSLCipherSuite.*?SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!DSS?g" /etc/httpd/conf/conf.d/ssl.conf  #DSS is no more secured
697
# Error page management
700
# Error page management
698
[ -e /etc/httpd/conf/conf.d/multilang-errordoc.conf.default ] || cp /etc/httpd/conf/conf.d/multilang-errordoc.conf /etc/httpd/conf/conf.d/multilang-errordoc.conf.default
701
[ -e /etc/httpd/conf/conf.d/multilang-errordoc.conf.default ] || cp /etc/httpd/conf/conf.d/multilang-errordoc.conf /etc/httpd/conf/conf.d/multilang-errordoc.conf.default
699
cat <<EOF > /etc/httpd/conf/conf.d/multilang-errordoc.conf
702
cat <<EOF > /etc/httpd/conf/conf.d/multilang-errordoc.conf
700
Alias /error/ "/var/www/html/"
703
Alias /error/ "/var/www/html/"
701
<Directory "/usr/share/httpd/error">
704
<Directory "/usr/share/httpd/error">
702
    AllowOverride None
705
    AllowOverride None
703
    Options IncludesNoExec
706
    Options IncludesNoExec
704
    AddOutputFilter Includes html
707
    AddOutputFilter Includes html
705
    AddHandler type-map var
708
    AddHandler type-map var
706
    Require all granted
709
    Require all granted
707
    LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
710
    LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
708
    ForceLanguagePriority Prefer Fallback
711
    ForceLanguagePriority Prefer Fallback
709
</Directory>
712
</Directory>
710
ErrorDocument 400 /error/error.php?error=400
713
ErrorDocument 400 /error/error.php?error=400
711
ErrorDocument 401 /error/error.php?error=401
714
ErrorDocument 401 /error/error.php?error=401
712
ErrorDocument 403 /error/error.php?error=403
715
ErrorDocument 403 /error/error.php?error=403
713
ErrorDocument 404 /error/error.php?error=404
716
ErrorDocument 404 /error/error.php?error=404
714
ErrorDocument 405 /error/error.php?error=405
717
ErrorDocument 405 /error/error.php?error=405
715
ErrorDocument 408 /error/error.php?error=408
718
ErrorDocument 408 /error/error.php?error=408
716
ErrorDocument 410 /error/error.php?error=410
719
ErrorDocument 410 /error/error.php?error=410
717
ErrorDocument 411 /error/error.php?error=411
720
ErrorDocument 411 /error/error.php?error=411
718
ErrorDocument 412 /error/error.php?error=412
721
ErrorDocument 412 /error/error.php?error=412
719
ErrorDocument 413 /error/error.php?error=413
722
ErrorDocument 413 /error/error.php?error=413
720
ErrorDocument 414 /error/error.php?error=414
723
ErrorDocument 414 /error/error.php?error=414
721
ErrorDocument 415 /error/error.php?error=415
724
ErrorDocument 415 /error/error.php?error=415
722
ErrorDocument 500 /error/error.php?error=500
725
ErrorDocument 500 /error/error.php?error=500
723
ErrorDocument 501 /error/error.php?error=501
726
ErrorDocument 501 /error/error.php?error=501
724
ErrorDocument 502 /error/error.php?error=502
727
ErrorDocument 502 /error/error.php?error=502
725
ErrorDocument 503 /error/error.php?error=503
728
ErrorDocument 503 /error/error.php?error=503
726
ErrorDocument 506 /error/error.php?error=506
729
ErrorDocument 506 /error/error.php?error=506
727
EOF
730
EOF
728
	[ -e /usr/share/httpd/error/include/top.html.default ] || cp /usr/share/httpd/error/include/top.html /usr/share/httpd/error/include/top.html.default
731
	[ -e /usr/share/httpd/error/include/top.html.default ] || cp /usr/share/httpd/error/include/top.html /usr/share/httpd/error/include/top.html.default
729
	$SED "s?background-color.*?background-color: #EFEFEF; }?g" /usr/share/httpd/error/include/top.html
732
	$SED "s?background-color.*?background-color: #EFEFEF; }?g" /usr/share/httpd/error/include/top.html
730
	[ -e /usr/share/httpd/error/include/bottom.html.default ] || cp /usr/share/httpd/error/include/bottom.html /usr/share/httpd/error/include/bottom.html.default
733
	[ -e /usr/share/httpd/error/include/bottom.html.default ] || cp /usr/share/httpd/error/include/bottom.html /usr/share/httpd/error/include/bottom.html.default
731
	cat <<EOF > /usr/share/httpd/error/include/bottom.html
734
	cat <<EOF > /usr/share/httpd/error/include/bottom.html
732
</body>
735
</body>
733
</html>
736
</html>
734
EOF
737
EOF
735
# Définition du premier compte lié au profil 'admin'
738
# Définition du premier compte lié au profil 'admin'
736
	if [ "$mode" = "install" ]
739
	if [ "$mode" = "install" ]
737
	then
740
	then
738
		header_install
741
		header_install
739
		admin_portal=!
742
		admin_portal=!
740
		PTN='^[a-zA-Z0-9-]*$'
743
		PTN='^[a-zA-Z0-9-]*$'
741
		until [[ $(expr $admin_portal : $PTN) -gt 0 ]]
744
		until [[ $(expr $admin_portal : $PTN) -gt 0 ]]
742
                	do
745
                	do
743
			header_install
746
			header_install
744
			if [ $Lang == "fr" ]
747
			if [ $Lang == "fr" ]
745
			then 
748
			then 
746
				echo ""
749
				echo ""
747
				echo "Définissez un premier compte d'administration du portail :"
750
				echo "Définissez un premier compte d'administration du portail :"
748
				echo
751
				echo
749
				echo -n "Nom : "
752
				echo -n "Nom : "
750
			else
753
			else
751
				echo ""
754
				echo ""
752
				echo "Define the first account allow to administrate the portal :"
755
				echo "Define the first account allow to administrate the portal :"
753
				echo
756
				echo
754
				echo -n "Account : "
757
				echo -n "Account : "
755
			fi
758
			fi
756
			read admin_portal
759
			read admin_portal
757
			if [ "$admin_portal" == "" ]
760
			if [ "$admin_portal" == "" ]
758
				then
761
				then
759
				admin_portal=!
762
				admin_portal=!
760
			fi
763
			fi
761
			done
764
			done
762
# Creation of keys file for the admin account ("admin")
765
# Creation of keys file for the admin account ("admin")
763
		[ -d $DIR_DEST_ETC/digest ] && rm -rf $DIR_DEST_ETC/digest
766
		[ -d $DIR_DEST_ETC/digest ] && rm -rf $DIR_DEST_ETC/digest
764
		mkdir -p $DIR_DEST_ETC/digest
767
		mkdir -p $DIR_DEST_ETC/digest
765
		chmod 755 $DIR_DEST_ETC/digest
768
		chmod 755 $DIR_DEST_ETC/digest
766
		until [ -s $DIR_DEST_ETC/digest/key_admin ]
769
		until [ -s $DIR_DEST_ETC/digest/key_admin ]
767
			do
770
			do
768
				/usr/bin/htdigest -c $DIR_DEST_ETC/digest/key_admin $HOSTNAME.$DOMAIN $admin_portal
771
				/usr/bin/htdigest -c $DIR_DEST_ETC/digest/key_admin $HOSTNAME.$DOMAIN $admin_portal
769
			done
772
			done
770
		$DIR_DEST_SBIN/alcasar-profil.sh --list
773
		$DIR_DEST_SBIN/alcasar-profil.sh --list
771
	fi
774
	fi
772
# synchronisation horaire
775
# synchronisation horaire
773
	ntpd -q -g &
776
	ntpd -q -g &
774
# Sécurisation du centre
777
# Sécurisation du centre
775
	rm -f /etc/httpd/conf/webapps.d/alcasar*
778
	rm -f /etc/httpd/conf/webapps.d/alcasar*
776
	cat <<EOF > /etc/httpd/conf/webapps.d/alcasar.conf
779
	cat <<EOF > /etc/httpd/conf/webapps.d/alcasar.conf
777
<Directory $DIR_ACC>
780
<Directory $DIR_ACC>
778
	SSLRequireSSL
781
	SSLRequireSSL
779
	AllowOverride None
782
	AllowOverride None
780
	Order deny,allow
783
	Order deny,allow
781
	Deny from all
784
	Deny from all
782
	Allow from 127.0.0.1
785
	Allow from 127.0.0.1
783
	Allow from $PRIVATE_NETWORK_MASK
786
	Allow from $PRIVATE_NETWORK_MASK
784
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
787
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
785
	require valid-user
788
	require valid-user
786
	AuthType digest
789
	AuthType digest
787
	AuthName $HOSTNAME.$DOMAIN
790
	AuthName $HOSTNAME.$DOMAIN
788
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
791
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
789
	AuthUserFile $DIR_DEST_ETC/digest/key_all
792
	AuthUserFile $DIR_DEST_ETC/digest/key_all
790
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
793
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
791
</Directory>
794
</Directory>
792
<Directory $DIR_ACC/admin>
795
<Directory $DIR_ACC/admin>
793
	SSLRequireSSL
796
	SSLRequireSSL
794
	AllowOverride None
797
	AllowOverride None
795
	Order deny,allow
798
	Order deny,allow
796
	Deny from all
799
	Deny from all
797
	Allow from 127.0.0.1
800
	Allow from 127.0.0.1
798
	Allow from $PRIVATE_NETWORK_MASK
801
	Allow from $PRIVATE_NETWORK_MASK
799
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
802
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
800
	require valid-user
803
	require valid-user
801
	AuthType digest
804
	AuthType digest
802
	AuthName $HOSTNAME.$DOMAIN
805
	AuthName $HOSTNAME.$DOMAIN
803
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
806
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
804
	AuthUserFile $DIR_DEST_ETC/digest/key_admin
807
	AuthUserFile $DIR_DEST_ETC/digest/key_admin
805
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
808
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
806
</Directory>
809
</Directory>
807
<Directory $DIR_ACC/manager>
810
<Directory $DIR_ACC/manager>
808
	SSLRequireSSL
811
	SSLRequireSSL
809
	AllowOverride None
812
	AllowOverride None
810
	Order deny,allow
813
	Order deny,allow
811
	Deny from all
814
	Deny from all
812
	Allow from 127.0.0.1
815
	Allow from 127.0.0.1
813
	Allow from $PRIVATE_NETWORK_MASK
816
	Allow from $PRIVATE_NETWORK_MASK
814
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
817
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
815
	require valid-user
818
	require valid-user
816
	AuthType digest
819
	AuthType digest
817
	AuthName $HOSTNAME.$DOMAIN
820
	AuthName $HOSTNAME.$DOMAIN
818
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
821
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
819
	AuthUserFile $DIR_DEST_ETC/digest/key_manager
822
	AuthUserFile $DIR_DEST_ETC/digest/key_manager
820
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
823
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
821
</Directory>
824
</Directory>
822
<Directory $DIR_ACC/backup>
825
<Directory $DIR_ACC/backup>
823
	SSLRequireSSL
826
	SSLRequireSSL
824
	AllowOverride None
827
	AllowOverride None
825
	Order deny,allow
828
	Order deny,allow
826
	Deny from all
829
	Deny from all
827
	Allow from 127.0.0.1
830
	Allow from 127.0.0.1
828
	Allow from $PRIVATE_NETWORK_MASK
831
	Allow from $PRIVATE_NETWORK_MASK
829
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
832
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
830
	require valid-user
833
	require valid-user
831
	AuthType digest
834
	AuthType digest
832
	AuthName $HOSTNAME.$DOMAIN
835
	AuthName $HOSTNAME.$DOMAIN
833
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
836
	BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
834
	AuthUserFile $DIR_DEST_ETC/digest/key_backup
837
	AuthUserFile $DIR_DEST_ETC/digest/key_backup
835
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
838
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
836
</Directory>
839
</Directory>
837
Alias /save/ "$DIR_SAVE/"
840
Alias /save/ "$DIR_SAVE/"
838
<Directory $DIR_SAVE>
841
<Directory $DIR_SAVE>
839
	SSLRequireSSL
842
	SSLRequireSSL
840
	Options Indexes
843
	Options Indexes
841
	Order deny,allow
844
	Order deny,allow
842
	Deny from all
845
	Deny from all
843
	Allow from 127.0.0.1
846
	Allow from 127.0.0.1
844
	Allow from $PRIVATE_NETWORK_MASK
847
	Allow from $PRIVATE_NETWORK_MASK
845
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
848
#	Allow from AA.BB.CC.DD/32	# Allow from specific @IP
846
	require valid-user
849
	require valid-user
847
	AuthType digest
850
	AuthType digest
848
	AuthName $HOSTNAME.$DOMAIN
851
	AuthName $HOSTNAME.$DOMAIN
849
	AuthUserFile $DIR_DEST_ETC/digest/key_backup
852
	AuthUserFile $DIR_DEST_ETC/digest/key_backup
850
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
853
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN/
851
</Directory>
854
</Directory>
852
EOF
855
EOF
853
# Launch after coova
856
# Launch after coova
854
$SED "s?^After=.*?After=network.target remote-fs.target nss-lookup.target chilli.service?g" /lib/systemd/system/httpd.service
857
$SED "s?^After=.*?After=network.target remote-fs.target nss-lookup.target chilli.service?g" /lib/systemd/system/httpd.service
855
} # End of ACC ()
858
} # End of ACC ()
856
 
859
 
857
##########################################################################################
860
##########################################################################################
858
##				Fonction "CA"						##
861
##				Fonction "CA"						##
859
## - Création d'une Autorité de Certification et du certificat serveur pour apache 	##
862
## - Création d'une Autorité de Certification et du certificat serveur pour apache 	##
860
##########################################################################################
863
##########################################################################################
861
CA ()
864
CA ()
862
{
865
{
863
	$DIR_DEST_BIN/alcasar-CA.sh
866
	$DIR_DEST_BIN/alcasar-CA.sh
864
	FIC_VIRTUAL_SSL=`find /etc/httpd/conf -type f -name *default_ssl_vhost.conf`
867
	FIC_VIRTUAL_SSL=`find /etc/httpd/conf -type f -name *default_ssl_vhost.conf`
865
	[ -e /etc/httpd/conf/vhosts-ssl.default ]  || cp $FIC_VIRTUAL_SSL /etc/httpd/conf/vhosts-ssl.default
868
	[ -e /etc/httpd/conf/vhosts-ssl.default ]  || cp $FIC_VIRTUAL_SSL /etc/httpd/conf/vhosts-ssl.default
866
	cat <<EOF > $FIC_VIRTUAL_SSL
869
	cat <<EOF > $FIC_VIRTUAL_SSL
867
# default SSL virtual host, used for all HTTPS requests that do not
870
# default SSL virtual host, used for all HTTPS requests that do not
868
# match a ServerName or ServerAlias in any <VirtualHost> block.
871
# match a ServerName or ServerAlias in any <VirtualHost> block.
869
 
872
 
870
<VirtualHost _default_:443>
873
<VirtualHost _default_:443>
871
# general configuration
874
# general configuration
872
    ServerAdmin root@localhost
875
    ServerAdmin root@localhost
873
    ServerName localhost
876
    ServerName localhost
874
 
877
 
875
# SSL configuration
878
# SSL configuration
876
    SSLEngine on
879
    SSLEngine on
877
    SSLCertificateFile /etc/pki/tls/certs/alcasar.crt
880
    SSLCertificateFile /etc/pki/tls/certs/alcasar.crt
878
    SSLCertificateKeyFile /etc/pki/tls/private/alcasar.key
881
    SSLCertificateKeyFile /etc/pki/tls/private/alcasar.key
879
    SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt
882
    SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt
880
    CustomLog logs/ssl_request_log \
883
    CustomLog logs/ssl_request_log \
881
	"%t %{SSL_PROTOCOL}x %{SSL_CIPHER}x [%h] \"%r\" %b"
884
	"%t %{SSL_PROTOCOL}x %{SSL_CIPHER}x [%h] \"%r\" %b"
882
    ErrorLog logs/ssl_error_log
885
    ErrorLog logs/ssl_error_log
883
    ErrorLogFormat "[%t] [%m:%l] [client %a] %M"
886
    ErrorLogFormat "[%t] [%m:%l] [client %a] %M"
884
</VirtualHost>
887
</VirtualHost>
885
EOF
888
EOF
886
 
889
 
887
	chown -R root:apache /etc/pki
890
	chown -R root:apache /etc/pki
888
	chmod -R 750 /etc/pki
891
	chmod -R 750 /etc/pki
889
} # End of CA ()
892
} # End of CA ()
890
 
893
 
891
##########################################################################################
894
##########################################################################################
892
##			Fonction "init_db"						##
895
##			Fonction "init_db"						##
893
## - Initialisation de la base Mysql							##
896
## - Initialisation de la base Mysql							##
894
## - Affectation du mot de passe de l'administrateur (root)				##
897
## - Affectation du mot de passe de l'administrateur (root)				##
895
## - Suppression des bases et des utilisateurs superflus				##
898
## - Suppression des bases et des utilisateurs superflus				##
896
## - Création de la base 'radius'							##
899
## - Création de la base 'radius'							##
897
## - Installation du schéma de cette base						##
900
## - Installation du schéma de cette base						##
898
## - Import des tables de comptabilité (mtotacct, totacct) et info_usagers (userinfo)	##
901
## - Import des tables de comptabilité (mtotacct, totacct) et info_usagers (userinfo)	##
899
##       ces table proviennent de 'dialupadmin' (paquetage freeradius-web)		##
902
##       ces table proviennent de 'dialupadmin' (paquetage freeradius-web)		##
900
##########################################################################################
903
##########################################################################################
901
init_db ()
904
init_db ()
902
{
905
{
903
	rm -rf /var/lib/mysql # to be sure that there is no former installation
906
	rm -rf /var/lib/mysql # to be sure that there is no former installation
904
	[ -e /etc/my.cnf.default ] || cp /etc/my.cnf /etc/my.cnf.default
907
	[ -e /etc/my.cnf.default ] || cp /etc/my.cnf /etc/my.cnf.default
905
	$SED "s?^#bind-address.*?bind-address=127.0.0.1?g" /etc/my.cnf
908
	$SED "s?^#bind-address.*?bind-address=127.0.0.1?g" /etc/my.cnf
906
	$SED "s?^tmpdir.*?tmpdir=/tmp?g" /etc/my.cnf
909
	$SED "s?^tmpdir.*?tmpdir=/tmp?g" /etc/my.cnf
907
	/usr/bin/systemctl start mysqld.service
910
	/usr/bin/systemctl start mysqld.service
908
	sleep 4
911
	sleep 4
909
	mysqladmin -u root password $mysqlpwd
912
	mysqladmin -u root password $mysqlpwd
910
	MYSQL="/usr/bin/mysql -uroot -p$mysqlpwd --exec"
913
	MYSQL="/usr/bin/mysql -uroot -p$mysqlpwd --exec"
911
# Secure the server
914
# Secure the server
912
	$MYSQL="DROP DATABASE IF EXISTS test;DROP DATABASE IF EXISTS tmp;"
915
	$MYSQL="DROP DATABASE IF EXISTS test;DROP DATABASE IF EXISTS tmp;"
913
	$MYSQL="CONNECT mysql;DELETE from user where User='';DELETE FROM user WHERE User='root' AND Host NOT IN ('localhost','127.0.0.1','::1');FLUSH PRIVILEGES;" 
916
	$MYSQL="CONNECT mysql;DELETE from user where User='';DELETE FROM user WHERE User='root' AND Host NOT IN ('localhost','127.0.0.1','::1');FLUSH PRIVILEGES;" 
914
# Create 'radius' database
917
# Create 'radius' database
915
	$MYSQL="CREATE DATABASE IF NOT EXISTS $DB_RADIUS;GRANT ALL ON $DB_RADIUS.* TO $DB_USER@localhost IDENTIFIED BY '$radiuspwd';FLUSH PRIVILEGES;"
918
	$MYSQL="CREATE DATABASE IF NOT EXISTS $DB_RADIUS;GRANT ALL ON $DB_RADIUS.* TO $DB_USER@localhost IDENTIFIED BY '$radiuspwd';FLUSH PRIVILEGES;"
916
# Add an empty radius database structure
919
# Add an empty radius database structure
917
	mysql -u$DB_USER -p$radiuspwd $DB_RADIUS < $DIR_CONF/radiusd-db-vierge.sql
920
	mysql -u$DB_USER -p$radiuspwd $DB_RADIUS < $DIR_CONF/radiusd-db-vierge.sql
918
# modify the start script in order to close accounting connexion when the system is comming down or up
921
# modify the start script in order to close accounting connexion when the system is comming down or up
919
	[ -e /lib/systemd/system/mysqld.service.default ] || cp /lib/systemd/system/mysqld.service /lib/systemd/system/mysqld.service.default
922
	[ -e /lib/systemd/system/mysqld.service.default ] || cp /lib/systemd/system/mysqld.service /lib/systemd/system/mysqld.service.default
920
	$SED "/ExecStartPost=/a ExecStop=/usr/local/sbin/alcasar-mysql.sh -acct_stop" /usr/lib/systemd/system/mysqld.service
923
	$SED "/ExecStartPost=/a ExecStop=/usr/local/sbin/alcasar-mysql.sh -acct_stop" /usr/lib/systemd/system/mysqld.service
921
	$SED "/ExecStartPost=/a ExecStartPost=/usr/local/sbin/alcasar-mysql.sh -acct_stop" /lib/systemd/system/mysqld.service
924
	$SED "/ExecStartPost=/a ExecStartPost=/usr/local/sbin/alcasar-mysql.sh -acct_stop" /lib/systemd/system/mysqld.service
922
	/usr/bin/systemctl daemon-reload
925
	/usr/bin/systemctl daemon-reload
923
} # End of init_db ()
926
} # End of init_db ()
924
 
927
 
925
##########################################################################
928
##########################################################################
926
##			Fonction "radius"				##
929
##			Fonction "radius"				##
927
## - Paramètrage des fichiers de configuration FreeRadius		##
930
## - Paramètrage des fichiers de configuration FreeRadius		##
928
## - Affectation du secret partagé entre coova-chilli et freeradius	##
931
## - Affectation du secret partagé entre coova-chilli et freeradius	##
929
## - Modification de fichier de conf pour l'accès à Mysql		##
932
## - Modification de fichier de conf pour l'accès à Mysql		##
930
##########################################################################
933
##########################################################################
931
radius ()
934
radius ()
932
{
935
{
933
	cp -f $DIR_CONF/radiusd-db-vierge.sql /etc/raddb/
936
	cp -f $DIR_CONF/radiusd-db-vierge.sql /etc/raddb/
934
	chown -R radius:radius /etc/raddb
937
	chown -R radius:radius /etc/raddb
935
	[ -e /etc/raddb/radiusd.conf.default ] || cp /etc/raddb/radiusd.conf /etc/raddb/radiusd.conf.default
938
	[ -e /etc/raddb/radiusd.conf.default ] || cp /etc/raddb/radiusd.conf /etc/raddb/radiusd.conf.default
936
# Set radius.conf parameters
939
# Set radius.conf parameters
937
	$SED "s?^[\t ]*#[\t ]*user =.*?user = radius?g" /etc/raddb/radiusd.conf
940
	$SED "s?^[\t ]*#[\t ]*user =.*?user = radius?g" /etc/raddb/radiusd.conf
938
	$SED "s?^[\t ]*#[\t ]*group =.*?group = radius?g" /etc/raddb/radiusd.conf
941
	$SED "s?^[\t ]*#[\t ]*group =.*?group = radius?g" /etc/raddb/radiusd.conf
939
	$SED "s?^[\t ]*status_server =.*?status_server = no?g" /etc/raddb/radiusd.conf
942
	$SED "s?^[\t ]*status_server =.*?status_server = no?g" /etc/raddb/radiusd.conf
940
# remove the proxy function
943
# remove the proxy function
941
	$SED "s?^[\t ]*proxy_requests.*?proxy_requests = no?g" /etc/raddb/radiusd.conf
944
	$SED "s?^[\t ]*proxy_requests.*?proxy_requests = no?g" /etc/raddb/radiusd.conf
942
	$SED "s?^[\t ]*\$INCLUDE proxy.conf.*?#\$INCLUDE proxy.conf?g" /etc/raddb/radiusd.conf
945
	$SED "s?^[\t ]*\$INCLUDE proxy.conf.*?#\$INCLUDE proxy.conf?g" /etc/raddb/radiusd.conf
943
# remove EAP module
946
# remove EAP module
944
	$SED "s?^[\t ]*\$INCLUDE eap.conf.*?#\$INCLUDE eap.conf?g" /etc/raddb/radiusd.conf
947
	$SED "s?^[\t ]*\$INCLUDE eap.conf.*?#\$INCLUDE eap.conf?g" /etc/raddb/radiusd.conf
945
# listen on loopback (should be modified later if EAP enabled)
948
# listen on loopback (should be modified later if EAP enabled)
946
	$SED "s?^[\t ]*ipaddr =.*?ipaddr = 127.0.0.1?g" /etc/raddb/radiusd.conf
949
	$SED "s?^[\t ]*ipaddr =.*?ipaddr = 127.0.0.1?g" /etc/raddb/radiusd.conf
947
# enable the  SQL module (and SQL counter)
950
# enable the  SQL module (and SQL counter)
948
	$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql.conf.*?\$INCLUDE sql.conf?g" /etc/raddb/radiusd.conf
951
	$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql.conf.*?\$INCLUDE sql.conf?g" /etc/raddb/radiusd.conf
949
	$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql/mysql/counter.conf?\$INCLUDE sql/mysql/counter.conf?g" /etc/raddb/radiusd.conf
952
	$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql/mysql/counter.conf?\$INCLUDE sql/mysql/counter.conf?g" /etc/raddb/radiusd.conf
950
	$SED "s?^[\t ]*\$INCLUDE policy.conf?#\$INCLUDE policy.conf?g" /etc/raddb/radiusd.conf
953
	$SED "s?^[\t ]*\$INCLUDE policy.conf?#\$INCLUDE policy.conf?g" /etc/raddb/radiusd.conf
951
# only include modules for ALCASAR needs
954
# only include modules for ALCASAR needs
952
	$SED "s?^[\t ]*\$INCLUDE \${confdir}/modules/.*?\t#\$INCLUDE \${confdir}/modules/\n\t# we only include modules for ALCASAR needs\n\t\$INCLUDE \${confdir}/modules/attr_filter\n\t\$INCLUDE \${confdir}/modules/expiration\n\t\$INCLUDE \${confdir}/modules/logintime\n\t\$INCLUDE \${confdir}/modules/ldap\n\t\$INCLUDE \${confdir}/modules/pap?g" /etc/raddb/radiusd.conf
955
	$SED "s?^[\t ]*\$INCLUDE \${confdir}/modules/.*?\t#\$INCLUDE \${confdir}/modules/\n\t# we only include modules for ALCASAR needs\n\t\$INCLUDE \${confdir}/modules/attr_filter\n\t\$INCLUDE \${confdir}/modules/expiration\n\t\$INCLUDE \${confdir}/modules/logintime\n\t\$INCLUDE \${confdir}/modules/ldap\n\t\$INCLUDE \${confdir}/modules/pap?g" /etc/raddb/radiusd.conf
953
	$SED "s/^[\t ]exec$/\#\texec/g" /etc/raddb/radiusd.conf
956
	$SED "s/^[\t ]exec$/\#\texec/g" /etc/raddb/radiusd.conf
954
	$SED "s?^[\t ]*expr.*?\#\texpr?g" /etc/raddb/radiusd.conf
957
	$SED "s?^[\t ]*expr.*?\#\texpr?g" /etc/raddb/radiusd.conf
955
	$SED "s?^[\t ]*\#	daily.*?\#\tdaily\n\tsql?g" /etc/raddb/radiusd.conf
958
	$SED "s?^[\t ]*\#	daily.*?\#\tdaily\n\tsql?g" /etc/raddb/radiusd.conf
956
	$SED "s?^[\t ]*logintime.*?\tlogintime\n\tnoresetcounter\n\tdailycounter\n\tmonthlycounter\n\tattr_filter.access_reject\n\tattr_filter.accounting_response\n\tpap?g" /etc/raddb/radiusd.conf
959
	$SED "s?^[\t ]*logintime.*?\tlogintime\n\tnoresetcounter\n\tdailycounter\n\tmonthlycounter\n\tattr_filter.access_reject\n\tattr_filter.accounting_response\n\tpap?g" /etc/raddb/radiusd.conf
957
	$SED "s?^[\t ]*\$INCLUDE sites-enabled/.*?\#\$INCLUDE sites-enabled/\n\#\tenable only alcasar virtual server\n\$INCLUDE sites-enabled/alcasar?g" /etc/raddb/radiusd.conf
960
	$SED "s?^[\t ]*\$INCLUDE sites-enabled/.*?\#\$INCLUDE sites-enabled/\n\#\tenable only alcasar virtual server\n\$INCLUDE sites-enabled/alcasar?g" /etc/raddb/radiusd.conf
958
# remvove virtual server and copy our conf file
961
# remvove virtual server and copy our conf file
959
	rm -f /etc/raddb/sites-enabled/*
962
	rm -f /etc/raddb/sites-enabled/*
960
       	cp $DIR_CONF/radius/alcasar-radius /etc/raddb/sites-available/alcasar
963
       	cp $DIR_CONF/radius/alcasar-radius /etc/raddb/sites-available/alcasar
961
	chown radius:apache /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap # droits rw pour apache (module ldap)
964
	chown radius:apache /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap # droits rw pour apache (module ldap)
962
	chmod 660 /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap
965
	chmod 660 /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap
963
	chgrp apache /etc/raddb /etc/raddb/sites-available /etc/raddb/modules
966
	chgrp apache /etc/raddb /etc/raddb/sites-available /etc/raddb/modules
964
	ln -s /etc/raddb/sites-available/alcasar /etc/raddb/sites-enabled/alcasar
967
	ln -s /etc/raddb/sites-available/alcasar /etc/raddb/sites-enabled/alcasar
965
# Inutile dans notre fonctionnement mais les liens sont recréés par un update de radius ... donc forcé en tant que fichier à 'vide'
968
# Inutile dans notre fonctionnement mais les liens sont recréés par un update de radius ... donc forcé en tant que fichier à 'vide'
966
	touch /etc/raddb/sites-enabled/{inner-tunnel,control-socket,default}
969
	touch /etc/raddb/sites-enabled/{inner-tunnel,control-socket,default}
967
# client.conf configuration (127.0.0.1 suffit mais on laisse le deuxième client pour la future gestion de l'EAP)
970
# client.conf configuration (127.0.0.1 suffit mais on laisse le deuxième client pour la future gestion de l'EAP)
968
	[ -e /etc/raddb/clients.conf.default ] || cp -f /etc/raddb/clients.conf /etc/raddb/clients.conf.default
971
	[ -e /etc/raddb/clients.conf.default ] || cp -f /etc/raddb/clients.conf /etc/raddb/clients.conf.default
969
	cat << EOF > /etc/raddb/clients.conf
972
	cat << EOF > /etc/raddb/clients.conf
970
client 127.0.0.1 {
973
client 127.0.0.1 {
971
	secret = $secretradius
974
	secret = $secretradius
972
	shortname = localhost
975
	shortname = localhost
973
}
976
}
974
EOF
977
EOF
975
# sql.conf modification
978
# sql.conf modification
976
	[ -e /etc/raddb/sql.conf.default ] || cp /etc/raddb/sql.conf /etc/raddb/sql.conf.default
979
	[ -e /etc/raddb/sql.conf.default ] || cp /etc/raddb/sql.conf /etc/raddb/sql.conf.default
977
	$SED "s?^[\t ]*login =.*?login = \"$DB_USER\"?g" /etc/raddb/sql.conf
980
	$SED "s?^[\t ]*login =.*?login = \"$DB_USER\"?g" /etc/raddb/sql.conf
978
	$SED "s?^[\t ]*password =.*?password = \"$radiuspwd\"?g" /etc/raddb/sql.conf
981
	$SED "s?^[\t ]*password =.*?password = \"$radiuspwd\"?g" /etc/raddb/sql.conf
979
	$SED "s?^[\t ]*radius_db =.*?radius_db = \"$DB_RADIUS\"?g" /etc/raddb/sql.conf
982
	$SED "s?^[\t ]*radius_db =.*?radius_db = \"$DB_RADIUS\"?g" /etc/raddb/sql.conf
980
	$SED "s?^[\t ]*sqltrace =.*?sqltrace = no?g" /etc/raddb/sql.conf
983
	$SED "s?^[\t ]*sqltrace =.*?sqltrace = no?g" /etc/raddb/sql.conf
981
# dialup.conf modification (case sensitive for username, check simultaneous use, patch on 'postauth' table, etc.) 
984
# dialup.conf modification (case sensitive for username, check simultaneous use, patch on 'postauth' table, etc.) 
982
	[ -e /etc/raddb/sql/mysql/dialup.conf.default ] || cp /etc/raddb/sql/mysql/dialup.conf /etc/raddb/sql/mysql/dialup.conf.default
985
	[ -e /etc/raddb/sql/mysql/dialup.conf.default ] || cp /etc/raddb/sql/mysql/dialup.conf /etc/raddb/sql/mysql/dialup.conf.default
983
	cp -f $DIR_CONF/radius/dialup.conf /etc/raddb/sql/mysql/dialup.conf
986
	cp -f $DIR_CONF/radius/dialup.conf /etc/raddb/sql/mysql/dialup.conf
984
# counter.conf modification (change the Max-All-Session-Time counter)
987
# counter.conf modification (change the Max-All-Session-Time counter)
985
	[ -e /etc/raddb/sql/mysql/counter.conf.default ] || cp /etc/raddb/sql/mysql/counter.conf /etc/raddb/sql/mysql/counter.conf.default
988
	[ -e /etc/raddb/sql/mysql/counter.conf.default ] || cp /etc/raddb/sql/mysql/counter.conf /etc/raddb/sql/mysql/counter.conf.default
986
	cp -f $DIR_CONF/radius/counter.conf /etc/raddb/sql/mysql/counter.conf
989
	cp -f $DIR_CONF/radius/counter.conf /etc/raddb/sql/mysql/counter.conf
987
	chown -R radius:radius /etc/raddb/sql/mysql/*
990
	chown -R radius:radius /etc/raddb/sql/mysql/*
988
# make certain that mysql is up before radius start
991
# make certain that mysql is up before radius start
989
	[ -e /lib/systemd/system/radiusd.service.default ] || cp /lib/systemd/system/radiusd.service /lib/systemd/system/radiusd.service.default
992
	[ -e /lib/systemd/system/radiusd.service.default ] || cp /lib/systemd/system/radiusd.service /lib/systemd/system/radiusd.service.default
990
	$SED "s?^After=.*?After=syslog.target network.target mysqld.service?g" /lib/systemd/system/radiusd.service
993
	$SED "s?^After=.*?After=syslog.target network.target mysqld.service?g" /lib/systemd/system/radiusd.service
991
	/usr/bin/systemctl daemon-reload
994
	/usr/bin/systemctl daemon-reload
992
} # End radius ()
995
} # End radius ()
993
 
996
 
994
##########################################################################
997
##########################################################################
995
##			Function "radius_web"				##
998
##			Function "radius_web"				##
996
## - Import, modification et paramètrage de l'interface "dialupadmin"	##
999
## - Import, modification et paramètrage de l'interface "dialupadmin"	##
997
## - Création du lien vers la page de changement de mot de passe        ##
1000
## - Création du lien vers la page de changement de mot de passe        ##
998
##########################################################################
1001
##########################################################################
999
radius_web ()
1002
radius_web ()
1000
{
1003
{
1001
# copie de l'interface d'origine dans la structure Alcasar
1004
# copie de l'interface d'origine dans la structure Alcasar
1002
	[ -d /usr/share/freeradius-web ] && cp -rf /usr/share/freeradius-web/* $DIR_ACC/manager/
1005
	[ -d /usr/share/freeradius-web ] && cp -rf /usr/share/freeradius-web/* $DIR_ACC/manager/
1003
	rm -f $DIR_ACC/manager/index.html $DIR_ACC/manager/readme 
1006
	rm -f $DIR_ACC/manager/index.html $DIR_ACC/manager/readme 
1004
	rm -f $DIR_ACC/manager/htdocs/about.html $DIR_ACC/manager/htdocs/index.html $DIR_ACC/manager/htdocs/content.html
1007
	rm -f $DIR_ACC/manager/htdocs/about.html $DIR_ACC/manager/htdocs/index.html $DIR_ACC/manager/htdocs/content.html
1005
# copie des fichiers modifiés
1008
# copie des fichiers modifiés
1006
	cp -rf $DIR_INSTALL/web/acc/manager/* $DIR_ACC/manager/
1009
	cp -rf $DIR_INSTALL/web/acc/manager/* $DIR_ACC/manager/
1007
	chown -R apache:apache $DIR_ACC/manager/
1010
	chown -R apache:apache $DIR_ACC/manager/
1008
# Modification des fichiers de configuration
1011
# Modification des fichiers de configuration
1009
	[ -e /etc/freeradius-web/admin.conf.default ] || cp /etc/freeradius-web/admin.conf /etc/freeradius-web/admin.conf.default
1012
	[ -e /etc/freeradius-web/admin.conf.default ] || cp /etc/freeradius-web/admin.conf /etc/freeradius-web/admin.conf.default
1010
	$SED "s?^general_domain:.*?general_domain: $DOMAIN?g" /etc/freeradius-web/admin.conf
1013
	$SED "s?^general_domain:.*?general_domain: $DOMAIN?g" /etc/freeradius-web/admin.conf
1011
	$SED "s?^sql_username:.*?sql_username: $DB_USER?g" /etc/freeradius-web/admin.conf
1014
	$SED "s?^sql_username:.*?sql_username: $DB_USER?g" /etc/freeradius-web/admin.conf
1012
	$SED "s?^sql_password:.*?sql_password: $radiuspwd?g" /etc/freeradius-web/admin.conf
1015
	$SED "s?^sql_password:.*?sql_password: $radiuspwd?g" /etc/freeradius-web/admin.conf
1013
	$SED "s?^sql_debug:.*?sql_debug: false?g" /etc/freeradius-web/admin.conf
1016
	$SED "s?^sql_debug:.*?sql_debug: false?g" /etc/freeradius-web/admin.conf
1014
	$SED "s?^sql_usergroup_table: .*?sql_usergroup_table: radusergroup?g" /etc/freeradius-web/admin.conf
1017
	$SED "s?^sql_usergroup_table: .*?sql_usergroup_table: radusergroup?g" /etc/freeradius-web/admin.conf
1015
	$SED "s?^sql_password_attribute:.*?sql_password_attribute: Crypt-Password?g" /etc/freeradius-web/admin.conf
1018
	$SED "s?^sql_password_attribute:.*?sql_password_attribute: Crypt-Password?g" /etc/freeradius-web/admin.conf
1016
	$SED "s?^general_finger_type.*?# general_finger_type: snmp?g" /etc/freeradius-web/admin.conf
1019
	$SED "s?^general_finger_type.*?# general_finger_type: snmp?g" /etc/freeradius-web/admin.conf
1017
	$SED "s?^general_stats_use_totacct.*?general_stats_use_totacct: yes?g" /etc/freeradius-web/admin.conf
1020
	$SED "s?^general_stats_use_totacct.*?general_stats_use_totacct: yes?g" /etc/freeradius-web/admin.conf
1018
	$SED "s?^general_charset.*?general_charset: utf-8?g" /etc/freeradius-web/admin.conf
1021
	$SED "s?^general_charset.*?general_charset: utf-8?g" /etc/freeradius-web/admin.conf
1019
	[ -e /etc/freeradius-web/config.php.default ] || cp /etc/freeradius-web/config.php /etc/freeradius-web/config.php.default
1022
	[ -e /etc/freeradius-web/config.php.default ] || cp /etc/freeradius-web/config.php /etc/freeradius-web/config.php.default
1020
	cp -f $DIR_CONF/radius/freeradiusweb-config.php /etc/freeradius-web/config.php
1023
	cp -f $DIR_CONF/radius/freeradiusweb-config.php /etc/freeradius-web/config.php
1021
	cat <<EOF > /etc/freeradius-web/naslist.conf
1024
	cat <<EOF > /etc/freeradius-web/naslist.conf
1022
nas1_name: alcasar-$ORGANISME
1025
nas1_name: alcasar-$ORGANISME
1023
nas1_model: Portail captif
1026
nas1_model: Portail captif
1024
nas1_ip: $PRIVATE_IP
1027
nas1_ip: $PRIVATE_IP
1025
nas1_port_num: 0
1028
nas1_port_num: 0
1026
nas1_community: public
1029
nas1_community: public
1027
EOF
1030
EOF
1028
# Modification des attributs visibles lors de la création d'un usager ou d'un groupe
1031
# Modification des attributs visibles lors de la création d'un usager ou d'un groupe
1029
	[ -e /etc/freeradius-web/user_edit.attrs.default ] || mv /etc/freeradius-web/user_edit.attrs /etc/freeradius-web/user_edit.attrs.default
1032
	[ -e /etc/freeradius-web/user_edit.attrs.default ] || mv /etc/freeradius-web/user_edit.attrs /etc/freeradius-web/user_edit.attrs.default
1030
	cp -f $DIR_CONF/radius/user_edit.attrs /etc/freeradius-web/user_edit.attrs
1033
	cp -f $DIR_CONF/radius/user_edit.attrs /etc/freeradius-web/user_edit.attrs
1031
# Ajout du mappage des attributs chillispot
1034
# Ajout du mappage des attributs chillispot
1032
	[ -e /etc/freeradius-web/sql.attrmap.default ] || mv /etc/freeradius-web/sql.attrmap /etc/freeradius-web/sql.attrmap.default
1035
	[ -e /etc/freeradius-web/sql.attrmap.default ] || mv /etc/freeradius-web/sql.attrmap /etc/freeradius-web/sql.attrmap.default
1033
	cp -f $DIR_CONF/radius/sql.attrmap /etc/freeradius-web/sql.attrmap
1036
	cp -f $DIR_CONF/radius/sql.attrmap /etc/freeradius-web/sql.attrmap
1034
# Modification des attributs visibles sur les pages des statistiques (suppression NAS_IP et NAS_port)
1037
# Modification des attributs visibles sur les pages des statistiques (suppression NAS_IP et NAS_port)
1035
	[ -e /etc/freeradius-web/sql.attrs.default ] || cp /etc/freeradius-web/sql.attrs /etc/freeradius-web/sql.attrs.default
1038
	[ -e /etc/freeradius-web/sql.attrs.default ] || cp /etc/freeradius-web/sql.attrs /etc/freeradius-web/sql.attrs.default
1036
	$SED "s?^NASIPAddress.*?NASIPAddress\tNas IP Address\tno?g" /etc/freeradius-web/sql.attrs
1039
	$SED "s?^NASIPAddress.*?NASIPAddress\tNas IP Address\tno?g" /etc/freeradius-web/sql.attrs
1037
	$SED "s?^NASPortId.*?NASPortId\tNas Port\tno?g" /etc/freeradius-web/sql.attrs
1040
	$SED "s?^NASPortId.*?NASPortId\tNas Port\tno?g" /etc/freeradius-web/sql.attrs
1038
	chown -R apache:apache /etc/freeradius-web
1041
	chown -R apache:apache /etc/freeradius-web
1039
# Ajout de l'alias vers la page de "changement de mot de passe usager"
1042
# Ajout de l'alias vers la page de "changement de mot de passe usager"
1040
	cat <<EOF >> /etc/httpd/conf/webapps.d/alcasar.conf
1043
	cat <<EOF >> /etc/httpd/conf/webapps.d/alcasar.conf
1041
<Directory $DIR_WEB/pass>
1044
<Directory $DIR_WEB/pass>
1042
	SSLRequireSSL
1045
	SSLRequireSSL
1043
	AllowOverride None
1046
	AllowOverride None
1044
	Order deny,allow
1047
	Order deny,allow
1045
	Deny from all
1048
	Deny from all
1046
	Allow from 127.0.0.1
1049
	Allow from 127.0.0.1
1047
	Allow from $PRIVATE_NETWORK_MASK
1050
	Allow from $PRIVATE_NETWORK_MASK
1048
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN
1051
	ErrorDocument 404 https://$HOSTNAME.$DOMAIN
1049
</Directory>
1052
</Directory>
1050
EOF
1053
EOF
1051
} # End of radius_web ()
1054
} # End of radius_web ()
1052
 
1055
 
1053
##################################################################################
1056
##################################################################################
1054
##			Fonction "chilli"					##
1057
##			Fonction "chilli"					##
1055
## - Création du fichier d'initialisation et de configuration de coova-chilli	##
1058
## - Création du fichier d'initialisation et de configuration de coova-chilli	##
1056
## - Paramètrage de la page d'authentification (intercept.php)			##
1059
## - Paramètrage de la page d'authentification (intercept.php)			##
1057
##################################################################################
1060
##################################################################################
1058
chilli ()
1061
chilli ()
1059
{
1062
{
1060
# chilli unit for systemd
1063
# chilli unit for systemd
1061
cat << EOF > /lib/systemd/system/chilli.service
1064
cat << EOF > /lib/systemd/system/chilli.service
1062
#  This file is part of systemd.
1065
#  This file is part of systemd.
1063
#
1066
#
1064
#  systemd is free software; you can redistribute it and/or modify it
1067
#  systemd is free software; you can redistribute it and/or modify it
1065
#  under the terms of the GNU General Public License as published by
1068
#  under the terms of the GNU General Public License as published by
1066
#  the Free Software Foundation; either version 2 of the License, or
1069
#  the Free Software Foundation; either version 2 of the License, or
1067
#  (at your option) any later version.
1070
#  (at your option) any later version.
1068
[Unit]
1071
[Unit]
1069
Description=chilli is a captive portal daemon
1072
Description=chilli is a captive portal daemon
1070
After=network.target
1073
After=network.target
1071
 
1074
 
1072
[Service]
1075
[Service]
1073
Type=forking
1076
Type=forking
1074
ExecStart=/usr/libexec/chilli start
1077
ExecStart=/usr/libexec/chilli start
1075
ExecStop=/usr/libexec/chilli stop
1078
ExecStop=/usr/libexec/chilli stop
1076
ExecReload=/usr/libexec/chilli reload
1079
ExecReload=/usr/libexec/chilli reload
1077
PIDFile=/var/run/chilli.pid
1080
PIDFile=/var/run/chilli.pid
1078
 
1081
 
1079
[Install]
1082
[Install]
1080
WantedBy=multi-user.target
1083
WantedBy=multi-user.target
1081
EOF
1084
EOF
1082
# init file creation
1085
# init file creation
1083
	[ -e /etc/init.d/chilli.default ] || mv /etc/init.d/chilli /etc/init.d/chilli.default
1086
	[ -e /etc/init.d/chilli.default ] || mv /etc/init.d/chilli /etc/init.d/chilli.default
1084
	cat <<EOF > /usr/libexec/chilli
1087
	cat <<EOF > /usr/libexec/chilli
1085
#!/bin/sh
1088
#!/bin/sh
1086
#
1089
#
1087
# chilli CoovaChilli init
1090
# chilli CoovaChilli init
1088
#
1091
#
1089
# chkconfig: 2345 65 35
1092
# chkconfig: 2345 65 35
1090
# description: CoovaChilli
1093
# description: CoovaChilli
1091
### BEGIN INIT INFO
1094
### BEGIN INIT INFO
1092
# Provides:       chilli
1095
# Provides:       chilli
1093
# Required-Start: network 
1096
# Required-Start: network 
1094
# Should-Start: 
1097
# Should-Start: 
1095
# Required-Stop:  network
1098
# Required-Stop:  network
1096
# Should-Stop: 
1099
# Should-Stop: 
1097
# Default-Start:  2 3 5
1100
# Default-Start:  2 3 5
1098
# Default-Stop:
1101
# Default-Stop:
1099
# Description:    CoovaChilli access controller
1102
# Description:    CoovaChilli access controller
1100
### END INIT INFO
1103
### END INIT INFO
1101
 
1104
 
1102
[ -f /usr/sbin/chilli ] || exit 0
1105
[ -f /usr/sbin/chilli ] || exit 0
1103
. /etc/init.d/functions
1106
. /etc/init.d/functions
1104
CONFIG=/etc/chilli.conf
1107
CONFIG=/etc/chilli.conf
1105
pidfile=/var/run/chilli.pid
1108
pidfile=/var/run/chilli.pid
1106
[ -f \$CONFIG ] || {
1109
[ -f \$CONFIG ] || {
1107
    echo "\$CONFIG Not found"
1110
    echo "\$CONFIG Not found"
1108
    exit 0
1111
    exit 0
1109
}
1112
}
1110
RETVAL=0
1113
RETVAL=0
1111
prog="chilli"
1114
prog="chilli"
1112
case \$1 in
1115
case \$1 in
1113
    start)
1116
    start)
1114
	if [ -f \$pidfile ] ; then 
1117
	if [ -f \$pidfile ] ; then 
1115
		gprintf "chilli is already running"
1118
		gprintf "chilli is already running"
1116
	else
1119
	else
1117
        	gprintf "Starting \$prog: "
1120
        	gprintf "Starting \$prog: "
1118
		rm -f /var/run/chilli* # cleaning
1121
		rm -f /var/run/chilli* # cleaning
1119
        	/sbin/modprobe tun >/dev/null 2>&1
1122
        	/sbin/modprobe tun >/dev/null 2>&1
1120
        	echo 1 > /proc/sys/net/ipv4/ip_forward
1123
        	echo 1 > /proc/sys/net/ipv4/ip_forward
1121
		[ -e /dev/net/tun ] || {
1124
		[ -e /dev/net/tun ] || {
1122
	    	(cd /dev; 
1125
	    	(cd /dev; 
1123
			mkdir net; 
1126
			mkdir net; 
1124
			cd net; 
1127
			cd net; 
1125
			mknod tun c 10 200)
1128
			mknod tun c 10 200)
1126
		}
1129
		}
1127
		ifconfig $INTIF 0.0.0.0
1130
		ifconfig $INTIF 0.0.0.0
1128
		/usr/sbin/ethtool -K $INTIF gro off
1131
		/usr/sbin/ethtool -K $INTIF gro off
1129
		daemon /usr/sbin/chilli -c \$CONFIG --pidfile=\$pidfile &
1132
		daemon /usr/sbin/chilli -c \$CONFIG --pidfile=\$pidfile &
1130
        	RETVAL=$?
1133
        	RETVAL=$?
1131
	fi
1134
	fi
1132
	;;
1135
	;;
1133
 
1136
 
1134
    reload)
1137
    reload)
1135
	killall -HUP chilli
1138
	killall -HUP chilli
1136
	;;
1139
	;;
1137
 
1140
 
1138
    restart)
1141
    restart)
1139
	\$0 stop
1142
	\$0 stop
1140
        sleep 2
1143
        sleep 2
1141
	\$0 start
1144
	\$0 start
1142
	;;
1145
	;;
1143
    
1146
    
1144
    status)
1147
    status)
1145
        status chilli
1148
        status chilli
1146
        RETVAL=0
1149
        RETVAL=0
1147
        ;;
1150
        ;;
1148
 
1151
 
1149
    stop)
1152
    stop)
1150
	if [ -f \$pidfile ] ; then  
1153
	if [ -f \$pidfile ] ; then  
1151
        	gprintf "Shutting down \$prog: "
1154
        	gprintf "Shutting down \$prog: "
1152
		killproc /usr/sbin/chilli
1155
		killproc /usr/sbin/chilli
1153
		RETVAL=\$?
1156
		RETVAL=\$?
1154
		[ \$RETVAL = 0 ] && rm -f $pidfile
1157
		[ \$RETVAL = 0 ] && rm -f $pidfile
1155
	else	
1158
	else	
1156
        	gprintf "chilli is not running"
1159
        	gprintf "chilli is not running"
1157
	fi
1160
	fi
1158
	;;
1161
	;;
1159
    
1162
    
1160
    *)
1163
    *)
1161
        echo "Usage: \$0 {start|stop|restart|reload|status}"
1164
        echo "Usage: \$0 {start|stop|restart|reload|status}"
1162
        exit 1
1165
        exit 1
1163
esac
1166
esac
1164
echo
1167
echo
1165
EOF
1168
EOF
1166
chmod a+x /usr/libexec/chilli
1169
chmod a+x /usr/libexec/chilli
1167
# conf file creation
1170
# conf file creation
1168
	[ -e /etc/chilli.conf.default ] || cp /etc/chilli.conf /etc/chilli.conf.default
1171
	[ -e /etc/chilli.conf.default ] || cp /etc/chilli.conf /etc/chilli.conf.default
1169
	cat <<EOF > /etc/chilli.conf
1172
	cat <<EOF > /etc/chilli.conf
1170
# coova config for ALCASAR
1173
# coova config for ALCASAR
1171
cmdsocket	/var/run/chilli.sock
1174
cmdsocket	/var/run/chilli.sock
1172
unixipc		chilli.$INTIF.ipc
1175
unixipc		chilli.$INTIF.ipc
1173
pidfile		/var/run/chilli.pid
1176
pidfile		/var/run/chilli.pid
1174
net		$PRIVATE_NETWORK_MASK
1177
net		$PRIVATE_NETWORK_MASK
1175
dhcpif		$INTIF
1178
dhcpif		$INTIF
1176
ethers		$DIR_DEST_ETC/alcasar-ethers
1179
ethers		$DIR_DEST_ETC/alcasar-ethers
1177
#nodynip
1180
#nodynip
1178
#statip
1181
#statip
1179
dynip		$PRIVATE_NETWORK_MASK
1182
dynip		$PRIVATE_NETWORK_MASK
1180
domain		$DOMAIN
1183
domain		$DOMAIN
1181
dns1		$PRIVATE_IP
1184
dns1		$PRIVATE_IP
1182
dns2		$PRIVATE_IP
1185
dns2		$PRIVATE_IP
1183
uamlisten	$PRIVATE_IP
1186
uamlisten	$PRIVATE_IP
1184
uamport		3990
1187
uamport		3990
1185
macauth
1188
macauth
1186
macpasswd	password
1189
macpasswd	password
1187
locationname	$HOSTNAME.$DOMAIN
1190
locationname	$HOSTNAME.$DOMAIN
1188
radiusserver1	127.0.0.1
1191
radiusserver1	127.0.0.1
1189
radiusserver2	127.0.0.1
1192
radiusserver2	127.0.0.1
1190
radiussecret	$secretradius
1193
radiussecret	$secretradius
1191
radiusauthport	1812
1194
radiusauthport	1812
1192
radiusacctport	1813
1195
radiusacctport	1813
1193
uamserver	https://$HOSTNAME.$DOMAIN/intercept.php
1196
uamserver	https://$HOSTNAME.$DOMAIN/intercept.php
1194
radiusnasid	$HOSTNAME.$DOMAIN
1197
radiusnasid	$HOSTNAME.$DOMAIN
1195
uamsecret	$secretuam
1198
uamsecret	$secretuam
1196
uamallowed	$HOSTNAME,$HOSTNAME.$DOMAIN
1199
uamallowed	$HOSTNAME,$HOSTNAME.$DOMAIN
1197
coaport		3799
1200
coaport		3799
1198
conup		$DIR_DEST_BIN/alcasar-conup.sh
1201
conup		$DIR_DEST_BIN/alcasar-conup.sh
1199
condown		$DIR_DEST_BIN/alcasar-condown.sh
1202
condown		$DIR_DEST_BIN/alcasar-condown.sh
1200
include		$DIR_DEST_ETC/alcasar-uamallowed
1203
include		$DIR_DEST_ETC/alcasar-uamallowed
1201
include		$DIR_DEST_ETC/alcasar-uamdomain
1204
include		$DIR_DEST_ETC/alcasar-uamdomain
1202
#dhcpgateway		none
1205
#dhcpgateway		none
1203
#dhcprelayagent		none
1206
#dhcprelayagent		none
1204
#dhcpgatewayport	none
1207
#dhcpgatewayport	none
1205
EOF
1208
EOF
1206
# create file for DHCP static ip. Reserve the second IP address for INTIF (the first one is for tun0)
1209
# create file for DHCP static ip. Reserve the second IP address for INTIF (the first one is for tun0)
1207
	echo "$PRIVATE_MAC $PRIVATE_SECOND_IP" > $DIR_DEST_ETC/alcasar-ethers
1210
	echo "$PRIVATE_MAC $PRIVATE_SECOND_IP" > $DIR_DEST_ETC/alcasar-ethers
1208
# create files for trusted domains and urls
1211
# create files for trusted domains and urls
1209
	touch $DIR_DEST_ETC/alcasar-uamallowed $DIR_DEST_ETC/alcasar-uamdomain
1212
	touch $DIR_DEST_ETC/alcasar-uamallowed $DIR_DEST_ETC/alcasar-uamdomain
1210
	chown root:apache $DIR_DEST_ETC/alcasar-*
1213
	chown root:apache $DIR_DEST_ETC/alcasar-*
1211
	chmod 660 $DIR_DEST_ETC/alcasar-*
1214
	chmod 660 $DIR_DEST_ETC/alcasar-*
1212
# Configuration des fichier WEB d'interception (secret partagé avec coova-chilli)
1215
# Configuration des fichier WEB d'interception (secret partagé avec coova-chilli)
1213
	$SED "s?^\$uamsecret =.*?\$uamsecret = \"$secretuam\";?g" $DIR_WEB/intercept.php
1216
	$SED "s?^\$uamsecret =.*?\$uamsecret = \"$secretuam\";?g" $DIR_WEB/intercept.php
1214
	$SED "s?^\$userpassword=1.*?\$userpassword=1;?g" $DIR_WEB/intercept.php
1217
	$SED "s?^\$userpassword=1.*?\$userpassword=1;?g" $DIR_WEB/intercept.php
1215
# user 'chilli' creation (in order to run conup/off and up/down scripts
1218
# user 'chilli' creation (in order to run conup/off and up/down scripts
1216
	chilli_exist=`grep chilli /etc/passwd|wc -l`
1219
	chilli_exist=`grep chilli /etc/passwd|wc -l`
1217
	if [ "$chilli_exist" == "1" ]
1220
	if [ "$chilli_exist" == "1" ]
1218
	then
1221
	then
1219
	      userdel -r chilli 2>/dev/null
1222
	      userdel -r chilli 2>/dev/null
1220
	fi
1223
	fi
1221
	groupadd -f chilli
1224
	groupadd -f chilli
1222
	useradd -r -g chilli -s /bin/false -c "system user for coova-chilli" chilli
1225
	useradd -r -g chilli -s /bin/false -c "system user for coova-chilli" chilli
1223
}  # End of chilli ()
1226
}  # End of chilli ()
1224
 
1227
 
1225
##################################################################
1228
##################################################################
1226
##		Fonction "dansguardian"				##
1229
##		Fonction "dansguardian"				##
1227
## - Paramètrage du gestionnaire de contenu Dansguardian	##
1230
## - Paramètrage du gestionnaire de contenu Dansguardian	##
1228
##################################################################
1231
##################################################################
1229
dansguardian ()
1232
dansguardian ()
1230
{
1233
{
1231
	mkdir /var/dansguardian
1234
	mkdir /var/dansguardian
1232
	chown dansguardian /var/dansguardian
1235
	chown dansguardian /var/dansguardian
1233
	$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/dansguardian -c /etc/dansguardian/dansguardian.conf?g" /lib/systemd/system/dansguardian.service
1236
	$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/dansguardian -c /etc/dansguardian/dansguardian.conf?g" /lib/systemd/system/dansguardian.service
1234
	$SED "s?^After=.*?After=network.target chilli.service?g" /lib/systemd/system/dansguardian.service
1237
	$SED "s?^After=.*?After=network.target chilli.service?g" /lib/systemd/system/dansguardian.service
1235
	[ -e $DIR_DG/dansguardian.conf.default ] || cp $DIR_DG/dansguardian.conf $DIR_DG/dansguardian.conf.default
1238
	[ -e $DIR_DG/dansguardian.conf.default ] || cp $DIR_DG/dansguardian.conf $DIR_DG/dansguardian.conf.default
1236
# By default the filter is off 
1239
# By default the filter is off 
1237
	$SED "s/^reportinglevel =.*/reportinglevel = 3/g" $DIR_DG/dansguardian.conf
1240
	$SED "s/^reportinglevel =.*/reportinglevel = 3/g" $DIR_DG/dansguardian.conf
1238
# French deny HTML page
1241
# French deny HTML page
1239
	$SED "s?^language =.*?language = french?g" $DIR_DG/dansguardian.conf
1242
	$SED "s?^language =.*?language = french?g" $DIR_DG/dansguardian.conf
1240
# Listen only on LAN side
1243
# Listen only on LAN side
1241
	$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" $DIR_DG/dansguardian.conf
1244
	$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" $DIR_DG/dansguardian.conf
1242
# DG send its flow to HAVP
1245
# DG send its flow to HAVP
1243
	$SED "s?^proxyport.*?proxyport = 8090?g" $DIR_DG/dansguardian.conf
1246
	$SED "s?^proxyport.*?proxyport = 8090?g" $DIR_DG/dansguardian.conf
1244
# replace the default deny HTML page
1247
# replace the default deny HTML page
1245
	cp -f $DIR_CONF/template.html /usr/share/dansguardian/languages/ukenglish/
1248
	cp -f $DIR_CONF/template.html /usr/share/dansguardian/languages/ukenglish/
1246
	cp -f $DIR_CONF/template-fr.html /usr/share/dansguardian/languages/french/template.html
1249
	cp -f $DIR_CONF/template-fr.html /usr/share/dansguardian/languages/french/template.html
1247
# Don't log
1250
# Don't log
1248
	$SED "s?^loglevel =.*?loglevel = 0?g" $DIR_DG/dansguardian.conf
1251
	$SED "s?^loglevel =.*?loglevel = 0?g" $DIR_DG/dansguardian.conf
1249
# Run 10 daemons (20 in largest server)
1252
# Run 10 daemons (20 in largest server)
1250
	$SED "s?^minchildren =.*?minchildren = 10?g" $DIR_DG/dansguardian.conf
1253
	$SED "s?^minchildren =.*?minchildren = 10?g" $DIR_DG/dansguardian.conf
1251
# on désactive par défaut le controle de contenu des pages html
1254
# on désactive par défaut le controle de contenu des pages html
1252
	$SED "s?^weightedphrasemode =.*?weightedphrasemode = 0?g" $DIR_DG/dansguardian.conf
1255
	$SED "s?^weightedphrasemode =.*?weightedphrasemode = 0?g" $DIR_DG/dansguardian.conf
1253
	cp $DIR_DG/lists/bannedphraselist $DIR_DG/lists/bannedphraselist.default
1256
	cp $DIR_DG/lists/bannedphraselist $DIR_DG/lists/bannedphraselist.default
1254
	$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedphraselist # (on commente ce qui ne l'est pas)
1257
	$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedphraselist # (on commente ce qui ne l'est pas)
1255
# on désactive par défaut le contrôle d'URL par expressions régulières
1258
# on désactive par défaut le contrôle d'URL par expressions régulières
1256
	cp $DIR_DG/lists/bannedregexpurllist $DIR_DG/lists/bannedregexpurllist.default
1259
	cp $DIR_DG/lists/bannedregexpurllist $DIR_DG/lists/bannedregexpurllist.default
1257
	$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedregexpurllist # (on commente ce qui ne l'est pas)
1260
	$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedregexpurllist # (on commente ce qui ne l'est pas)
1258
# on désactive par défaut le contrôle de téléchargement de fichiers
1261
# on désactive par défaut le contrôle de téléchargement de fichiers
1259
	[ -e $DIR_DG/dansguardianf1.conf.default ] || cp $DIR_DG/dansguardianf1.conf $DIR_DG/dansguardianf1.conf.default
1262
	[ -e $DIR_DG/dansguardianf1.conf.default ] || cp $DIR_DG/dansguardianf1.conf $DIR_DG/dansguardianf1.conf.default
1260
	$SED "s?^blockdownloads =.*?blockdownloads = off?g" $DIR_DG/dansguardianf1.conf
1263
	$SED "s?^blockdownloads =.*?blockdownloads = off?g" $DIR_DG/dansguardianf1.conf
1261
	[ -e $DIR_DG/lists/bannedextensionlist.default ] || mv $DIR_DG/lists/bannedextensionlist $DIR_DG/lists/bannedextensionlist.default
1264
	[ -e $DIR_DG/lists/bannedextensionlist.default ] || mv $DIR_DG/lists/bannedextensionlist $DIR_DG/lists/bannedextensionlist.default
1262
	[ -e $DIR_DG/lists/bannedmimetypelist.default ] || mv $DIR_DG/lists/bannedmimetypelist $DIR_DG/lists/bannedmimetypelist.default
1265
	[ -e $DIR_DG/lists/bannedmimetypelist.default ] || mv $DIR_DG/lists/bannedmimetypelist $DIR_DG/lists/bannedmimetypelist.default
1263
	touch $DIR_DG/lists/bannedextensionlist
1266
	touch $DIR_DG/lists/bannedextensionlist
1264
	touch $DIR_DG/lists/bannedmimetypelist
1267
	touch $DIR_DG/lists/bannedmimetypelist
1265
# 'Safesearch' regex actualisation
1268
# 'Safesearch' regex actualisation
1266
	$SED "s?images?search?g" $DIR_DG/lists/urlregexplist
1269
	$SED "s?images?search?g" $DIR_DG/lists/urlregexplist
1267
# empty LAN IP list that won't be WEB filtered
1270
# empty LAN IP list that won't be WEB filtered
1268
	[ -e $DIR_DG/lists/exceptioniplist.default ] || mv $DIR_DG/lists/exceptioniplist $DIR_DG/lists/exceptioniplist.default
1271
	[ -e $DIR_DG/lists/exceptioniplist.default ] || mv $DIR_DG/lists/exceptioniplist $DIR_DG/lists/exceptioniplist.default
1269
	touch $DIR_DG/lists/exceptioniplist
1272
	touch $DIR_DG/lists/exceptioniplist
1270
# Keep a copy of URL & domain filter configuration files
1273
# Keep a copy of URL & domain filter configuration files
1271
	[ -e $DIR_DG/lists/bannedsitelist.default ] || mv $DIR_DG/lists/bannedsitelist $DIR_DG/lists/bannedsitelist.default
1274
	[ -e $DIR_DG/lists/bannedsitelist.default ] || mv $DIR_DG/lists/bannedsitelist $DIR_DG/lists/bannedsitelist.default
1272
	[ -e $DIR_DG/lists/bannedurllist.default ] || mv $DIR_DG/lists/bannedurllist $DIR_DG/lists/bannedurllist.default
1275
	[ -e $DIR_DG/lists/bannedurllist.default ] || mv $DIR_DG/lists/bannedurllist $DIR_DG/lists/bannedurllist.default
1273
} # End of dansguardian ()
1276
} # End of dansguardian ()
1274
 
1277
 
1275
##################################################################
1278
##################################################################
1276
##			Fonction "antivirus"			##
1279
##			Fonction "antivirus"			##
1277
## - configuration of havp, libclamav and freshclam		##
1280
## - configuration of havp, libclamav and freshclam		##
1278
##################################################################
1281
##################################################################
1279
antivirus ()		
1282
antivirus ()		
1280
{
1283
{
1281
# create 'havp' user
1284
# create 'havp' user
1282
	havp_exist=`grep havp /etc/passwd|wc -l`
1285
	havp_exist=`grep havp /etc/passwd|wc -l`
1283
	if [ "$havp_exist" == "1" ]
1286
	if [ "$havp_exist" == "1" ]
1284
	then
1287
	then
1285
	      userdel -r havp 2>/dev/null
1288
	      userdel -r havp 2>/dev/null
1286
	      groupdel havp 2>/dev/null
1289
	      groupdel havp 2>/dev/null
1287
	fi
1290
	fi
1288
	groupadd -f havp
1291
	groupadd -f havp
1289
	useradd -r -g havp -s /bin/false -c "system user for havp (antivirus proxy)" havp
1292
	useradd -r -g havp -s /bin/false -c "system user for havp (antivirus proxy)" havp
1290
	mkdir -p /var/tmp/havp /var/log/havp /var/run/havp
1293
	mkdir -p /var/tmp/havp /var/log/havp /var/run/havp
1291
	chown -R havp:havp /var/tmp/havp /var/log/havp /var/run/havp
1294
	chown -R havp:havp /var/tmp/havp /var/log/havp /var/run/havp
1292
	[ -e /etc/havp/havp.config.default ] || cp /etc/havp/havp.config /etc/havp/havp.config.default
1295
	[ -e /etc/havp/havp.config.default ] || cp /etc/havp/havp.config /etc/havp/havp.config.default
1293
	$SED "/^REMOVETHISLINE/d" /etc/havp/havp.config
1296
	$SED "/^REMOVETHISLINE/d" /etc/havp/havp.config
1294
	$SED "s?^# PIDFILE.*?PIDFILE /var/run/havp/havp.pid?g" /etc/havp/havp.config	# pidfile
1297
	$SED "s?^# PIDFILE.*?PIDFILE /var/run/havp/havp.pid?g" /etc/havp/havp.config	# pidfile
1295
	$SED "s?^# TRANSPARENT.*?TRANSPARENT false?g" /etc/havp/havp.config		# transparent mode
1298
	$SED "s?^# TRANSPARENT.*?TRANSPARENT false?g" /etc/havp/havp.config		# transparent mode
1296
	$SED "s?^# BIND_ADDRESS.*?BIND_ADDRESS 127.0.0.1?g" /etc/havp/havp.config	# we listen only on loopback
1299
	$SED "s?^# BIND_ADDRESS.*?BIND_ADDRESS 127.0.0.1?g" /etc/havp/havp.config	# we listen only on loopback
1297
	$SED "s?^# PORT.*?PORT 8090?g" /etc/havp/havp.config				# datas come on port 8090 (on loopback)
1300
	$SED "s?^# PORT.*?PORT 8090?g" /etc/havp/havp.config				# datas come on port 8090 (on loopback)
1298
	$SED "s?^# TIMEFORMAT.*?TIMEFORMAT %Y %b %d %H:%M:%S?g" /etc/havp/havp.config	# Log format
1301
	$SED "s?^# TIMEFORMAT.*?TIMEFORMAT %Y %b %d %H:%M:%S?g" /etc/havp/havp.config	# Log format
1299
	$SED "s?^ENABLECLAMLIB.*?ENABLECLAMLIB true?g" /etc/havp/havp.config		# active libclamav AV
1302
	$SED "s?^ENABLECLAMLIB.*?ENABLECLAMLIB true?g" /etc/havp/havp.config		# active libclamav AV
1300
	$SED "s?^# LOG_OKS.*?LOG_OKS false?g" /etc/havp/havp.config			# log only when malware matches
1303
	$SED "s?^# LOG_OKS.*?LOG_OKS false?g" /etc/havp/havp.config			# log only when malware matches
1301
	$SED "s?^# SERVERNUMBER.*?SERVERNUMBER 10?g" /etc/havp/havp.config		# 10 daemons are started simultaneously
1304
	$SED "s?^# SERVERNUMBER.*?SERVERNUMBER 10?g" /etc/havp/havp.config		# 10 daemons are started simultaneously
1302
	$SED "s?^# SCANIMAGES.*?SCANIMAGES false?g" /etc/havp/havp.config		# doesn't scan image files
1305
	$SED "s?^# SCANIMAGES.*?SCANIMAGES false?g" /etc/havp/havp.config		# doesn't scan image files
1303
	$SED "s?^# SKIPMIME.*?SKIPMIME image\/\* video\/\* audio\/\*?g" /etc/havp/havp.config # doesn't scan some multimedia files
1306
	$SED "s?^# SKIPMIME.*?SKIPMIME image\/\* video\/\* audio\/\*?g" /etc/havp/havp.config # doesn't scan some multimedia files
1304
# skip checking of youtube flow (too heavy load / risk too low)
1307
# skip checking of youtube flow (too heavy load / risk too low)
1305
	[ -e /etc/havp/whitelist.default ] || cp /etc/havp/whitelist /etc/havp/whitelist.default
1308
	[ -e /etc/havp/whitelist.default ] || cp /etc/havp/whitelist /etc/havp/whitelist.default
1306
	echo "# Whitelist youtube flow" >> /etc/havp/whitelist
1309
	echo "# Whitelist youtube flow" >> /etc/havp/whitelist
1307
	echo "*.youtube.com/*" >> /etc/havp/whitelist
1310
	echo "*.youtube.com/*" >> /etc/havp/whitelist
1308
# adapt init script and systemd unit
1311
# adapt init script and systemd unit
1309
	[ -e /etc/init.d/havp.default ] || cp /etc/init.d/havp /etc/init.d/havp.default
1312
	[ -e /etc/init.d/havp.default ] || cp /etc/init.d/havp /etc/init.d/havp.default
1310
	cp -f $DIR_CONF/havp-init /etc/init.d/havp
1313
	cp -f $DIR_CONF/havp-init /etc/init.d/havp
1311
	[ -e /lib/systemd/system/havp.service.default ] || cp /lib/systemd/system/havp.service /lib/systemd/system/havp.service.default
1314
	[ -e /lib/systemd/system/havp.service.default ] || cp /lib/systemd/system/havp.service /lib/systemd/system/havp.service.default
1312
	$SED "/^PIDFile/i ExecStartPre=/bin/mkdir -p /var/run/havp" /lib/systemd/system/havp.service
1315
	$SED "/^PIDFile/i ExecStartPre=/bin/mkdir -p /var/run/havp" /lib/systemd/system/havp.service
1313
	$SED "/^PIDFile/i ExecStartPre=/bin/chown -R havp:havp /var/run/havp /var/log/havp" /lib/systemd/system/havp.service
1316
	$SED "/^PIDFile/i ExecStartPre=/bin/chown -R havp:havp /var/run/havp /var/log/havp" /lib/systemd/system/havp.service
1314
# replace of the intercept page (template)
1317
# replace of the intercept page (template)
1315
	cp -f $DIR_CONF/virus-fr.html /etc/havp/templates/fr/virus.html
1318
	cp -f $DIR_CONF/virus-fr.html /etc/havp/templates/fr/virus.html
1316
	cp -f $DIR_CONF/virus-en.html /etc/havp/templates/en/virus.html
1319
	cp -f $DIR_CONF/virus-en.html /etc/havp/templates/en/virus.html
1317
# update virus database every 4 hours (24h/6)
1320
# update virus database every 4 hours (24h/6)
1318
	[ -e /etc/freshclam.conf.default ] || cp /etc/freshclam.conf /etc/freshclam.conf.default
1321
	[ -e /etc/freshclam.conf.default ] || cp /etc/freshclam.conf /etc/freshclam.conf.default
1319
	$SED "s?^Checks.*?Checks 6?g" /etc/freshclam.conf
1322
	$SED "s?^Checks.*?Checks 6?g" /etc/freshclam.conf
1320
	$SED "s?^NotifyClamd.*?# NotifyClamd /etc/clamd.conf?g" /etc/freshclam.conf
1323
	$SED "s?^NotifyClamd.*?# NotifyClamd /etc/clamd.conf?g" /etc/freshclam.conf
1321
	$SED "/^DatabaseMirror/i DatabaseMirror db.fr.clamav.net" /etc/freshclam.conf
1324
	$SED "/^DatabaseMirror/i DatabaseMirror db.fr.clamav.net" /etc/freshclam.conf
1322
	$SED "/^DatabaseMirror db.fr.clamav.net/i DatabaseMirror switch.clamav.net" /etc/freshclam.conf
1325
	$SED "/^DatabaseMirror db.fr.clamav.net/i DatabaseMirror switch.clamav.net" /etc/freshclam.conf
1323
	$SED "s?MaxAttempts.*?MaxAttempts 3?g" /etc/freshclam.conf
1326
	$SED "s?MaxAttempts.*?MaxAttempts 3?g" /etc/freshclam.conf
1324
# update now
1327
# update now
1325
	/usr/bin/freshclam --no-warnings
1328
	/usr/bin/freshclam --no-warnings
1326
} # End of antivirus ()
1329
} # End of antivirus ()
1327
 
1330
 
1328
##########################################################################
1331
##########################################################################
1329
##			Fonction "tinyproxy"				##
1332
##			Fonction "tinyproxy"				##
1330
## - configuration of tinyproxy (proxy between filterde users and havp)	##
1333
## - configuration of tinyproxy (proxy between filterde users and havp)	##
1331
##########################################################################
1334
##########################################################################
1332
tinyproxy ()		
1335
tinyproxy ()		
1333
{
1336
{
1334
	tinyproxy_exist=`grep tinyproxy /etc/passwd|wc -l`
1337
	tinyproxy_exist=`grep tinyproxy /etc/passwd|wc -l`
1335
	if [ "$tinyproxy_exist" == "1" ]
1338
	if [ "$tinyproxy_exist" == "1" ]
1336
	then
1339
	then
1337
	      userdel -r tinyproxy 2>/dev/null
1340
	      userdel -r tinyproxy 2>/dev/null
1338
	      groupdel tinyproxy 2>/dev/null
1341
	      groupdel tinyproxy 2>/dev/null
1339
	fi
1342
	fi
1340
	groupadd -f tinyproxy
1343
	groupadd -f tinyproxy
1341
	useradd -r -g tinyproxy -s /bin/false -c "system user for tinyproxy" tinyproxy
1344
	useradd -r -g tinyproxy -s /bin/false -c "system user for tinyproxy" tinyproxy
1342
	mkdir -p /var/run/tinyproxy /var/log/tinyproxy
1345
	mkdir -p /var/run/tinyproxy /var/log/tinyproxy
1343
	chown -R tinyproxy.tinyproxy /var/run/tinyproxy /var/log/tinyproxy
1346
	chown -R tinyproxy.tinyproxy /var/run/tinyproxy /var/log/tinyproxy
1344
	[ -e /etc/tinyproxy/tinyproxy.conf.default ] || cp /etc/tinyproxy/tinyproxy.conf /etc/tinyproxy/tinyproxy.conf.default
1347
	[ -e /etc/tinyproxy/tinyproxy.conf.default ] || cp /etc/tinyproxy/tinyproxy.conf /etc/tinyproxy/tinyproxy.conf.default
1345
	$SED "s?^User.*?User tinyproxy?g" /etc/tinyproxy/tinyproxy.conf
1348
	$SED "s?^User.*?User tinyproxy?g" /etc/tinyproxy/tinyproxy.conf
1346
	$SED "s?^Group.*?Group tinyproxy?g" /etc/tinyproxy/tinyproxy.conf
1349
	$SED "s?^Group.*?Group tinyproxy?g" /etc/tinyproxy/tinyproxy.conf
1347
	$SED "s?^Port.*?Port 8090?g" /etc/tinyproxy/tinyproxy.conf			# Listen Port
1350
	$SED "s?^Port.*?Port 8090?g" /etc/tinyproxy/tinyproxy.conf			# Listen Port
1348
	$SED "s?^#Listen.*?Listen $PRIVATE_IP?g" /etc/tinyproxy/tinyproxy.conf		# Listen NIC (only intif)
1351
	$SED "s?^#Listen.*?Listen $PRIVATE_IP?g" /etc/tinyproxy/tinyproxy.conf		# Listen NIC (only intif)
1349
	$SED "s?^#LogFile.*?LogFile \"/var/log/tinyproxy/tinyproxy.log\"?g" /etc/tinyproxy/tinyproxy.conf
1352
	$SED "s?^#LogFile.*?LogFile \"/var/log/tinyproxy/tinyproxy.log\"?g" /etc/tinyproxy/tinyproxy.conf
1350
	$SED "s?^#PidFile.*?PidFile \"/var/run/tinyproxy/tinyproxy.pid\"?g" /etc/tinyproxy/tinyproxy.conf
1353
	$SED "s?^#PidFile.*?PidFile \"/var/run/tinyproxy/tinyproxy.pid\"?g" /etc/tinyproxy/tinyproxy.conf
1351
	$SED "s?^LogLevel.*?LogLevel Error?g" /etc/tinyproxy/tinyproxy.conf		# Only errors are logged
1354
	$SED "s?^LogLevel.*?LogLevel Error?g" /etc/tinyproxy/tinyproxy.conf		# Only errors are logged
1352
	$SED "s?^#Upstream.*?Upstream 127.0.0.1:8090?g" /etc/tinyproxy/tinyproxy.conf	# forward to HAVP
1355
	$SED "s?^#Upstream.*?Upstream 127.0.0.1:8090?g" /etc/tinyproxy/tinyproxy.conf	# forward to HAVP
1353
	$SED "s?^#DisableViaHeader.*?DisableViaHeader Yes?g" /etc/tinyproxy/tinyproxy.conf	# Stealth mode
1356
	$SED "s?^#DisableViaHeader.*?DisableViaHeader Yes?g" /etc/tinyproxy/tinyproxy.conf	# Stealth mode
1354
	$SED "s?^Allow.*?Allow $PRIVATE_NETWORK_MASK?g" /etc/tinyproxy/tinyproxy.conf	# Allow from LAN
1357
	$SED "s?^Allow.*?Allow $PRIVATE_NETWORK_MASK?g" /etc/tinyproxy/tinyproxy.conf	# Allow from LAN
1355
# Create the systemd unit
1358
# Create the systemd unit
1356
cat << EOF > /lib/systemd/system/tinyproxy.service
1359
cat << EOF > /lib/systemd/system/tinyproxy.service
1357
#  This file is part of systemd.
1360
#  This file is part of systemd.
1358
#
1361
#
1359
#  systemd is free software; you can redistribute it and/or modify it
1362
#  systemd is free software; you can redistribute it and/or modify it
1360
#  under the terms of the GNU General Public License as published by
1363
#  under the terms of the GNU General Public License as published by
1361
#  the Free Software Foundation; either version 2 of the License, or
1364
#  the Free Software Foundation; either version 2 of the License, or
1362
#  (at your option) any later version.
1365
#  (at your option) any later version.
1363
 
1366
 
1364
# This unit launches tinyproxy (a very light proxy).
1367
# This unit launches tinyproxy (a very light proxy).
1365
# The "sleep 2" is needed because the pid file isn't ready for systemd
1368
# The "sleep 2" is needed because the pid file isn't ready for systemd
1366
[Unit]
1369
[Unit]
1367
Description=Tinyproxy Web Proxy Server
1370
Description=Tinyproxy Web Proxy Server
1368
After=network.target iptables.service
1371
After=network.target iptables.service
1369
 
1372
 
1370
[Service]
1373
[Service]
1371
Type=forking
1374
Type=forking
1372
ExecStartPre=/bin/chown -R tinyproxy.tinyproxy /var/run/tinyproxy /var/log/tinyproxy
1375
ExecStartPre=/bin/chown -R tinyproxy.tinyproxy /var/run/tinyproxy /var/log/tinyproxy
1373
ExecStartPre=/bin/sleep 2
1376
ExecStartPre=/bin/sleep 2
1374
PIDFile=/var/run/tinyproxy/tinyproxy.pid
1377
PIDFile=/var/run/tinyproxy/tinyproxy.pid
1375
ExecStart=/usr/sbin/tinyproxy -c /etc/tinyproxy/tinyproxy.conf
1378
ExecStart=/usr/sbin/tinyproxy -c /etc/tinyproxy/tinyproxy.conf
1376
 
1379
 
1377
[Install]
1380
[Install]
1378
WantedBy=multi-user.target
1381
WantedBy=multi-user.target
1379
EOF
1382
EOF
1380
 
1383
 
1381
} # end of tinyproxy
1384
} # end of tinyproxy
1382
##################################################################################
1385
##################################################################################
1383
##			function "ulogd"					##
1386
##			function "ulogd"					##
1384
## - Ulog config for multi-log files 						##
1387
## - Ulog config for multi-log files 						##
1385
##################################################################################
1388
##################################################################################
1386
ulogd ()
1389
ulogd ()
1387
{
1390
{
1388
# Three instances of ulogd (three different logfiles)
1391
# Three instances of ulogd (three different logfiles)
1389
	[ -d /var/log/firewall ] || mkdir -p /var/log/firewall
1392
	[ -d /var/log/firewall ] || mkdir -p /var/log/firewall
1390
	nl=1
1393
	nl=1
1391
	for log_type in traceability ssh ext-access
1394
	for log_type in traceability ssh ext-access
1392
	do
1395
	do
1393
		[ -e /lib/systemd/system/ulogd-$log_type.service ] || cp -f /lib/systemd/system/ulogd.service /lib/systemd/system/ulogd-$log_type.service
1396
		[ -e /lib/systemd/system/ulogd-$log_type.service ] || cp -f /lib/systemd/system/ulogd.service /lib/systemd/system/ulogd-$log_type.service
1394
		[ -e /var/log/firewall/$log_type.log ] || echo "" > /var/log/firewall/$log_type.log
1397
		[ -e /var/log/firewall/$log_type.log ] || echo "" > /var/log/firewall/$log_type.log
1395
		cp -f $DIR_CONF/ulogd-sample.conf /etc/ulogd-$log_type.conf
1398
		cp -f $DIR_CONF/ulogd-sample.conf /etc/ulogd-$log_type.conf
1396
		$SED "s?^nlgroup=.*?nlgroup=$nl?g" /etc/ulogd-$log_type.conf
1399
		$SED "s?^nlgroup=.*?nlgroup=$nl?g" /etc/ulogd-$log_type.conf
1397
		if [ "$ARCH" == "i586" ]; then $SED "s/lib64/lib/g" /etc/ulogd-$log_type.conf; fi
1400
		if [ "$ARCH" == "i586" ]; then $SED "s/lib64/lib/g" /etc/ulogd-$log_type.conf; fi
1398
		cat << EOF >> /etc/ulogd-$log_type.conf
1401
		cat << EOF >> /etc/ulogd-$log_type.conf
1399
[emu1]
1402
[emu1]
1400
file="/var/log/firewall/$log_type.log"
1403
file="/var/log/firewall/$log_type.log"
1401
sync=1
1404
sync=1
1402
EOF
1405
EOF
1403
		$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/ulogd -u ulogd -c /etc/ulogd-$log_type.conf $ULOGD_OPTIONS?g" /lib/systemd/system/ulogd-$log_type.service
1406
		$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/ulogd -u ulogd -c /etc/ulogd-$log_type.conf $ULOGD_OPTIONS?g" /lib/systemd/system/ulogd-$log_type.service
1404
		nl=`expr $nl + 1`
1407
		nl=`expr $nl + 1`
1405
	done
1408
	done
1406
	chown -R root:apache /var/log/firewall
1409
	chown -R root:apache /var/log/firewall
1407
	chmod 750 /var/log/firewall
1410
	chmod 750 /var/log/firewall
1408
	chmod 640 /var/log/firewall/*
1411
	chmod 640 /var/log/firewall/*
1409
}  # End of ulogd ()
1412
}  # End of ulogd ()
1410
 
1413
 
1411
 
1414
 
1412
##########################################################
1415
##########################################################
1413
##              Function "nfsen"			##
1416
##              Function "nfsen"			##
1414
## - install the nfsen grapher				##
1417
## - install the nfsen grapher				##
1415
## - install the two plugins porttracker & surfmap	##
1418
## - install the two plugins porttracker & surfmap	##
1416
##########################################################
1419
##########################################################
1417
nfsen()
1420
nfsen()
1418
{
1421
{
1419
	tar xzf ./conf/nfsen/nfsen-1.3.7.tar.gz -C /tmp/
1422
	tar xzf ./conf/nfsen/nfsen-1.3.7.tar.gz -C /tmp/
1420
# Add PortTracker plugin
1423
# Add PortTracker plugin
1421
	for i in /var/www/html/acc/manager/nfsen/plugins /var/log/netflow/porttracker /usr/share/nfsen/plugins
1424
	for i in /var/www/html/acc/manager/nfsen/plugins /var/log/netflow/porttracker /usr/share/nfsen/plugins
1422
	do
1425
	do
1423
	[ ! -d $i ] && mkdir -p $i && chown -R apache:apache $i
1426
	[ ! -d $i ] && mkdir -p $i && chown -R apache:apache $i
1424
	done
1427
	done
1425
	$SED "s?^my \$PORTSDBDIR =.*?my \$PORTSDBDIR = \"/var/log/netflow/porttracker\";?g" /tmp/nfsen-1.3.7/contrib/PortTracker/PortTracker.pm
1428
	$SED "s?^my \$PORTSDBDIR =.*?my \$PORTSDBDIR = \"/var/log/netflow/porttracker\";?g" /tmp/nfsen-1.3.7/contrib/PortTracker/PortTracker.pm
1426
# use of our conf file and init unit
1429
# use of our conf file and init unit
1427
	cp $DIR_CONF/nfsen/nfsen.conf /tmp/nfsen-1.3.7/etc/
1430
	cp $DIR_CONF/nfsen/nfsen.conf /tmp/nfsen-1.3.7/etc/
1428
# Installation of nfsen (we change a little 'install.pl in order not to ask the user for the perl version)
1431
# Installation of nfsen (we change a little 'install.pl in order not to ask the user for the perl version)
1429
	DirTmp=$(pwd)
1432
	DirTmp=$(pwd)
1430
	cd /tmp/nfsen-1.3.7/
1433
	cd /tmp/nfsen-1.3.7/
1431
	/usr/bin/perl install.pl etc/nfsen.conf
1434
	/usr/bin/perl install.pl etc/nfsen.conf
1432
	/usr/bin/perl install.pl etc/nfsen.conf # to avoid a Perl mistake "Semaphore introuvable"
1435
	/usr/bin/perl install.pl etc/nfsen.conf # to avoid a Perl mistake "Semaphore introuvable"
1433
# Create RRD DB for porttracker (only in it still doesn't exist)
1436
# Create RRD DB for porttracker (only in it still doesn't exist)
1434
	cp contrib/PortTracker/PortTracker.pm /usr/share/nfsen/plugins/
1437
	cp contrib/PortTracker/PortTracker.pm /usr/share/nfsen/plugins/
1435
	cp contrib/PortTracker/PortTracker.php /var/www/html/acc/manager/nfsen/plugins/
1438
	cp contrib/PortTracker/PortTracker.php /var/www/html/acc/manager/nfsen/plugins/
1436
	if [ "$(ls -A "/var/log/netflow/porttracker" 2>&1)" = "" ]; then sudo -u apache nftrack -I -d /var/log/netflow/porttracker; else echo "RRD DB already exists"; fi
1439
	if [ "$(ls -A "/var/log/netflow/porttracker" 2>&1)" = "" ]; then sudo -u apache nftrack -I -d /var/log/netflow/porttracker; else echo "RRD DB already exists"; fi
1437
	chmod -R 770 /var/log/netflow/porttracker
1440
	chmod -R 770 /var/log/netflow/porttracker
1438
# nfsen unit for systemd
1441
# nfsen unit for systemd
1439
cat << EOF > /lib/systemd/system/nfsen.service
1442
cat << EOF > /lib/systemd/system/nfsen.service
1440
#  This file is part of systemd.
1443
#  This file is part of systemd.
1441
#
1444
#
1442
#  systemd is free software; you can redistribute it and/or modify it
1445
#  systemd is free software; you can redistribute it and/or modify it
1443
#  under the terms of the GNU General Public License as published by
1446
#  under the terms of the GNU General Public License as published by
1444
#  the Free Software Foundation; either version 2 of the License, or
1447
#  the Free Software Foundation; either version 2 of the License, or
1445
#  (at your option) any later version.
1448
#  (at your option) any later version.
1446
 
1449
 
1447
# This unit launches nfsen (a Netflow grapher).
1450
# This unit launches nfsen (a Netflow grapher).
1448
[Unit]
1451
[Unit]
1449
Description= NfSen init script
1452
Description= NfSen init script
1450
After=network.target iptables.service
1453
After=network.target iptables.service
1451
 
1454
 
1452
[Service]
1455
[Service]
1453
Type=oneshot
1456
Type=oneshot
1454
RemainAfterExit=yes
1457
RemainAfterExit=yes
1455
PIDFile=/var/run/nfsen/nfsen.pid
1458
PIDFile=/var/run/nfsen/nfsen.pid
1456
ExecStartPre=/bin/mkdir -p /var/run/nfsen
1459
ExecStartPre=/bin/mkdir -p /var/run/nfsen
1457
ExecStartPre=/bin/chown apache:apache /var/run/nfsen
1460
ExecStartPre=/bin/chown apache:apache /var/run/nfsen
1458
ExecStart=/usr/bin/nfsen start 
1461
ExecStart=/usr/bin/nfsen start 
1459
ExecStop=/usr/bin/nfsen stop
1462
ExecStop=/usr/bin/nfsen stop
1460
ExecReload=/usr/bin/nfsen restart
1463
ExecReload=/usr/bin/nfsen restart
1461
TimeoutSec=0
1464
TimeoutSec=0
1462
 
1465
 
1463
[Install]
1466
[Install]
1464
WantedBy=multi-user.target
1467
WantedBy=multi-user.target
1465
EOF
1468
EOF
1466
# Add the listen port to collect netflow packet (nfcapd)
1469
# Add the listen port to collect netflow packet (nfcapd)
1467
$SED "s?'\$ziparg $extensions.*?\$ziparg $extensions -b 127.0.0.1;'?g" /usr/libexec/NfSenRC.pm 
1470
$SED "s?'\$ziparg $extensions.*?\$ziparg $extensions -b 127.0.0.1;'?g" /usr/libexec/NfSenRC.pm 
1468
# expire delay for the profile "live"
1471
# expire delay for the profile "live"
1469
	/usr/bin/systemctl start nfsen
1472
	/usr/bin/systemctl start nfsen
1470
	/bin/nfsen -m live -e 62d 2>/dev/null
1473
	/bin/nfsen -m live -e 62d 2>/dev/null
1471
# add SURFmap plugin
1474
# add SURFmap plugin
1472
	cp $DIR_CONF/nfsen/SURFmap_v3.3.1.tar.gz /tmp/
1475
	cp $DIR_CONF/nfsen/SURFmap_v3.3.1.tar.gz /tmp/
1473
	cp $DIR_CONF/nfsen/GeoLiteCity* /tmp/
1476
	cp $DIR_CONF/nfsen/GeoLiteCity* /tmp/
1474
	tar xzf /tmp/SURFmap_v3.3.1.tar.gz -C /tmp/
1477
	tar xzf /tmp/SURFmap_v3.3.1.tar.gz -C /tmp/
1475
	cd /tmp/
1478
	cd /tmp/
1476
	/usr/bin/sh SURFmap/install.sh
1479
	/usr/bin/sh SURFmap/install.sh
1477
chown -R apache:apache /var/www/html/acc/manager/nfsen /usr/share/nfsen
1480
chown -R apache:apache /var/www/html/acc/manager/nfsen /usr/share/nfsen
1478
# clear the installation
1481
# clear the installation
1479
	cd $DirTmp
1482
	cd $DirTmp
1480
	rm -rf /tmp/nfsen*
1483
	rm -rf /tmp/nfsen*
1481
	rm -rf /tmp/SURFmap*
1484
	rm -rf /tmp/SURFmap*
1482
} # End of nfsen ()
1485
} # End of nfsen ()
1483
 
1486
 
1484
##################################################
1487
##################################################
1485
##		Function "vnstat"		##
1488
##		Function "vnstat"		##
1486
## Initialization of Vnstat and vnstat phpFE    ##
1489
## Initialization of Vnstat and vnstat phpFE    ##
1487
##################################################
1490
##################################################
1488
vnstat ()
1491
vnstat ()
1489
{
1492
{
1490
	 [ -e /etc/vnstat.conf.default ] || cp /etc/vnstat.conf /etc/vnstat.conf.default
1493
	 [ -e /etc/vnstat.conf.default ] || cp /etc/vnstat.conf /etc/vnstat.conf.default
1491
	 $SED "s?Interface.*?Interface \"$EXTIF\"?g" /etc/vnstat.conf
1494
	 $SED "s?Interface.*?Interface \"$EXTIF\"?g" /etc/vnstat.conf
1492
	 [ -e $DIR_ACC/manager/stats/config.php.default ] || cp $DIR_ACC/manager/stats/config.php $DIR_ACC/manager/stats/config.php.default
1495
	 [ -e $DIR_ACC/manager/stats/config.php.default ] || cp $DIR_ACC/manager/stats/config.php $DIR_ACC/manager/stats/config.php.default
1493
	 $SED "s?\$iface_list =.*?\$iface_list = array('$EXTIF');?g" $DIR_ACC/manager/stats/config.php
1496
	 $SED "s?\$iface_list =.*?\$iface_list = array('$EXTIF');?g" $DIR_ACC/manager/stats/config.php
1494
	/usr/bin/vnstat -u -i $EXTIF
1497
	/usr/bin/vnstat -u -i $EXTIF
1495
} # End of vnstat	
1498
} # End of vnstat	
1496
##################################################
1499
##################################################
1497
##		Function "dnsmasq"		##
1500
##		Function "dnsmasq"		##
1498
##################################################
1501
##################################################
1499
dnsmasq ()
1502
dnsmasq ()
1500
{
1503
{
1501
	[ -d /var/log/dnsmasq ] || mkdir /var/log/dnsmasq
1504
	[ -d /var/log/dnsmasq ] || mkdir /var/log/dnsmasq
1502
	[ -e /etc/sysconfig/dnsmasq.default ] || cp /etc/sysconfig/dnsmasq /etc/sysconfig/dnsmasq.default
1505
	[ -e /etc/sysconfig/dnsmasq.default ] || cp /etc/sysconfig/dnsmasq /etc/sysconfig/dnsmasq.default
1503
	$SED "s?^OPTION=.*?OPTION=-C /etc/dnsmasq.conf?g" /etc/sysconfig/dnsmasq # default conf file for the first dnsmasq instance
1506
	$SED "s?^OPTION=.*?OPTION=-C /etc/dnsmasq.conf?g" /etc/sysconfig/dnsmasq # default conf file for the first dnsmasq instance
1504
	[ -e /etc/dnsmasq.conf.default ] || cp /etc/dnsmasq.conf /etc/dnsmasq.conf.default
1507
	[ -e /etc/dnsmasq.conf.default ] || cp /etc/dnsmasq.conf /etc/dnsmasq.conf.default
1505
# 1st dnsmasq listen on udp 53 ("dnsmasq - forward"). It's used as dhcp server only if "alcasar-bypass" is on.
1508
# 1st dnsmasq listen on udp 53 ("dnsmasq - forward"). It's used as dhcp server only if "alcasar-bypass" is on.
1506
	cat << EOF > /etc/dnsmasq.conf 
1509
	cat << EOF > /etc/dnsmasq.conf 
1507
# Configuration file for "dnsmasq in forward mode"
1510
# Configuration file for "dnsmasq in forward mode"
1508
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1511
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1509
listen-address=$PRIVATE_IP
1512
listen-address=$PRIVATE_IP
1510
pid-file=/var/run/dnsmasq.pid
1513
pid-file=/var/run/dnsmasq.pid
1511
listen-address=127.0.0.1
1514
listen-address=127.0.0.1
1512
no-dhcp-interface=$INTIF
1515
no-dhcp-interface=$INTIF
1513
no-dhcp-interface=tun0
1516
no-dhcp-interface=tun0
1514
no-dhcp-interface=lo
1517
no-dhcp-interface=lo
1515
bind-interfaces
1518
bind-interfaces
1516
cache-size=256
1519
cache-size=256
1517
domain=$DOMAIN
1520
domain=$DOMAIN
1518
domain-needed
1521
domain-needed
1519
expand-hosts
1522
expand-hosts
1520
bogus-priv
1523
bogus-priv
1521
filterwin2k
1524
filterwin2k
1522
server=$DNS1
1525
server=$DNS1
1523
server=$DNS2
1526
server=$DNS2
1524
# DHCP service is configured. It will be enabled in "bypass" mode
1527
# DHCP service is configured. It will be enabled in "bypass" mode
1525
#dhcp-range=$PRIVATE_FIRST_IP,$PRIVATE_LAST_IP,$PRIVATE_NETMASK,12h
1528
#dhcp-range=$PRIVATE_FIRST_IP,$PRIVATE_LAST_IP,$PRIVATE_NETMASK,12h
1526
#dhcp-option=option:router,$PRIVATE_IP
1529
#dhcp-option=option:router,$PRIVATE_IP
1527
#dhcp-option=option:ntp-server,$PRIVATE_IP
1530
#dhcp-option=option:ntp-server,$PRIVATE_IP
1528
 
1531
 
1529
# Exemple of static dhcp assignation : <@MAC>,<name>,<@IP>,<MASK>,<ttl bail>
1532
# Exemple of static dhcp assignation : <@MAC>,<name>,<@IP>,<MASK>,<ttl bail>
1530
#dhcp-host=11:22:33:44:55:66,ssic-test,192.168.182.20,255.255.255.0,45m
1533
#dhcp-host=11:22:33:44:55:66,ssic-test,192.168.182.20,255.255.255.0,45m
1531
EOF
1534
EOF
1532
# 2nd dnsmasq listen on udp 54 ("dnsmasq with blacklist")
1535
# 2nd dnsmasq listen on udp 54 ("dnsmasq with blacklist")
1533
	cat << EOF > /etc/dnsmasq-blacklist.conf 
1536
	cat << EOF > /etc/dnsmasq-blacklist.conf 
1534
# Configuration file for "dnsmasq with blacklist"
1537
# Configuration file for "dnsmasq with blacklist"
1535
# Add Toulouse blacklist domains
1538
# Add Toulouse blacklist domains
1536
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1539
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1537
conf-dir=$DIR_DEST_SHARE/dnsmasq-bl-enabled
1540
conf-dir=$DIR_DEST_SHARE/dnsmasq-bl-enabled
1538
pid-file=/var/run/dnsmasq-blacklist.pid
1541
pid-file=/var/run/dnsmasq-blacklist.pid
1539
listen-address=$PRIVATE_IP
1542
listen-address=$PRIVATE_IP
1540
port=54
1543
port=54
1541
no-dhcp-interface=$INTIF
1544
no-dhcp-interface=$INTIF
1542
no-dhcp-interface=tun0
1545
no-dhcp-interface=tun0
1543
no-dhcp-interface=lo
1546
no-dhcp-interface=lo
1544
bind-interfaces
1547
bind-interfaces
1545
cache-size=256
1548
cache-size=256
1546
domain=$DOMAIN
1549
domain=$DOMAIN
1547
domain-needed
1550
domain-needed
1548
expand-hosts
1551
expand-hosts
1549
bogus-priv
1552
bogus-priv
1550
filterwin2k
1553
filterwin2k
1551
server=$DNS1
1554
server=$DNS1
1552
server=$DNS2
1555
server=$DNS2
1553
EOF
1556
EOF
1554
# 3rd dnsmasq listen on udp 55 ("dnsmasq with whitelist")
1557
# 3rd dnsmasq listen on udp 55 ("dnsmasq with whitelist")
1555
	cat << EOF > /etc/dnsmasq-whitelist.conf 
1558
	cat << EOF > /etc/dnsmasq-whitelist.conf 
1556
# Configuration file for "dnsmasq with whitelist"
1559
# Configuration file for "dnsmasq with whitelist"
1557
# Inclusion de la whitelist <domains> de Toulouse dans la configuration
1560
# Inclusion de la whitelist <domains> de Toulouse dans la configuration
1558
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1561
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1559
conf-dir=$DIR_DEST_SHARE/dnsmasq-wl-enabled
1562
conf-dir=$DIR_DEST_SHARE/dnsmasq-wl-enabled
1560
pid-file=/var/run/dnsmasq-whitelist.pid
1563
pid-file=/var/run/dnsmasq-whitelist.pid
1561
listen-address=$PRIVATE_IP
1564
listen-address=$PRIVATE_IP
1562
port=55
1565
port=55
1563
no-dhcp-interface=$INTIF
1566
no-dhcp-interface=$INTIF
1564
no-dhcp-interface=tun0
1567
no-dhcp-interface=tun0
1565
no-dhcp-interface=lo
1568
no-dhcp-interface=lo
1566
bind-interfaces
1569
bind-interfaces
1567
cache-size=256
1570
cache-size=256
1568
domain=$DOMAIN
1571
domain=$DOMAIN
1569
domain-needed
1572
domain-needed
1570
expand-hosts
1573
expand-hosts
1571
bogus-priv
1574
bogus-priv
1572
filterwin2k
1575
filterwin2k
1573
address=/#/$PRIVATE_IP				# for Domain name without local resolution (WL)  
1576
address=/#/$PRIVATE_IP				# for Domain name without local resolution (WL)  
1574
ipset=/#/whitelist_ip_allowed			# dynamicly add the resolv IP address in the Firewall rules
1577
ipset=/#/whitelist_ip_allowed			# dynamicly add the resolv IP address in the Firewall rules
1575
EOF
1578
EOF
1576
# 4th dnsmasq listen on udp 56 ("blackhole")
1579
# 4th dnsmasq listen on udp 56 ("blackhole")
1577
	cat << EOF > /etc/dnsmasq-blackhole.conf 
1580
	cat << EOF > /etc/dnsmasq-blackhole.conf 
1578
# Configuration file for "dnsmasq as a blackhole"
1581
# Configuration file for "dnsmasq as a blackhole"
1579
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1582
conf-file=$DIR_DEST_ETC/alcasar-dns-name	# local DNS resolutions
1580
address=/#/$PRIVATE_IP				# redirect all on ALCASAR IP address
1583
address=/#/$PRIVATE_IP				# redirect all on ALCASAR IP address
1581
pid-file=/var/run/dnsmasq-blackhole.pid
1584
pid-file=/var/run/dnsmasq-blackhole.pid
1582
listen-address=$PRIVATE_IP
1585
listen-address=$PRIVATE_IP
1583
port=56
1586
port=56
1584
no-dhcp-interface=$INTIF
1587
no-dhcp-interface=$INTIF
1585
no-dhcp-interface=tun0
1588
no-dhcp-interface=tun0
1586
no-dhcp-interface=lo
1589
no-dhcp-interface=lo
1587
bind-interfaces
1590
bind-interfaces
1588
cache-size=256
1591
cache-size=256
1589
domain=$DOMAIN
1592
domain=$DOMAIN
1590
domain-needed
1593
domain-needed
1591
expand-hosts
1594
expand-hosts
1592
bogus-priv
1595
bogus-priv
1593
filterwin2k
1596
filterwin2k
1594
EOF
1597
EOF
1595
 
1598
 
1596
# the main instance should start after network and chilli (which create tun0)
1599
# the main instance should start after network and chilli (which create tun0)
1597
	[ -e /lib/systemd/system/dnsmasq.service.default ] || cp -f /lib/systemd/system/dnsmasq.service /lib/systemd/system/dnsmasq.service.default
1600
	[ -e /lib/systemd/system/dnsmasq.service.default ] || cp -f /lib/systemd/system/dnsmasq.service /lib/systemd/system/dnsmasq.service.default
1598
	$SED "s?^After=.*?After=syslog.target network-online.target chilli.service?g" /lib/systemd/system/dnsmasq.service
1601
	$SED "s?^After=.*?After=syslog.target network-online.target chilli.service?g" /lib/systemd/system/dnsmasq.service
1599
# Create dnsmasq-blacklist, dnsmasq-whitelist and dnsmasq-blackhole unit
1602
# Create dnsmasq-blacklist, dnsmasq-whitelist and dnsmasq-blackhole unit
1600
	for list in blacklist whitelist blackhole
1603
	for list in blacklist whitelist blackhole
1601
	do
1604
	do
1602
		cp -f /lib/systemd/system/dnsmasq.service /lib/systemd/system/dnsmasq-$list.service
1605
		cp -f /lib/systemd/system/dnsmasq.service /lib/systemd/system/dnsmasq-$list.service
1603
		$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/dnsmasq -C /etc/dnsmasq-$list.conf?g" /lib/systemd/system/dnsmasq-$list.service
1606
		$SED "s?^ExecStart=.*?ExecStart=/usr/sbin/dnsmasq -C /etc/dnsmasq-$list.conf?g" /lib/systemd/system/dnsmasq-$list.service
1604
		$SED "s?^PIDFile=.*?PIDFile=/var/run/dnsmasq-$list.pid?g" /lib/systemd/system/dnsmasq-$list.service
1607
		$SED "s?^PIDFile=.*?PIDFile=/var/run/dnsmasq-$list.pid?g" /lib/systemd/system/dnsmasq-$list.service
1605
	done
1608
	done
1606
} # End dnsmasq
1609
} # End dnsmasq
1607
 
1610
 
1608
##########################################################
1611
##########################################################
1609
##		Fonction "BL"				##
1612
##		Fonction "BL"				##
1610
##########################################################
1613
##########################################################
1611
BL ()
1614
BL ()
1612
{
1615
{
1613
# copy and extract toulouse BL
1616
# copy and extract toulouse BL
1614
	rm -rf $DIR_DG/lists/blacklists
1617
	rm -rf $DIR_DG/lists/blacklists
1615
	tar zxf $DIR_CONF/blacklists.tar.gz --directory=$DIR_DG/lists/ > /dev/null 2>&1
1618
	tar zxf $DIR_CONF/blacklists.tar.gz --directory=$DIR_DG/lists/ > /dev/null 2>&1
1616
# creation of the OSSI BL and WL categories (domain name and url)
1619
# creation of the OSSI BL and WL categories (domain name and url)
1617
	mkdir $DIR_DG/lists/blacklists/ossi
1620
	mkdir $DIR_DG/lists/blacklists/ossi
1618
	touch $DIR_DG/lists/blacklists/ossi/domains $DIR_DG/lists/blacklists/ossi/domains_wl
1621
	touch $DIR_DG/lists/blacklists/ossi/domains $DIR_DG/lists/blacklists/ossi/domains_wl
1619
	touch $DIR_DG/lists/blacklists/ossi/urls $DIR_DG/lists/blacklists/ossi/urls_wl
1622
	touch $DIR_DG/lists/blacklists/ossi/urls $DIR_DG/lists/blacklists/ossi/urls_wl
1620
	chown -R dansguardian:apache $DIR_DG $DIR_DEST_SHARE
1623
	chown -R dansguardian:apache $DIR_DG $DIR_DEST_SHARE
1621
	chmod -R g+rw $DIR_DG $DIR_DEST_SHARE
1624
	chmod -R g+rw $DIR_DG $DIR_DEST_SHARE
1622
# creation of file for the rehabilited domains and urls
1625
# creation of file for the rehabilited domains and urls
1623
	[ -e $DIR_DG/lists/exceptionsitelist.default ] || mv $DIR_DG/lists/exceptionsitelist $DIR_DG/lists/exceptionsitelist.default
1626
	[ -e $DIR_DG/lists/exceptionsitelist.default ] || mv $DIR_DG/lists/exceptionsitelist $DIR_DG/lists/exceptionsitelist.default
1624
	[ -e $DIR_DG/lists/exceptionurllist.default ] || mv $DIR_DG/lists/exceptionurllist $DIR_DG/lists/exceptionurllist.default
1627
	[ -e $DIR_DG/lists/exceptionurllist.default ] || mv $DIR_DG/lists/exceptionurllist $DIR_DG/lists/exceptionurllist.default
1625
	touch $DIR_DG/lists/exceptionsitelist
1628
	touch $DIR_DG/lists/exceptionsitelist
1626
	touch $DIR_DG/lists/exceptionurllist
1629
	touch $DIR_DG/lists/exceptionurllist
1627
# On crée la configuration de base du filtrage de domaine et d'URL pour Dansguardian
1630
# On crée la configuration de base du filtrage de domaine et d'URL pour Dansguardian
1628
	cat <<EOF > $DIR_DG/lists/bannedurllist
1631
	cat <<EOF > $DIR_DG/lists/bannedurllist
1629
# Dansguardian filter config for ALCASAR
1632
# Dansguardian filter config for ALCASAR
1630
EOF
1633
EOF
1631
	cat <<EOF > $DIR_DG/lists/bannedsitelist
1634
	cat <<EOF > $DIR_DG/lists/bannedsitelist
1632
# Dansguardian domain filter config for ALCASAR
1635
# Dansguardian domain filter config for ALCASAR
1633
# block all sites except those in the exceptionsitelist --> liste blanche (désactivée)
1636
# block all sites except those in the exceptionsitelist --> liste blanche (désactivée)
1634
#**
1637
#**
1635
# block all SSL and CONNECT tunnels
1638
# block all SSL and CONNECT tunnels
1636
**s
1639
**s
1637
# block all SSL and CONNECT tunnels specified only as an IP
1640
# block all SSL and CONNECT tunnels specified only as an IP
1638
*ips
1641
*ips
1639
# block all sites specified only by an IP
1642
# block all sites specified only by an IP
1640
*ip
1643
*ip
1641
EOF
1644
EOF
1642
# Add Bing and Youtube to the safesearch url regext list (parental control)
1645
# Add Bing and Youtube to the safesearch url regext list (parental control)
1643
	cat <<EOF >> $DIR_DG/lists/urlregexplist
1646
	cat <<EOF >> $DIR_DG/lists/urlregexplist
1644
# Bing - add 'adlt=strict'
1647
# Bing - add 'adlt=strict'
1645
#"(^http://[0-9a-z]+\.bing\.[a-z]+[-/%.0-9a-z]*\?)(.*)"->"\1\2&adlt=strict"
1648
#"(^http://[0-9a-z]+\.bing\.[a-z]+[-/%.0-9a-z]*\?)(.*)"->"\1\2&adlt=strict"
1646
# Youtube - add 'edufilter=your_ID' 
1649
# Youtube - add 'edufilter=your_ID' 
1647
#"(^http://[0-9a-z]+\.youtube\.[a-z]+[-/%.0-9a-z]*\?)(.*)"->"\1\2&edufilter=ABCD1234567890abcdef"
1650
#"(^http://[0-9a-z]+\.youtube\.[a-z]+[-/%.0-9a-z]*\?)(.*)"->"\1\2&edufilter=ABCD1234567890abcdef"
1648
EOF
1651
EOF
1649
# change the the google safesearch ("safe=strict" instead of "safe=vss")
1652
# change the the google safesearch ("safe=strict" instead of "safe=vss")
1650
	$SED "s?safe=vss?safe=strict?g" $DIR_DG/lists/urlregexplist
1653
	$SED "s?safe=vss?safe=strict?g" $DIR_DG/lists/urlregexplist
1651
# adapt the BL to ALCASAR architecture. Enable the default categories
1654
# adapt the BL to ALCASAR architecture. Enable the default categories
1652
	if [ "$mode" != "update" ]; then
1655
	if [ "$mode" != "update" ]; then
1653
		$DIR_DEST_SBIN/alcasar-bl.sh --adapt
1656
		$DIR_DEST_SBIN/alcasar-bl.sh --adapt
1654
		$DIR_DEST_SBIN/alcasar-bl.sh --cat_choice
1657
		$DIR_DEST_SBIN/alcasar-bl.sh --cat_choice
1655
	fi
1658
	fi
1656
}
1659
}
1657
 
1660
 
1658
##########################################################
1661
##########################################################
1659
##		Fonction "cron"				##
1662
##		Fonction "cron"				##
1660
## - Mise en place des différents fichiers de cron	##
1663
## - Mise en place des différents fichiers de cron	##
1661
##########################################################
1664
##########################################################
1662
cron ()
1665
cron ()
1663
{
1666
{
1664
# Modif du fichier 'crontab' pour passer les cron à minuit au lieu de 04h00
1667
# Modif du fichier 'crontab' pour passer les cron à minuit au lieu de 04h00
1665
	[ -e /etc/crontab.default ] || cp /etc/crontab /etc/crontab.default
1668
	[ -e /etc/crontab.default ] || cp /etc/crontab /etc/crontab.default
1666
	cat <<EOF > /etc/crontab
1669
	cat <<EOF > /etc/crontab
1667
SHELL=/bin/bash
1670
SHELL=/bin/bash
1668
PATH=/sbin:/bin:/usr/sbin:/usr/bin
1671
PATH=/sbin:/bin:/usr/sbin:/usr/bin
1669
MAILTO=root
1672
MAILTO=root
1670
HOME=/
1673
HOME=/
1671
 
1674
 
1672
# run-parts
1675
# run-parts
1673
01 * * * * root nice -n 19 run-parts --report /etc/cron.hourly
1676
01 * * * * root nice -n 19 run-parts --report /etc/cron.hourly
1674
02 0 * * * root nice -n 19 run-parts --report /etc/cron.daily
1677
02 0 * * * root nice -n 19 run-parts --report /etc/cron.daily
1675
22 0 * * 0 root nice -n 19 run-parts --report /etc/cron.weekly
1678
22 0 * * 0 root nice -n 19 run-parts --report /etc/cron.weekly
1676
42 0 1 * * root nice -n 19 run-parts --report /etc/cron.monthly
1679
42 0 1 * * root nice -n 19 run-parts --report /etc/cron.monthly
1677
EOF
1680
EOF
1678
	[ -e /etc/anacrontab.default ] || cp /etc/anacrontab /etc/anacrontab.default
1681
	[ -e /etc/anacrontab.default ] || cp /etc/anacrontab /etc/anacrontab.default
1679
	cat <<EOF >> /etc/anacrontab
1682
	cat <<EOF >> /etc/anacrontab
1680
7       8       cron.MysqlDump          nice /etc/cron.d/alcasar-mysql
1683
7       8       cron.MysqlDump          nice /etc/cron.d/alcasar-mysql
1681
7       10      cron.logExport          nice /etc/cron.d/alcasar-archive
1684
7       10      cron.logExport          nice /etc/cron.d/alcasar-archive
1682
7	20	cron.importClean	nice /etc/cron.d/alcasar-clean_import
1685
7	20	cron.importClean	nice /etc/cron.d/alcasar-clean_import
1683
EOF
1686
EOF
1684
 
1687
 
1685
	cat <<EOF > /etc/cron.d/alcasar-mysql
1688
	cat <<EOF > /etc/cron.d/alcasar-mysql
1686
# Contrôle, réparation et export de la base des usagers (tous les lundi à 4h45)
1689
# Contrôle, réparation et export de la base des usagers (tous les lundi à 4h45)
1687
45 4 * * 1 root $DIR_DEST_SBIN/alcasar-mysql.sh --dump
1690
45 4 * * 1 root $DIR_DEST_SBIN/alcasar-mysql.sh --dump
1688
# Nettoyage des utilisateurs dont la date d'expiration du compte est supérieure à 7 jours
1691
# Nettoyage des utilisateurs dont la date d'expiration du compte est supérieure à 7 jours
1689
40 4 * * * root /usr/local/sbin/alcasar-mysql.sh --expire_user 2>&1 >/dev/null
1692
40 4 * * * root /usr/local/sbin/alcasar-mysql.sh --expire_user 2>&1 >/dev/null
1690
EOF
1693
EOF
1691
	cat <<EOF > /etc/cron.d/alcasar-archive
1694
	cat <<EOF > /etc/cron.d/alcasar-archive
1692
# Archive des logs et de la base de données (tous les lundi à 5h35)
1695
# Archive des logs et de la base de données (tous les lundi à 5h35)
1693
35 5 * * 1 root $DIR_DEST_BIN/alcasar-archive.sh --now
1696
35 5 * * 1 root $DIR_DEST_BIN/alcasar-archive.sh --now
1694
EOF
1697
EOF
1695
	cat << EOF > /etc/cron.d/alcasar-ticket-clean
1698
	cat << EOF > /etc/cron.d/alcasar-ticket-clean
1696
# suppression des fichiers de mots de passe (imports massifs par fichier) et des ticket PDF d'utilisateur
1699
# suppression des fichiers de mots de passe (imports massifs par fichier) et des ticket PDF d'utilisateur
1697
30 * * * *  root $DIR_DEST_BIN/alcasar-ticket-clean.sh
1700
30 * * * *  root $DIR_DEST_BIN/alcasar-ticket-clean.sh
1698
EOF
1701
EOF
1699
	cat << EOF > /etc/cron.d/alcasar-distrib-updates
1702
	cat << EOF > /etc/cron.d/alcasar-distrib-updates
1700
# mise à jour automatique de la distribution tous les jours 3h30
1703
# mise à jour automatique de la distribution tous les jours 3h30
1701
30 3 * * *  root /usr/sbin/urpmi --auto-update --auto 2>&1
1704
30 3 * * *  root /usr/sbin/urpmi --auto-update --auto 2>&1
1702
EOF
1705
EOF
1703
	#cat << EOF > /etc/cron.d/alcasar-netflow
1706
	#cat << EOF > /etc/cron.d/alcasar-netflow
1704
# mise à jour automatique du délais d'expiration des log Nertflow (tous les vendredi à 0h05)
1707
# mise à jour automatique du délais d'expiration des log Nertflow (tous les vendredi à 0h05)
1705
#15 0 * * 1  root $DIR_DEST_BIN/alcasar-netflow.sh
1708
#15 0 * * 1  root $DIR_DEST_BIN/alcasar-netflow.sh
1706
#EOF
1709
#EOF
1707
 
1710
 
1708
# mise à jour des stats de connexion (accounting). Scripts provenant de "dialupadmin" (rpm freeradius-web) (cf. wiki.freeradius.org/Dialup_admin).
1711
# mise à jour des stats de connexion (accounting). Scripts provenant de "dialupadmin" (rpm freeradius-web) (cf. wiki.freeradius.org/Dialup_admin).
1709
# on écrase le crontab d'origine installé par le RPM "freeradius-web" (bug remonté à qa.mandriva.com : 46739).
1712
# on écrase le crontab d'origine installé par le RPM "freeradius-web" (bug remonté à qa.mandriva.com : 46739).
1710
# 'tot_stats' (tout les jours à 01h01) : aggrégat des connexions journalières par usager (renseigne la table 'totacct') 
1713
# 'tot_stats' (tout les jours à 01h01) : aggrégat des connexions journalières par usager (renseigne la table 'totacct') 
1711
# 'monthly_tot_stat' (tous les jours à 01h05) : aggrégat des connexions mensuelles par usager (renseigne la table 'mtotacct')
1714
# 'monthly_tot_stat' (tous les jours à 01h05) : aggrégat des connexions mensuelles par usager (renseigne la table 'mtotacct')
1712
# 'truncate_raddact' (tous les 1er du mois à 01h10) : supprime les entrées journalisées plus vieilles que '$back_days' jours (défini ci-après)
1715
# 'truncate_raddact' (tous les 1er du mois à 01h10) : supprime les entrées journalisées plus vieilles que '$back_days' jours (défini ci-après)
1713
# 'clean_radacct' (tous les 1er du mois à 01h15) : ferme les session ouvertes de plus de '$back_days' jours (défini ci-après)
1716
# 'clean_radacct' (tous les 1er du mois à 01h15) : ferme les session ouvertes de plus de '$back_days' jours (défini ci-après)
1714
	$SED "s?^\$back_days.*?\$back_days = 365;?g" /usr/bin/truncate_radacct
1717
	$SED "s?^\$back_days.*?\$back_days = 365;?g" /usr/bin/truncate_radacct
1715
	$SED "s?^\$back_days.*?\$back_days = 30;?g" /usr/bin/clean_radacct
1718
	$SED "s?^\$back_days.*?\$back_days = 30;?g" /usr/bin/clean_radacct
1716
	rm -f /etc/cron.daily/freeradius-web
1719
	rm -f /etc/cron.daily/freeradius-web
1717
	rm -f /etc/cron.monthly/freeradius-web
1720
	rm -f /etc/cron.monthly/freeradius-web
1718
	cat << EOF > /etc/cron.d/freeradius-web
1721
	cat << EOF > /etc/cron.d/freeradius-web
1719
1 1 * * * root /usr/bin/tot_stats > /dev/null 2>&1
1722
1 1 * * * root /usr/bin/tot_stats > /dev/null 2>&1
1720
5 1 * * * root /usr/bin/monthly_tot_stats > /dev/null 2>&1
1723
5 1 * * * root /usr/bin/monthly_tot_stats > /dev/null 2>&1
1721
10 1 1 * * root /usr/bin/truncate_radacct > /dev/null 2>&1
1724
10 1 1 * * root /usr/bin/truncate_radacct > /dev/null 2>&1
1722
15 1 1 * * root /usr/bin/clean_radacct > /dev/null 2>&1
1725
15 1 1 * * root /usr/bin/clean_radacct > /dev/null 2>&1
1723
EOF
1726
EOF
1724
	cat << EOF > /etc/cron.d/alcasar-watchdog
1727
	cat << EOF > /etc/cron.d/alcasar-watchdog
1725
# activation du "chien de garde" (watchdog) toutes les 3'
1728
# activation du "chien de garde" (watchdog) toutes les 3'
1726
*/3 * * * * root $DIR_DEST_BIN/alcasar-watchdog.sh > /dev/null 2>&1
1729
*/3 * * * * root $DIR_DEST_BIN/alcasar-watchdog.sh > /dev/null 2>&1
1727
EOF
1730
EOF
1728
# activation du "chien de garde des services" (watchdog) toutes les 18'
1731
# activation du "chien de garde des services" (watchdog) toutes les 18'
1729
	cat << EOF > /etc/cron.d/alcasar-daemon-watchdog
1732
	cat << EOF > /etc/cron.d/alcasar-daemon-watchdog
1730
# activation du "chien de garde" (daemon-watchdog) toutes les 18'
1733
# activation du "chien de garde" (daemon-watchdog) toutes les 18'
1731
*/18 * * * * root $DIR_DEST_BIN/alcasar-daemon.sh > /dev/null 2>&1
1734
*/18 * * * * root $DIR_DEST_BIN/alcasar-daemon.sh > /dev/null 2>&1
1732
EOF
1735
EOF
1733
# suppression des crons usagers
1736
# suppression des crons usagers
1734
	rm -f /var/spool/cron/*
1737
	rm -f /var/spool/cron/*
1735
} # End cron
1738
} # End cron
1736
 
1739
 
1737
##################################################################
1740
##################################################################
1738
## 			Fonction "Fail2Ban"			##
1741
## 			Fonction "Fail2Ban"			##
1739
##- Modification de la configuration de fail2ban		##
1742
##- Modification de la configuration de fail2ban		##
1740
##- Sécurisation DDOS, SSH-Brute-Force, Intercept.php ...	##
1743
##- Sécurisation DDOS, SSH-Brute-Force, Intercept.php ...	##
1741
##################################################################
1744
##################################################################
1742
fail2ban()
1745
fail2ban()
1743
{
1746
{
1744
	$DIR_CONF/fail2ban.sh
1747
	$DIR_CONF/fail2ban.sh
1745
# Autorise la lecture seule 2 des 3 fichiers de log concernés, havp est traité dans le script d'init de havp
1748
# Autorise la lecture seule 2 des 3 fichiers de log concernés, havp est traité dans le script d'init de havp
1746
	[ -e /var/log/fail2ban.log ] || touch /var/log/fail2ban.log
1749
	[ -e /var/log/fail2ban.log ] || touch /var/log/fail2ban.log
1747
	[ -e /var/Save/security/watchdog.log ] || touch /var/Save/security/watchdog.log
1750
	[ -e /var/Save/security/watchdog.log ] || touch /var/Save/security/watchdog.log
1748
	chmod 644 /var/log/fail2ban.log
1751
	chmod 644 /var/log/fail2ban.log
1749
	chmod 644 /var/Save/security/watchdog.log
1752
	chmod 644 /var/Save/security/watchdog.log
1750
	/usr/bin/touch /var/log/auth.log
1753
	/usr/bin/touch /var/log/auth.log
1751
# fail2ban unit
1754
# fail2ban unit
1752
[ -e /lib/systemd/system/fail2ban.service.default ] || cp /lib/systemd/system/fail2ban.service /lib/systemd/system/fail2ban.service.default
1755
[ -e /lib/systemd/system/fail2ban.service.default ] || cp /lib/systemd/system/fail2ban.service /lib/systemd/system/fail2ban.service.default
1753
$SED '/ExecStart=/a\ExecStop=/usr/bin/fail2ban-client stop' /usr/lib/systemd/system/fail2ban.service
1756
$SED '/ExecStart=/a\ExecStop=/usr/bin/fail2ban-client stop' /usr/lib/systemd/system/fail2ban.service
1754
$SED '/Type=/a\PIDFile=/var/run/fail2ban/fail2ban.pid' /usr/lib/systemd/system/fail2ban.service
1757
$SED '/Type=/a\PIDFile=/var/run/fail2ban/fail2ban.pid' /usr/lib/systemd/system/fail2ban.service
1755
$SED '/After=*/c After=syslog.target network.target httpd.service' /usr/lib/systemd/system/fail2ban.service
1758
$SED '/After=*/c After=syslog.target network.target httpd.service' /usr/lib/systemd/system/fail2ban.service
1756
} #Fin de fail2ban_install()
1759
} #Fin de fail2ban_install()
1757
 
1760
 
1758
##################################################################
1761
##################################################################
1759
## 			Fonction "gammu_smsd"			##
1762
## 			Fonction "gammu_smsd"			##
1760
## - Creation de la base de donnée Gammu			##
1763
## - Creation de la base de donnée Gammu			##
1761
## - Creation du fichier de config: gammu_smsd_conf		##
1764
## - Creation du fichier de config: gammu_smsd_conf		##
1762
##								##
1765
##								##
1763
##################################################################
1766
##################################################################
1764
gammu_smsd()
1767
gammu_smsd()
1765
{
1768
{
1766
# Create 'gammu' databse
1769
# Create 'gammu' databse
1767
MYSQL="/usr/bin/mysql -uroot -p$mysqlpwd --exec"
1770
MYSQL="/usr/bin/mysql -uroot -p$mysqlpwd --exec"
1768
	$MYSQL="CREATE DATABASE IF NOT EXISTS $DB_GAMMU;GRANT ALL ON $DB_GAMMU.* TO $DB_USER@localhost IDENTIFIED BY '$radiuspwd';FLUSH PRIVILEGES"
1771
	$MYSQL="CREATE DATABASE IF NOT EXISTS $DB_GAMMU;GRANT ALL ON $DB_GAMMU.* TO $DB_USER@localhost IDENTIFIED BY '$radiuspwd';FLUSH PRIVILEGES"
1769
# Add a gammu database structure
1772
# Add a gammu database structure
1770
	mysql -u$DB_USER -p$radiuspwd $DB_GAMMU < $DIR_CONF/gammu-smsd-db-vierge.sql
1773
	mysql -u$DB_USER -p$radiuspwd $DB_GAMMU < $DIR_CONF/gammu-smsd-db-vierge.sql
1771
 
1774
 
1772
# config file for the daemon
1775
# config file for the daemon
1773
cat << EOF > /etc/gammu_smsd_conf
1776
cat << EOF > /etc/gammu_smsd_conf
1774
[gammu]
1777
[gammu]
1775
port = /dev/ttyUSB0
1778
port = /dev/ttyUSB0
1776
connection = at115200
1779
connection = at115200
1777
 
1780
 
1778
;########################################################
1781
;########################################################
1779
 
1782
 
1780
[smsd]
1783
[smsd]
1781
 
1784
 
1782
PIN = 1234
1785
PIN = 1234
1783
 
1786
 
1784
logfile = /var/log/gammu-smsd/gammu-smsd.log
1787
logfile = /var/log/gammu-smsd/gammu-smsd.log
1785
logformat = textall
1788
logformat = textall
1786
debuglevel = 0
1789
debuglevel = 0
1787
 
1790
 
1788
service = sql
1791
service = sql
1789
driver = native_mysql
1792
driver = native_mysql
1790
user = $DB_USER
1793
user = $DB_USER
1791
password = $radiuspwd
1794
password = $radiuspwd
1792
pc = localhost
1795
pc = localhost
1793
database = $DB_GAMMU
1796
database = $DB_GAMMU
1794
 
1797
 
1795
RunOnReceive = /usr/local/bin/alcasar-sms.sh --new_sms
1798
RunOnReceive = /usr/local/bin/alcasar-sms.sh --new_sms
1796
 
1799
 
1797
StatusFrequency = 30
1800
StatusFrequency = 30
1798
;LoopSleep = 2
1801
;LoopSleep = 2
1799
 
1802
 
1800
;ResetFrequency = 300
1803
;ResetFrequency = 300
1801
;HardResetFrequency = 120
1804
;HardResetFrequency = 120
1802
 
1805
 
1803
CheckSecurity = 1 
1806
CheckSecurity = 1 
1804
CheckSignal = 1
1807
CheckSignal = 1
1805
CheckBattery = 0
1808
CheckBattery = 0
1806
EOF
1809
EOF
1807
 
1810
 
1808
chmod 755 /etc/gammu_smsd_conf
1811
chmod 755 /etc/gammu_smsd_conf
1809
 
1812
 
1810
#Creation dossier de log Gammu-smsd
1813
#Creation dossier de log Gammu-smsd
1811
[ -e /var/log/gammu-smsd ] || mkdir /var/log/gammu-smsd
1814
[ -e /var/log/gammu-smsd ] || mkdir /var/log/gammu-smsd
1812
chmod 755 /var/log/gammu-smsd
1815
chmod 755 /var/log/gammu-smsd
1813
 
1816
 
1814
#Edition du script sql gammu <-> radius
1817
#Edition du script sql gammu <-> radius
1815
$SED "s/^u_db=\".*/u_db=\"$DB_USER\"/g" $DIR_DEST_BIN/alcasar-sms.sh
1818
$SED "s/^u_db=\".*/u_db=\"$DB_USER\"/g" $DIR_DEST_BIN/alcasar-sms.sh
1816
$SED "s/^p_db=\".*/p_db=\"$radiuspwd\"/g" $DIR_DEST_BIN/alcasar-sms.sh
1819
$SED "s/^p_db=\".*/p_db=\"$radiuspwd\"/g" $DIR_DEST_BIN/alcasar-sms.sh
1817
 
1820
 
1818
#Création de la règle udev pour les Huawei // idVendor: 12d1
1821
#Création de la règle udev pour les Huawei // idVendor: 12d1
1819
cat << EOF > /etc/udev/rules.d/66-huawei.rules
1822
cat << EOF > /etc/udev/rules.d/66-huawei.rules
1820
KERNEL=="ttyUSB0",ATTRS{idVendor}=="12d1",RUN+="/usr/local/bin/alcasar-sms.sh --mode"
1823
KERNEL=="ttyUSB0",ATTRS{idVendor}=="12d1",RUN+="/usr/local/bin/alcasar-sms.sh --mode"
1821
EOF
1824
EOF
1822
 
1825
 
1823
} # END gammu_smsd()
1826
} # END gammu_smsd()
1824
 
1827
 
1825
##################################################################
1828
##################################################################
1826
##			Fonction "post_install"			##
1829
##			Fonction "post_install"			##
1827
## - Modification des bannières (locales et ssh) et des prompts ##
1830
## - Modification des bannières (locales et ssh) et des prompts ##
1828
## - Installation de la structure de chiffrement pour root	##
1831
## - Installation de la structure de chiffrement pour root	##
1829
## - Mise en place du sudoers et de la sécurité sur les fichiers##
1832
## - Mise en place du sudoers et de la sécurité sur les fichiers##
1830
## - Mise en place du la rotation des logs			##
1833
## - Mise en place du la rotation des logs			##
1831
## - Configuration dans le cas d'une mise à jour		##
1834
## - Configuration dans le cas d'une mise à jour		##
1832
##################################################################
1835
##################################################################
1833
post_install()
1836
post_install()
1834
{
1837
{
1835
# création de la bannière locale
1838
# création de la bannière locale
1836
	[ -e /etc/mageia-release.default ]  || cp /etc/mageia-release /etc/mageia-release.default
1839
	[ -e /etc/mageia-release.default ]  || cp /etc/mageia-release /etc/mageia-release.default
1837
	cp -f $DIR_CONF/banner /etc/mageia-release
1840
	cp -f $DIR_CONF/banner /etc/mageia-release
1838
	echo " V$VERSION" >> /etc/mageia-release
1841
	echo " V$VERSION" >> /etc/mageia-release
1839
# création de la bannière SSH
1842
# création de la bannière SSH
1840
	cp /etc/mageia-release /etc/ssh/alcasar-banner-ssh
1843
	cp /etc/mageia-release /etc/ssh/alcasar-banner-ssh
1841
	chmod 644 /etc/ssh/alcasar-banner-ssh ; chown root:root /etc/ssh/alcasar-banner-ssh
1844
	chmod 644 /etc/ssh/alcasar-banner-ssh ; chown root:root /etc/ssh/alcasar-banner-ssh
1842
	[ -e /etc/ssh/sshd_config.default ] || cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default
1845
	[ -e /etc/ssh/sshd_config.default ] || cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default
1843
	$SED "s?^Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
1846
	$SED "s?^Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
1844
	$SED "s?^#Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
1847
	$SED "s?^#Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
1845
# postfix banner anonymisation
1848
# postfix banner anonymisation
1846
	$SED "s?^smtpd_banner =.*?smtpd_banner = $myhostname ESMTP?g" /etc/postfix/main.cf
1849
	$SED "s?^smtpd_banner =.*?smtpd_banner = $myhostname ESMTP?g" /etc/postfix/main.cf
1847
# sshd écoute côté LAN et WAN
1850
# sshd écoute côté LAN et WAN
1848
	$SED "s?^#ListenAddress 0\.0\.0\.0.*?ListenAddress 0\.0\.0\.0?g" /etc/ssh/sshd_config
1851
	$SED "s?^#ListenAddress 0\.0\.0\.0.*?ListenAddress 0\.0\.0\.0?g" /etc/ssh/sshd_config
1849
	# Put the default value in conf file (sshd, QOS and protocols/dns/ are off)(web antivirus is on)
1852
	# Put the default value in conf file (sshd, QOS and protocols/dns/ are off)(web antivirus is on)
1850
	echo "SSH=off" >> $CONF_FILE
1853
	echo "SSH=off" >> $CONF_FILE
1851
	echo "SSH_ADMIN_FROM=0.0.0.0/0.0.0.0" >> $CONF_FILE
1854
	echo "SSH_ADMIN_FROM=0.0.0.0/0.0.0.0" >> $CONF_FILE
1852
	echo "QOS=off" >> $CONF_FILE
1855
	echo "QOS=off" >> $CONF_FILE
1853
	echo "LDAP=off" >> $CONF_FILE
1856
	echo "LDAP=off" >> $CONF_FILE
1854
	echo "LDAP_IP=0.0.0.0/0.0.0.0" >> $CONF_FILE
1857
	echo "LDAP_IP=0.0.0.0/0.0.0.0" >> $CONF_FILE
1855
	echo "YOUTUBE_ID=ABCD1234567890abcdef" >> $CONF_FILE
1858
	echo "YOUTUBE_ID=ABCD1234567890abcdef" >> $CONF_FILE
1856
	echo "MULTIWAN=off" >> $CONF_FILE
1859
	echo "MULTIWAN=off" >> $CONF_FILE
1857
	echo "FAILOVER=30" >> $CONF_FILE
1860
	echo "FAILOVER=30" >> $CONF_FILE
1858
	echo "## WANx=active,@IPx/mask,GWx,Weight,MTUx" >> $CONF_FILE
1861
	echo "## WANx=active,@IPx/mask,GWx,Weight,MTUx" >> $CONF_FILE
1859
	echo "#WAN1=\"1,$EXTIF:1,192.168.2.20/24,192.168.2.6,1,1500\"" >> $CONF_FILE
1862
	echo "#WAN1=\"1,$EXTIF:1,192.168.2.20/24,192.168.2.6,1,1500\"" >> $CONF_FILE
1860
	echo "#WAN2=\"1,$EXTIF:2,192.168.3.20/24,192.168.3.1,2,1500\"" >> $CONF_FILE
1863
	echo "#WAN2=\"1,$EXTIF:2,192.168.3.20/24,192.168.3.1,2,1500\"" >> $CONF_FILE
1861
# Coloration des prompts
1864
# Coloration des prompts
1862
	[ -e /etc/bashrc.default ]  || cp /etc/bashrc /etc/bashrc.default
1865
	[ -e /etc/bashrc.default ]  || cp /etc/bashrc /etc/bashrc.default
1863
	cp -f $DIR_CONF/bashrc /etc/. ; chmod 644 /etc/bashrc ; chown root:root /etc/bashrc
1866
	cp -f $DIR_CONF/bashrc /etc/. ; chmod 644 /etc/bashrc ; chown root:root /etc/bashrc
1864
	$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
1867
	$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
1865
# Droits d'exécution pour utilisateur apache et sysadmin
1868
# Droits d'exécution pour utilisateur apache et sysadmin
1866
	[ -e /etc/sudoers.default ]  || cp /etc/sudoers /etc/sudoers.default
1869
	[ -e /etc/sudoers.default ]  || cp /etc/sudoers /etc/sudoers.default
1867
	cp -f $DIR_CONF/sudoers /etc/. ; chmod 440 /etc/sudoers ; chown root:root /etc/sudoers
1870
	cp -f $DIR_CONF/sudoers /etc/. ; chmod 440 /etc/sudoers ; chown root:root /etc/sudoers
1868
	$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
1871
	$SED "s?^Host_Alias.*?Host_Alias	LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost		#réseau de l'organisme?g" /etc/sudoers
1869
# Modify some logrotate files (gammu, ulogd)
1872
# Modify some logrotate files (gammu, ulogd)
1870
	cp -f $DIR_CONF/logrotate.d/* /etc/logrotate.d/
1873
	cp -f $DIR_CONF/logrotate.d/* /etc/logrotate.d/
1871
	chmod 644 /etc/logrotate.d/*
1874
	chmod 644 /etc/logrotate.d/*
1872
# rectification sur versions précédentes de la compression des logs
1875
# rectification sur versions précédentes de la compression des logs
1873
	$SED "s?^delaycompress.*?#&?g" /etc/logrotate.conf
1876
	$SED "s?^delaycompress.*?#&?g" /etc/logrotate.conf
1874
# actualisation des fichiers logs compressés
1877
# actualisation des fichiers logs compressés
1875
	for dir in firewall dansguardian httpd
1878
	for dir in firewall dansguardian httpd
1876
	do
1879
	do
1877
	      find /var/log/$dir -type f -name *.log-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] -exec gzip {} \;
1880
	      find /var/log/$dir -type f -name *.log-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] -exec gzip {} \;
1878
	done
1881
	done
1879
# create the alcasar-load_balancing unit
1882
# create the alcasar-load_balancing unit
1880
	cat << EOF > /lib/systemd/system/alcasar-load_balancing.service
1883
	cat << EOF > /lib/systemd/system/alcasar-load_balancing.service
1881
#  This file is part of systemd.
1884
#  This file is part of systemd.
1882
#
1885
#
1883
#  systemd is free software; you can redistribute it and/or modify it
1886
#  systemd is free software; you can redistribute it and/or modify it
1884
#  under the terms of the GNU General Public License as published by
1887
#  under the terms of the GNU General Public License as published by
1885
#  the Free Software Foundation; either version 2 of the License, or
1888
#  the Free Software Foundation; either version 2 of the License, or
1886
#  (at your option) any later version.
1889
#  (at your option) any later version.
1887
 
1890
 
1888
# This unit lauches alcasar-load-balancing.sh script.
1891
# This unit lauches alcasar-load-balancing.sh script.
1889
[Unit]
1892
[Unit]
1890
Description=alcasar-load_balancing.sh execution
1893
Description=alcasar-load_balancing.sh execution
1891
After=network.target iptables.service
1894
After=network.target iptables.service
1892
 
1895
 
1893
[Service]
1896
[Service]
1894
Type=oneshot
1897
Type=oneshot
1895
RemainAfterExit=yes
1898
RemainAfterExit=yes
1896
ExecStart=/usr/local/sbin/alcasar-load_balancing.sh start
1899
ExecStart=/usr/local/sbin/alcasar-load_balancing.sh start
1897
ExecStop=/usr/local/sbin/alcasar-load_balancing.sh stop
1900
ExecStop=/usr/local/sbin/alcasar-load_balancing.sh stop
1898
TimeoutSec=0
1901
TimeoutSec=0
1899
SysVStartPriority=99
1902
SysVStartPriority=99
1900
 
1903
 
1901
[Install]
1904
[Install]
1902
WantedBy=multi-user.target
1905
WantedBy=multi-user.target
1903
EOF
1906
EOF
1904
# processes launched at boot time (Systemctl)
1907
# processes launched at boot time (Systemctl)
1905
	for i in alcasar-load_balancing mysqld httpd ntpd iptables dnsmasq dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole radiusd nfsen dansguardian freshclam ulogd-ssh ulogd-traceability ulogd-ext-access chilli fail2ban havp tinyproxy vnstat
1908
	for i in alcasar-load_balancing mysqld httpd ntpd iptables dnsmasq dnsmasq-blacklist dnsmasq-whitelist dnsmasq-blackhole radiusd nfsen dansguardian freshclam ulogd-ssh ulogd-traceability ulogd-ext-access chilli fail2ban havp tinyproxy vnstat
1906
	do
1909
	do
1907
		/usr/bin/systemctl -q enable $i.service
1910
		/usr/bin/systemctl -q enable $i.service
1908
	done
1911
	done
1909
	
1912
	
1910
# disable processes at boot time (Systemctl)
1913
# disable processes at boot time (Systemctl)
1911
	for i in ulogd
1914
	for i in ulogd
1912
	do
1915
	do
1913
		/usr/bin/systemctl -q disable $i.service
1916
		/usr/bin/systemctl -q disable $i.service
1914
	done
1917
	done
1915
	
1918
	
1916
# Apply French Security Agency (ANSSI) rules
1919
# Apply French Security Agency (ANSSI) rules
1917
# ignore ICMP broadcast (smurf attack)
1920
# ignore ICMP broadcast (smurf attack)
1918
	echo "net.ipv4.icmp_echo_ignore_broadcasts = 1" > /etc/sysctl.d/alcasar.conf
1921
	echo "net.ipv4.icmp_echo_ignore_broadcasts = 1" > /etc/sysctl.d/alcasar.conf
1919
# ignore ICMP errors bogus
1922
# ignore ICMP errors bogus
1920
	echo "net.ipv4.icmp_ignore_bogus_error_responses = 1" >> /etc/sysctl.d/alcasar.conf
1923
	echo "net.ipv4.icmp_ignore_bogus_error_responses = 1" >> /etc/sysctl.d/alcasar.conf
1921
# remove ICMP redirects responces
1924
# remove ICMP redirects responces
1922
	echo "net.ipv4.conf.all.accept_redirects = 0" >> /etc/sysctl.d/alcasar.conf
1925
	echo "net.ipv4.conf.all.accept_redirects = 0" >> /etc/sysctl.d/alcasar.conf
1923
	echo "net.ipv4.conf.all.send_redirects = 0" >> /etc/sysctl.d/alcasar.conf
1926
	echo "net.ipv4.conf.all.send_redirects = 0" >> /etc/sysctl.d/alcasar.conf
1924
# enable SYN Cookies (Syn flood attacks)
1927
# enable SYN Cookies (Syn flood attacks)
1925
	echo "net.ipv4.tcp_syncookies = 1" >> /etc/sysctl.d/alcasar.conf
1928
	echo "net.ipv4.tcp_syncookies = 1" >> /etc/sysctl.d/alcasar.conf
1926
# enable kernel antispoofing
1929
# enable kernel antispoofing
1927
	echo "net.ipv4.conf.all.rp_filter = 1" >> /etc/sysctl.d/alcasar.conf
1930
	echo "net.ipv4.conf.all.rp_filter = 1" >> /etc/sysctl.d/alcasar.conf
1928
# ignore source routing
1931
# ignore source routing
1929
	echo "net.ipv4.conf.all.accept_source_route = 0" >> /etc/sysctl.d/alcasar.conf
1932
	echo "net.ipv4.conf.all.accept_source_route = 0" >> /etc/sysctl.d/alcasar.conf
1930
# set conntrack timer to 1h (3600s) instead of 5 weeks
1933
# set conntrack timer to 1h (3600s) instead of 5 weeks
1931
	echo "net.netfilter.nf_conntrack_tcp_timeout_established = 3600" >> /etc/sysctl.d/alcasar.conf
1934
	echo "net.netfilter.nf_conntrack_tcp_timeout_established = 3600" >> /etc/sysctl.d/alcasar.conf
1932
# disable log_martians (ALCASAR is often installed between two private network addresses) 
1935
# disable log_martians (ALCASAR is often installed between two private network addresses) 
1933
	echo "net.ipv4.conf.all.log_martians = 0" >> /etc/sysctl.d/alcasar.conf
1936
	echo "net.ipv4.conf.all.log_martians = 0" >> /etc/sysctl.d/alcasar.conf
1934
# remove Magic SysReq Keys
1937
# remove Magic SysReq Keys
1935
	[ -e /etc/sysctl.d/51-alt-sysrq.conf ] && rm /etc/sysctl.d/51-alt-sysrq.conf
1938
	[ -e /etc/sysctl.d/51-alt-sysrq.conf ] && rm /etc/sysctl.d/51-alt-sysrq.conf
1936
# switch to multi-users runlevel (instead of x11)
1939
# switch to multi-users runlevel (instead of x11)
1937
	ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
1940
	ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
1938
#	GRUB modifications (only one time)
1941
#	GRUB modifications (only one time)
1939
# limit wait time to 3s
1942
# limit wait time to 3s
1940
# create an alcasar entry instead of linux-nonfb
1943
# create an alcasar entry instead of linux-nonfb
1941
# change display to 1024*768 (vga791)
1944
# change display to 1024*768 (vga791)
1942
	grub_already_modified=`grep ALCASAR /boot/grub/menu.lst|wc -l`
1945
	grub_already_modified=`grep ALCASAR /boot/grub/menu.lst|wc -l`
1943
	if [ $grub_already_modified == 0 ]
1946
	if [ $grub_already_modified == 0 ]
1944
		then
1947
		then
1945
		$SED "s?^timeout.*?timeout 3?g" /boot/grub/menu.lst
1948
		$SED "s?^timeout.*?timeout 3?g" /boot/grub/menu.lst
1946
		$SED "s?^title linux?title ALCASAR?g" /boot/grub/menu.lst
1949
		$SED "s?^title linux?title ALCASAR?g" /boot/grub/menu.lst
1947
		$SED "/^kernel/s/splash quiet //" /boot/grub/menu.lst
1950
		$SED "/^kernel/s/splash quiet //" /boot/grub/menu.lst
1948
		$SED "/^kernel/s/$/ vga=791/" /boot/grub/menu.lst
1951
		$SED "/^kernel/s/$/ vga=791/" /boot/grub/menu.lst
1949
		$SED "/^kernel/s/BOOT_IMAGE=linux /BOOT_IMAGE=linux-nonfb /" /boot/grub/menu.lst
1952
		$SED "/^kernel/s/BOOT_IMAGE=linux /BOOT_IMAGE=linux-nonfb /" /boot/grub/menu.lst
1950
		$SED "/^gfxmenu/d" /boot/grub/menu.lst
1953
		$SED "/^gfxmenu/d" /boot/grub/menu.lst
1951
	fi
1954
	fi
1952
# Remove unused services and users
1955
# Remove unused services and users
1953
	for svc in sshd
1956
	for svc in sshd
1954
	do
1957
	do
1955
		/usr/bin/systemctl -q disable $svc.service
1958
		/usr/bin/systemctl -q disable $svc.service
1956
	done
1959
	done
1957
# Load and apply the previous conf file
1960
# Load and apply the previous conf file
1958
	if [ "$mode" = "update" ]
1961
	if [ "$mode" = "update" ]
1959
	then
1962
	then
1960
		$DIR_DEST_BIN/alcasar-archive.sh --now # exports current logs in /var/Save/archive
1963
		$DIR_DEST_BIN/alcasar-archive.sh --now # exports current logs in /var/Save/archive
1961
		$DIR_DEST_BIN/alcasar-conf.sh --load
1964
		$DIR_DEST_BIN/alcasar-conf.sh --load
1962
		PARENT_SCRIPT=`basename $0`
1965
		PARENT_SCRIPT=`basename $0`
1963
		export PARENT_SCRIPT # to avoid stop&start process during the installation process
1966
		export PARENT_SCRIPT # to avoid stop&start process during the installation process
1964
		$DIR_DEST_BIN/alcasar-conf.sh --apply
1967
		$DIR_DEST_BIN/alcasar-conf.sh --apply
1965
		$SED "s?^INSTALL_DATE=.*?INSTALL_DATE=$DATE?g" $CONF_FILE
1968
		$SED "s?^INSTALL_DATE=.*?INSTALL_DATE=$DATE?g" $CONF_FILE
1966
		$SED "s?^VERSION=.*?VERSION=$VERSION?g" $CONF_FILE
1969
		$SED "s?^VERSION=.*?VERSION=$VERSION?g" $CONF_FILE
1967
	fi
1970
	fi
1968
	rm -f /tmp/alcasar-conf*
1971
	rm -f /tmp/alcasar-conf*
1969
	chown -R root:apache $DIR_DEST_ETC/*
1972
	chown -R root:apache $DIR_DEST_ETC/*
1970
	chmod -R 660 $DIR_DEST_ETC/*
1973
	chmod -R 660 $DIR_DEST_ETC/*
1971
	chmod ug+x $DIR_DEST_ETC/digest
1974
	chmod ug+x $DIR_DEST_ETC/digest
1972
# Apply and save the firewall rules
1975
# Apply and save the firewall rules
1973
 	sh $DIR_DEST_BIN/alcasar-iptables.sh
1976
 	sh $DIR_DEST_BIN/alcasar-iptables.sh
1974
	sleep 2
1977
	sleep 2
1975
	cd $DIR_INSTALL
1978
	cd $DIR_INSTALL
1976
	echo ""
1979
	echo ""
1977
	echo "#############################################################################"
1980
	echo "#############################################################################"
1978
	if [ $Lang == "fr" ]
1981
	if [ $Lang == "fr" ]
1979
		then
1982
		then
1980
		echo "#                        Fin d'installation d'ALCASAR                       #"
1983
		echo "#                        Fin d'installation d'ALCASAR                       #"
1981
		echo "#                                                                           #"
1984
		echo "#                                                                           #"
1982
		echo "#         Application Libre pour le Contrôle Authentifié et Sécurisé        #"
1985
		echo "#         Application Libre pour le Contrôle Authentifié et Sécurisé        #"
1983
		echo "#                     des Accès au Réseau ( ALCASAR )                       #"
1986
		echo "#                     des Accès au Réseau ( ALCASAR )                       #"
1984
		echo "#                                                                           #"
1987
		echo "#                                                                           #"
1985
		echo "#############################################################################"
1988
		echo "#############################################################################"
1986
		echo
1989
		echo
1987
		echo "- ALCASAR sera fonctionnel après redémarrage du système"
1990
		echo "- ALCASAR sera fonctionnel après redémarrage du système"
1988
		echo
1991
		echo
1989
		echo "- Lisez attentivement la documentation d'exploitation"
1992
		echo "- Lisez attentivement la documentation d'exploitation"
1990
		echo
1993
		echo
1991
		echo "- Le centre de controle d'ALCASAR (ACC) est à l'adresse http://alcasar"
1994
		echo "- Le centre de controle d'ALCASAR (ACC) est à l'adresse http://alcasar"
1992
		echo
1995
		echo
1993
		echo "                   Appuyez sur 'Entrée' pour continuer"
1996
		echo "                   Appuyez sur 'Entrée' pour continuer"
1994
	else	
1997
	else	
1995
		echo "#                        Enf of ALCASAR install process                     #"
1998
		echo "#                        Enf of ALCASAR install process                     #"
1996
		echo "#                                                                           #"
1999
		echo "#                                                                           #"
1997
		echo "#         Application Libre pour le Contrôle Authentifié et Sécurisé        #"
2000
		echo "#         Application Libre pour le Contrôle Authentifié et Sécurisé        #"
1998
		echo "#                     des Accès au Réseau ( ALCASAR )                       #"
2001
		echo "#                     des Accès au Réseau ( ALCASAR )                       #"
1999
		echo "#                                                                           #"
2002
		echo "#                                                                           #"
2000
		echo "#############################################################################"
2003
		echo "#############################################################################"
2001
		echo
2004
		echo
2002
		echo "- The system will be rebooted in order to operate ALCASAR"
2005
		echo "- The system will be rebooted in order to operate ALCASAR"
2003
		echo
2006
		echo
2004
		echo "- Read the exploitation documentation"
2007
		echo "- Read the exploitation documentation"
2005
		echo
2008
		echo
2006
		echo "- The ALCASAR Control Center (ACC) is at http://alcasar"
2009
		echo "- The ALCASAR Control Center (ACC) is at http://alcasar"
2007
		echo
2010
		echo
2008
		echo "                   Hit 'Enter' to continue"
2011
		echo "                   Hit 'Enter' to continue"
2009
	fi
2012
	fi
2010
	sleep 2
2013
	sleep 2
2011
	if [ "$mode" != "update" ]
2014
	if [ "$mode" != "update" ]
2012
	then
2015
	then
2013
		read a
2016
		read a
2014
	fi
2017
	fi
2015
	clear
2018
	clear
2016
	reboot
2019
	reboot
2017
} # End post_install ()
2020
} # End post_install ()
2018
 
2021
 
2019
#################################
2022
#################################
2020
#  	Main Install loop  	#
2023
#  	Main Install loop  	#
2021
#################################
2024
#################################
2022
dir_exec=`dirname "$0"`
2025
dir_exec=`dirname "$0"`
2023
if [ $dir_exec != "." ]
2026
if [ $dir_exec != "." ]
2024
then
2027
then
2025
	echo "Lancez ce programme depuis le répertoire de l'archive d'ALCASAR"
2028
	echo "Lancez ce programme depuis le répertoire de l'archive d'ALCASAR"
2026
	echo "Launch this program from the ALCASAR archive directory"
2029
	echo "Launch this program from the ALCASAR archive directory"
2027
	exit 0
2030
	exit 0
2028
fi
2031
fi
2029
VERSION=`cat $DIR_INSTALL/VERSION`
2032
VERSION=`cat $DIR_INSTALL/VERSION`
2030
usage="Usage: alcasar.sh {-i or --install} | {-u or --uninstall}"
2033
usage="Usage: alcasar.sh {-i or --install} | {-u or --uninstall}"
2031
nb_args=$#
2034
nb_args=$#
2032
args=$1
2035
args=$1
2033
if [ $nb_args -eq 0 ]
2036
if [ $nb_args -eq 0 ]
2034
then
2037
then
2035
	nb_args=1
2038
	nb_args=1
2036
	args="-h"
2039
	args="-h"
2037
fi
2040
fi
2038
chmod -R u+x $DIR_SCRIPTS/*
2041
chmod -R u+x $DIR_SCRIPTS/*
2039
case $args in
2042
case $args in
2040
	-\? | -h* | --h*)
2043
	-\? | -h* | --h*)
2041
		echo "$usage"
2044
		echo "$usage"
2042
		exit 0
2045
		exit 0
2043
		;;
2046
		;;
2044
	-i | --install)
2047
	-i | --install)
2045
		header_install
2048
		header_install
2046
		license
2049
		license
2047
		header_install
2050
		header_install
2048
		testing
2051
		testing
2049
# RPMs install
2052
# RPMs install
2050
		$DIR_SCRIPTS/alcasar-urpmi.sh
2053
		$DIR_SCRIPTS/alcasar-urpmi.sh
2051
		if [ "$?" != "0" ]
2054
		if [ "$?" != "0" ]
2052
		then
2055
		then
2053
			exit 0
2056
			exit 0
2054
		fi
2057
		fi
2055
		if [ -e $CONF_FILE ]
2058
		if [ -e $CONF_FILE ]
2056
		then
2059
		then
2057
# Uninstall the running version
2060
# Uninstall the running version
2058
			$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
2061
			$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
2059
		fi
2062
		fi
2060
# Test if manual update	
2063
# Test if manual update	
2061
		if [ -e /tmp/alcasar-conf*.tar.gz ] && [ "$mode" == "install" ]
2064
		if [ -e /tmp/alcasar-conf*.tar.gz ] && [ "$mode" == "install" ]
2062
		then
2065
		then
2063
			header_install
2066
			header_install
2064
			if [ $Lang == "fr" ]
2067
			if [ $Lang == "fr" ]
2065
				then echo "Le fichier de configuration d'une ancienne version a été trouvé";
2068
				then echo "Le fichier de configuration d'une ancienne version a été trouvé";
2066
				else echo "The configuration file of an old version has been found";
2069
				else echo "The configuration file of an old version has been found";
2067
			fi
2070
			fi
2068
			response=0
2071
			response=0
2069
			PTN='^[oOnNyY]$'
2072
			PTN='^[oOnNyY]$'
2070
			until [[ $(expr $response : $PTN) -gt 0 ]]
2073
			until [[ $(expr $response : $PTN) -gt 0 ]]
2071
			do
2074
			do
2072
				if [ $Lang == "fr" ]
2075
				if [ $Lang == "fr" ]
2073
					then echo -n "Voulez-vous l'utiliser (O/n)? ";
2076
					then echo -n "Voulez-vous l'utiliser (O/n)? ";
2074
					else echo -n "Do you want to use it (Y/n)?";
2077
					else echo -n "Do you want to use it (Y/n)?";
2075
				 fi
2078
				 fi
2076
				read response
2079
				read response
2077
				if [ "$response" = "n" ] || [ "$response" = "N" ] 
2080
				if [ "$response" = "n" ] || [ "$response" = "N" ] 
2078
				then rm -f /tmp/alcasar-conf*
2081
				then rm -f /tmp/alcasar-conf*
2079
				fi
2082
				fi
2080
			done
2083
			done
2081
		fi
2084
		fi
2082
# Test if update
2085
# Test if update
2083
		if [ -e /tmp/alcasar-conf* ] 
2086
		if [ -e /tmp/alcasar-conf* ] 
2084
		then
2087
		then
2085
			if [ $Lang == "fr" ]
2088
			if [ $Lang == "fr" ]
2086
				then echo "#### Installation avec mise à jour ####";
2089
				then echo "#### Installation avec mise à jour ####";
2087
				else echo "#### Installation with update     ####";
2090
				else echo "#### Installation with update     ####";
2088
			fi
2091
			fi
2089
# Extract the central configuration file
2092
# Extract the central configuration file
2090
			tar -xf /tmp/alcasar-conf* conf/etc/alcasar.conf 
2093
			tar -xf /tmp/alcasar-conf* conf/etc/alcasar.conf 
2091
			ORGANISME=`grep ORGANISM conf/etc/alcasar.conf|cut -d"=" -f2`
2094
			ORGANISME=`grep ORGANISM conf/etc/alcasar.conf|cut -d"=" -f2`
2092
			PREVIOUS_VERSION=`grep VERSION conf/etc/alcasar.conf|cut -d"=" -f2`
2095
			PREVIOUS_VERSION=`grep VERSION conf/etc/alcasar.conf|cut -d"=" -f2`
2093
			MAJ_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f1`
2096
			MAJ_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f1`
2094
			MIN_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f2|cut -c1`
2097
			MIN_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f2|cut -c1`
2095
			UPD_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f3`
2098
			UPD_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f3`
2096
			mode="update"
2099
			mode="update"
2097
		fi
2100
		fi
2098
		for func in init network ACC CA init_db radius radius_web chilli dansguardian antivirus tinyproxy ulogd nfsen vnstat dnsmasq BL cron fail2ban gammu_smsd post_install
2101
		for func in init network ACC CA init_db radius radius_web chilli dansguardian antivirus tinyproxy ulogd nfsen vnstat dnsmasq BL cron fail2ban gammu_smsd post_install
2099
		do
2102
		do
2100
			$func
2103
			$func
2101
# echo "*** 'debug' : end of function $func ***"; read a
2104
# echo "*** 'debug' : end of function $func ***"; read a
2102
		done
2105
		done
2103
		;;
2106
		;;
2104
	-u | --uninstall)
2107
	-u | --uninstall)
2105
		if [ ! -e $DIR_DEST_SBIN/alcasar-uninstall.sh ]
2108
		if [ ! -e $DIR_DEST_SBIN/alcasar-uninstall.sh ]
2106
		then
2109
		then
2107
			if [ $Lang == "fr" ]
2110
			if [ $Lang == "fr" ]
2108
				then echo "ALCASAR n'est pas installé!";
2111
				then echo "ALCASAR n'est pas installé!";
2109
				else echo "ALCASAR isn't installed!";
2112
				else echo "ALCASAR isn't installed!";
2110
			fi
2113
			fi
2111
			exit 0
2114
			exit 0
2112
		fi
2115
		fi
2113
		response=0
2116
		response=0
2114
		PTN='^[oOnN]$'
2117
		PTN='^[oOnN]$'
2115
		until [[ $(expr $response : $PTN) -gt 0 ]]
2118
		until [[ $(expr $response : $PTN) -gt 0 ]]
2116
		do
2119
		do
2117
			if [ $Lang == "fr" ]
2120
			if [ $Lang == "fr" ]
2118
				then echo -n "Voulez-vous créer le fichier de configuration de la version actuelle (0/n)? ";
2121
				then echo -n "Voulez-vous créer le fichier de configuration de la version actuelle (0/n)? ";
2119
				else echo -n "Do you want to create the running version configuration file (Y/n)? ";
2122
				else echo -n "Do you want to create the running version configuration file (Y/n)? ";
2120
			fi
2123
			fi
2121
			read response
2124
			read response
2122
		done
2125
		done
2123
		if [ "$response" = "o" ] || [ "$response" = "O" ] || [ "$response" = "Y" ] || [ "$response" = "y" ]
2126
		if [ "$response" = "o" ] || [ "$response" = "O" ] || [ "$response" = "Y" ] || [ "$response" = "y" ]
2124
		then
2127
		then
2125
			$DIR_SCRIPTS/alcasar-conf.sh --create
2128
			$DIR_SCRIPTS/alcasar-conf.sh --create
2126
		else	
2129
		else	
2127
			rm -f /tmp/alcasar-conf*
2130
			rm -f /tmp/alcasar-conf*
2128
		fi
2131
		fi
2129
# Uninstall the running version
2132
# Uninstall the running version
2130
		$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
2133
		$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
2131
		;;
2134
		;;
2132
	*)
2135
	*)
2133
		echo "Argument inconnu :$1";
2136
		echo "Argument inconnu :$1";
2134
		echo "Unknown argument :$1";
2137
		echo "Unknown argument :$1";
2135
		echo "$usage"
2138
		echo "$usage"
2136
		exit 1
2139
		exit 1
2137
		;;
2140
		;;
2138
esac
2141
esac
2139
# end of script
2142
# end of script
2140
 
2143
 
2141
 
2144