Subversion Repositories ALCASAR

Rev

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

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