Subversion Repositories ALCASAR

Rev

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

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