672 |
richard |
1 |
#!/bin/bash
|
57 |
franck |
2 |
# $Id: alcasar.sh 832 2012-03-04 21:17:43Z richard $
|
1 |
root |
3 |
|
|
|
4 |
# alcasar.sh
|
|
|
5 |
# by Franck BOUIJOUX, Pascal LEVANT and Richard REY
|
|
|
6 |
# This script is distributed under the Gnu General Public License (GPL)
|
|
|
7 |
|
672 |
richard |
8 |
# Script d'installation d'ALCASAR (Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau)
|
|
|
9 |
# ALCASAR est architecturé autour d'une distribution Linux Mandriva minimaliste et les logiciels libres suivants :
|
1 |
root |
10 |
# Install script for ALCASAR (a secured and authenticated Internet access control captive portal)
|
|
|
11 |
# ALCASAR is based on a stripped Mandriva (LSB) with the following open source softwares :
|
672 |
richard |
12 |
#
|
806 |
richard |
13 |
# Coovachilli (a fork of chillispot), freeradius, mysql, apache, netfilter, squid, dansguardian, awstat, ntpd, openssl, dnsmasq, havp, libclamav and firewalleyes
|
1 |
root |
14 |
|
|
|
15 |
# Options :
|
376 |
franck |
16 |
# -i or --install
|
|
|
17 |
# -u or --uninstall
|
1 |
root |
18 |
|
376 |
franck |
19 |
# Functions :
|
29 |
richard |
20 |
# testing : Tests de connectivité et de téléchargement avant installation
|
1 |
root |
21 |
# init : Installation des RPM et des scripts
|
|
|
22 |
# network : Paramètrage du réseau
|
|
|
23 |
# gestion : Installation de l'interface de gestion
|
|
|
24 |
# AC : Initialisation de l'autorité de certification. Création des certificats
|
|
|
25 |
# init_db : Création de la base 'radius' sur le serveur MySql
|
|
|
26 |
# param_radius : Configuration du serveur d'authentification FreeRadius
|
|
|
27 |
# param_web_radius: Configuration de l'interface de gestion de FreeRadius (dialupadmin)
|
|
|
28 |
# param_chilli : Configuration du daemon 'coova-chilli' et de la page d'authentification
|
|
|
29 |
# param_squid : Configuration du proxy squid en mode 'cache'
|
|
|
30 |
# param_dansguardian : Configuration de l'analyseur de contenu DansGuardian
|
479 |
richard |
31 |
# antivirus : Installation havp + libclamav
|
1 |
root |
32 |
# param_awstats : Configuration de l'interface des statistiques de consultation WEB
|
297 |
richard |
33 |
# dnsmasq : Configuration du serveur de noms et du serveur dhcp de secours
|
308 |
richard |
34 |
# BL : Configuration de la BlackList
|
1 |
root |
35 |
# cron : Mise en place des exports de logs (+ chiffrement)
|
532 |
richard |
36 |
# post_install : Finalisation environnement ( sécurité, bannières, rotation logs, ...)
|
1 |
root |
37 |
|
|
|
38 |
DATE=`date '+%d %B %Y - %Hh%M'`
|
|
|
39 |
DATE_SHORT=`date '+%d/%m/%Y'`
|
595 |
richard |
40 |
Lang=`echo $LANG|cut -c 1-2`
|
1 |
root |
41 |
# ******* Files parameters - paramètres fichiers *********
|
832 |
richard |
42 |
DIR_INSTALL=`pwd` # install directory
|
1 |
root |
43 |
DIR_CONF="$DIR_INSTALL/conf" # répertoire d'installation contenant les fichiers de configuration
|
|
|
44 |
DIR_SCRIPTS="$DIR_INSTALL/scripts" # répertoire d'installation contenant les scripts
|
806 |
richard |
45 |
DIR_SAVE="/var/Save" # répertoire de sauvegarde (system_backup, user_db_backup, logs)
|
316 |
richard |
46 |
DIR_WEB="/var/www/html" # répertoire racine APACHE
|
648 |
richard |
47 |
DIR_DG="/etc/dansguardian" # répertoire de config de DansGuardian
|
316 |
richard |
48 |
DIR_ACC="$DIR_WEB/acc" # répertoire du centre de gestion 'ALCASAR Control Center'
|
1 |
root |
49 |
DIR_DEST_BIN="/usr/local/bin" # répertoire des scripts
|
|
|
50 |
DIR_DEST_SBIN="/usr/local/sbin" # répertoire des scripts d'admin
|
|
|
51 |
DIR_DEST_ETC="/usr/local/etc" # répertoire des fichiers de conf
|
628 |
richard |
52 |
CONF_FILE="$DIR_DEST_ETC/alcasar.conf" # fichier de conf d'alcasar
|
|
|
53 |
PASSWD_FILE="/root/ALCASAR-passwords.txt" # fichier texte contenant les mots de passe et secrets partagés
|
1 |
root |
54 |
# ******* DBMS parameters - paramètres SGBD ********
|
|
|
55 |
DB_RADIUS="radius" # nom de la base de données utilisée par le serveur FreeRadius
|
|
|
56 |
DB_USER="radius" # nom de l'utilisateur de la base de données
|
|
|
57 |
# ******* Network parameters - paramètres réseau *******
|
503 |
richard |
58 |
HOSTNAME="alcasar" #
|
1 |
root |
59 |
DOMAIN="localdomain" # domaine local
|
|
|
60 |
EXTIF="eth0" # ETH0 est l'interface connectée à Internet (Box FAI)
|
|
|
61 |
INTIF="eth1" # ETH1 est l'interface connectée au réseau local de consultation
|
597 |
richard |
62 |
DEFAULT_PRIVATE_IP_MASK="192.168.182.1/24" # adresse d'ALCASAR (+masque) proposée par défaut sur le réseau de consultation
|
1 |
root |
63 |
# ****** Paths - chemin des commandes *******
|
|
|
64 |
SED="/bin/sed -i"
|
|
|
65 |
# ****************** End of global parameters *********************
|
|
|
66 |
|
|
|
67 |
header_install ()
|
|
|
68 |
{
|
|
|
69 |
clear
|
|
|
70 |
echo "-----------------------------------------------------------------------------"
|
460 |
richard |
71 |
echo " ALCASAR V$VERSION Installation"
|
1 |
root |
72 |
echo "Application Libre pour le Contrôle d'Accès Sécurisé et Authentifié au Réseau"
|
|
|
73 |
echo "-----------------------------------------------------------------------------"
|
|
|
74 |
} # End of header_install ()
|
|
|
75 |
|
|
|
76 |
##################################################################
|
29 |
richard |
77 |
## Fonction TESTING ##
|
|
|
78 |
## - Test de la connectivité Internet ##
|
|
|
79 |
##################################################################
|
|
|
80 |
testing ()
|
|
|
81 |
{
|
595 |
richard |
82 |
if [ $Lang == "fr" ]
|
784 |
richard |
83 |
then echo -n "Tests des paramètres réseau : "
|
595 |
richard |
84 |
else echo -n "Network parameters tests : "
|
|
|
85 |
fi
|
784 |
richard |
86 |
# We test eth0 config files
|
|
|
87 |
PUBLIC_IP=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-$EXTIF|cut -d"=" -f2`
|
|
|
88 |
PUBLIC_GATEWAY=`grep GATEWAY /etc/sysconfig/network-scripts/ifcfg-$EXTIF|cut -d"=" -f2`
|
|
|
89 |
if [ `echo $PUBLIC_IP|wc -c` -lt 7 ] || [ `echo $PUBLIC_GATEWAY|wc -c` -lt 7 ]
|
|
|
90 |
then
|
|
|
91 |
if [ $Lang == "fr" ]
|
|
|
92 |
then
|
|
|
93 |
echo "Échec"
|
|
|
94 |
echo "La carte réseau connectée à Internet ($EXTIF) n'est pas correctement configurée."
|
|
|
95 |
echo "Renseignez les champs suivants dans le fichier '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
|
830 |
richard |
96 |
echo "Appliquez les changements : 'service network restart'"
|
784 |
richard |
97 |
else
|
|
|
98 |
echo "Failed"
|
|
|
99 |
echo "The Internet connected network card ($EXTIF) isn't well configured."
|
|
|
100 |
echo "The folowing parametres must be set in the file '/etc/sysconfig/network-scripts/ifcfg-$EXTIF' :"
|
830 |
richard |
101 |
echo "Apply the new configuration 'service network restart'"
|
784 |
richard |
102 |
fi
|
830 |
richard |
103 |
echo "DEVICE=$EXTIF"
|
784 |
richard |
104 |
echo "IPADDR="
|
|
|
105 |
echo "NETMASK="
|
|
|
106 |
echo "GATEWAY="
|
|
|
107 |
echo "DNS1="
|
|
|
108 |
echo "DNS2="
|
830 |
richard |
109 |
echo "ONBOOT=yes"
|
784 |
richard |
110 |
exit 0
|
|
|
111 |
fi
|
|
|
112 |
echo -n "."
|
460 |
richard |
113 |
# We test the Ethernet links state
|
29 |
richard |
114 |
for i in $EXTIF $INTIF
|
|
|
115 |
do
|
294 |
richard |
116 |
/sbin/ip link set $i up
|
306 |
richard |
117 |
sleep 3
|
808 |
franck |
118 |
CMD=`/usr/sbin/ethtool $i |grep Link | awk '{print $NF}'`
|
|
|
119 |
CMD2=`/sbin/mii-tool $i | grep -i link | awk '{print $NF}'`
|
|
|
120 |
if [ $CMD != "yes" ] && [ $CMD2 != "ok" ]
|
29 |
richard |
121 |
then
|
595 |
richard |
122 |
if [ $Lang == "fr" ]
|
|
|
123 |
then
|
|
|
124 |
echo "Échec"
|
|
|
125 |
echo "Le lien réseau de la carte $i n'est pas actif."
|
|
|
126 |
echo "Réglez ce problème puis relancez ce script."
|
|
|
127 |
else
|
|
|
128 |
echo "Failed"
|
|
|
129 |
echo "The link state of $i interface id down."
|
|
|
130 |
echo "Resolv this problem, then restart this script."
|
|
|
131 |
fi
|
29 |
richard |
132 |
exit 0
|
|
|
133 |
fi
|
308 |
richard |
134 |
echo -n "."
|
29 |
richard |
135 |
done
|
|
|
136 |
# On teste la présence d'un routeur par défaut (Box FAI)
|
784 |
richard |
137 |
if [ `ip route list|grep -c ^default` -ne "1" ] ; then
|
595 |
richard |
138 |
if [ $Lang == "fr" ]
|
|
|
139 |
then
|
|
|
140 |
echo "Échec"
|
|
|
141 |
echo "Vous n'avez pas configuré l'accès à Internet ou le câble réseau n'est pas sur la bonne carte."
|
|
|
142 |
echo "Réglez ce problème puis relancez ce script."
|
|
|
143 |
else
|
|
|
144 |
echo "Failed"
|
|
|
145 |
echo "You haven't configured Internet access or Internet link is on the wrong Ethernet card"
|
|
|
146 |
echo "Resolv this problem, then restart this script."
|
|
|
147 |
fi
|
29 |
richard |
148 |
exit 0
|
|
|
149 |
fi
|
308 |
richard |
150 |
echo -n "."
|
|
|
151 |
# On traite le cas où l'interface configurée lors de l'installation est "eth1" au lieu de "eth0" (mystère sur certaines version de BIOS et de VirtualBox)
|
784 |
richard |
152 |
if [ `ip route list|grep ^default|grep -c eth1` -eq "1" ] ; then
|
595 |
richard |
153 |
if [ $Lang == "fr" ]
|
|
|
154 |
then echo "La configuration des cartes réseau va être corrigée."
|
|
|
155 |
else echo "The Ethernet card configuration will be corrected."
|
|
|
156 |
fi
|
29 |
richard |
157 |
/etc/init.d/network stop
|
|
|
158 |
mv -f /etc/sysconfig/network-scripts/ifcfg-eth1 /etc/sysconfig/network-scripts/ifcfg-eth0
|
|
|
159 |
$SED "s?eth1?eth0?g" /etc/sysconfig/network-scripts/ifcfg-eth0
|
|
|
160 |
/etc/init.d/network start
|
|
|
161 |
echo 0 > /proc/sys/net/ipv4/conf/all/log_martians
|
|
|
162 |
sleep 2
|
595 |
richard |
163 |
if [ $Lang == "fr" ]
|
|
|
164 |
then echo "Configuration corrigée"
|
|
|
165 |
else echo "Configuration updated"
|
|
|
166 |
fi
|
29 |
richard |
167 |
sleep 2
|
595 |
richard |
168 |
if [ $Lang == "fr" ]
|
|
|
169 |
then echo "Vous pouvez relancer ce script."
|
|
|
170 |
else echo "You can restart this script."
|
|
|
171 |
fi
|
29 |
richard |
172 |
exit 0
|
|
|
173 |
fi
|
308 |
richard |
174 |
echo -n "."
|
|
|
175 |
# On test le lien vers le routeur par default
|
|
|
176 |
IP_GW=`ip route list|grep ^default|cut -d" " -f3`
|
|
|
177 |
arp_reply=`/usr/sbin/arping -b -I$EXTIF -c1 -w2 $IP_GW|grep response|cut -d" " -f2`
|
527 |
richard |
178 |
if [ $(expr $arp_reply) -eq 0 ]
|
308 |
richard |
179 |
then
|
595 |
richard |
180 |
if [ $Lang == "fr" ]
|
|
|
181 |
then
|
|
|
182 |
echo "Échec"
|
|
|
183 |
echo "Le routeur de site ou la Box Internet ($IP_GW) ne répond pas."
|
|
|
184 |
echo "Réglez ce problème puis relancez ce script."
|
|
|
185 |
else
|
|
|
186 |
echo "Failed"
|
|
|
187 |
echo "The Internet gateway doesn't answered"
|
|
|
188 |
echo "Resolv this problem, then restart this script."
|
|
|
189 |
fi
|
308 |
richard |
190 |
exit 0
|
|
|
191 |
fi
|
|
|
192 |
echo -n "."
|
421 |
franck |
193 |
# On teste la connectivité Internet
|
29 |
richard |
194 |
rm -rf /tmp/con_ok.html
|
308 |
richard |
195 |
/usr/bin/curl www.google.fr -s -o /tmp/con_ok.html
|
29 |
richard |
196 |
if [ ! -e /tmp/con_ok.html ]
|
|
|
197 |
then
|
595 |
richard |
198 |
if [ $Lang == "fr" ]
|
|
|
199 |
then
|
|
|
200 |
echo "La tentative de connexion vers Internet a échoué (google.fr)."
|
|
|
201 |
echo "Vérifiez que la carte $EXTIF est bien connectée au routeur du FAI."
|
|
|
202 |
echo "Vérifiez la validité des adresses IP des DNS."
|
|
|
203 |
else
|
|
|
204 |
echo "The Internet connection try failed (google.fr)."
|
|
|
205 |
echo "Please, verify that the $EXTIF card is connected with the Internet gateway."
|
|
|
206 |
echo "Verify the DNS IP addresses"
|
|
|
207 |
fi
|
29 |
richard |
208 |
exit 0
|
|
|
209 |
fi
|
|
|
210 |
rm -rf /tmp/con_ok.html
|
308 |
richard |
211 |
echo ". : ok"
|
302 |
richard |
212 |
} # end of testing
|
|
|
213 |
|
|
|
214 |
##################################################################
|
|
|
215 |
## Fonction INIT ##
|
|
|
216 |
## - Création du fichier "/root/ALCASAR_parametres.txt" ##
|
|
|
217 |
## - Installation et modification des scripts du portail ##
|
|
|
218 |
##################################################################
|
|
|
219 |
init ()
|
|
|
220 |
{
|
527 |
richard |
221 |
if [ "$mode" != "update" ]
|
302 |
richard |
222 |
then
|
|
|
223 |
# On affecte le nom d'organisme
|
597 |
richard |
224 |
header_install
|
302 |
richard |
225 |
ORGANISME=!
|
|
|
226 |
PTN='^[a-zA-Z0-9-]*$'
|
580 |
richard |
227 |
until [[ $(expr $ORGANISME : $PTN) -gt 0 ]]
|
302 |
richard |
228 |
do
|
595 |
richard |
229 |
if [ $Lang == "fr" ]
|
597 |
richard |
230 |
then echo -n "Entrez le nom de votre organisme : "
|
|
|
231 |
else echo -n "Enter the name of your organism : "
|
595 |
richard |
232 |
fi
|
330 |
franck |
233 |
read ORGANISME
|
613 |
richard |
234 |
if [ "$ORGANISME" == "" ]
|
330 |
franck |
235 |
then
|
|
|
236 |
ORGANISME=!
|
|
|
237 |
fi
|
|
|
238 |
done
|
302 |
richard |
239 |
fi
|
1 |
root |
240 |
# On crée aléatoirement les mots de passe et les secrets partagés
|
628 |
richard |
241 |
rm -f $PASSWD_FILE
|
59 |
richard |
242 |
grubpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8` # mot de passe de protection du menu Grub
|
628 |
richard |
243 |
echo -n "Password to protect the boot menu (GRUB) : " > $PASSWD_FILE
|
|
|
244 |
echo "$grubpwd" >> $PASSWD_FILE
|
59 |
richard |
245 |
md5_grubpwd=`/usr/bin/md5pass $grubpwd`
|
384 |
richard |
246 |
$SED "/^password.*/d" /boot/grub/menu.lst
|
|
|
247 |
$SED "1ipassword --md5 $md5_grubpwd" /boot/grub/menu.lst
|
1 |
root |
248 |
mysqlpwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8` # mot de passe de l'administrateur Mysqld
|
628 |
richard |
249 |
echo -n "Name and password of MYSQL administrator : " >> $PASSWD_FILE
|
|
|
250 |
echo "root / $mysqlpwd" >> $PASSWD_FILE
|
1 |
root |
251 |
radiuspwd=`cat /dev/urandom | tr -dc [:alnum:] | head -c8` # mot de passe de l'utilisateur Mysqld (utilisé par freeradius)
|
628 |
richard |
252 |
echo -n "Name and password of MYSQL user : " >> $PASSWD_FILE
|
|
|
253 |
echo "$DB_USER / $radiuspwd" >> $PASSWD_FILE
|
1 |
root |
254 |
secretuam=`cat /dev/urandom | tr -dc [:alnum:] | head -c8` # secret partagé entre intercept.php et coova-chilli
|
628 |
richard |
255 |
echo -n "Shared secret between the script 'intercept.php' and coova-chilli : " >> $PASSWD_FILE
|
|
|
256 |
echo "$secretuam" >> $PASSWD_FILE
|
1 |
root |
257 |
secretradius=`cat /dev/urandom | tr -dc [:alnum:] | head -c8` # secret partagé entre coova-chilli et FreeRadius
|
628 |
richard |
258 |
echo -n "Shared secret between coova-chilli and FreeRadius : " >> $PASSWD_FILE
|
|
|
259 |
echo "$secretradius" >> $PASSWD_FILE
|
|
|
260 |
chmod 640 $PASSWD_FILE
|
453 |
franck |
261 |
# On installe les scripts et fichiers de configuration d'ALCASAR
|
806 |
richard |
262 |
# - dans /usr/local/bin : alcasar-{CA.sh,conf.sh,import-clean.sh,iptables-bypass.sh,iptables.sh,log-clean.sh,log-export.sh,watchdog.sh}
|
5 |
franck |
263 |
cp -f $DIR_SCRIPTS/alcasar* $DIR_DEST_BIN/. ; chown root:root $DIR_DEST_BIN/alcasar* ; chmod 740 $DIR_DEST_BIN/alcasar*
|
453 |
franck |
264 |
# - dans /usr/local/sbin : alcasar-{bl.sh,bypass.sh,dateLog.sh,havp.sh,logout.sh,mysql.sh,nf.sh,profil.sh,uninstall.sh,version-list.sh,load-balancing.sh}
|
5 |
franck |
265 |
cp -f $DIR_SCRIPTS/sbin/alcasar* $DIR_DEST_SBIN/. ; chown root:root $DIR_DEST_SBIN/alcasar* ; chmod 740 $DIR_DEST_SBIN/alcasar*
|
453 |
franck |
266 |
# - des fichiers de conf dans /usr/local/etc : alcasar-{bl-categories-enabled,dns-name,ethers,iptables-local.sh,services}
|
648 |
richard |
267 |
cp -f $DIR_CONF/etc/alcasar* $DIR_DEST_ETC/. ; chown root:apache $DIR_DEST_ETC/alcasar* ; chmod 660 $DIR_DEST_ETC/alcasar*
|
1 |
root |
268 |
$SED "s?^radiussecret.*?radiussecret=\"$secretradius\"?g" $DIR_DEST_SBIN/alcasar-logout.sh
|
|
|
269 |
$SED "s?^DB_RADIUS=.*?DB_RADIUS=\"$DB_RADIUS\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh
|
5 |
franck |
270 |
$SED "s?^DB_USER=.*?DB_USER=\"$DB_USER\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
|
|
|
271 |
$SED "s?^radiuspwd=.*?radiuspwd=\"$radiuspwd\"?g" $DIR_DEST_SBIN/alcasar-mysql.sh $DIR_DEST_BIN/alcasar-conf.sh
|
628 |
richard |
272 |
# generate central conf file
|
|
|
273 |
cat <<EOF > $CONF_FILE
|
612 |
richard |
274 |
##########################################
|
|
|
275 |
## ##
|
|
|
276 |
## ALCASAR Parameters ##
|
|
|
277 |
## ##
|
|
|
278 |
##########################################
|
1 |
root |
279 |
|
612 |
richard |
280 |
INSTALL_DATE=$DATE
|
|
|
281 |
VERSION=$VERSION
|
|
|
282 |
ORGANISM=$ORGANISME
|
|
|
283 |
EOF
|
628 |
richard |
284 |
chmod o-rwx $CONF_FILE
|
1 |
root |
285 |
} # End of init ()
|
|
|
286 |
|
|
|
287 |
##################################################################
|
|
|
288 |
## Fonction network ##
|
|
|
289 |
## - Définition du plan d'adressage du réseau de consultation ##
|
595 |
richard |
290 |
## - Nommage DNS du système ##
|
1 |
root |
291 |
## - Configuration de l'interface eth1 (réseau de consultation) ##
|
|
|
292 |
## - Modification du fichier /etc/hosts ##
|
|
|
293 |
## - Configuration du serveur de temps (NTP) ##
|
|
|
294 |
## - Renseignement des fichiers hosts.allow et hosts.deny ##
|
|
|
295 |
##################################################################
|
|
|
296 |
network ()
|
|
|
297 |
{
|
|
|
298 |
header_install
|
636 |
richard |
299 |
if [ "$mode" != "update" ]
|
|
|
300 |
then
|
|
|
301 |
if [ $Lang == "fr" ]
|
|
|
302 |
then echo "Par défaut, l'adresse IP d'ALCASAR sur le réseau de consultation est : $DEFAULT_PRIVATE_IP_MASK"
|
|
|
303 |
else echo "The default ALCASAR IP address on consultation network is : $DEFAULT_PRIVATE_IP_MASK"
|
|
|
304 |
fi
|
|
|
305 |
response=0
|
|
|
306 |
PTN='^[oOyYnN]$'
|
|
|
307 |
until [[ $(expr $response : $PTN) -gt 0 ]]
|
1 |
root |
308 |
do
|
595 |
richard |
309 |
if [ $Lang == "fr" ]
|
659 |
richard |
310 |
then echo -n "Voulez-vous utiliser cette adresse et ce plan d'adressage (recommandé) (O/n)? : "
|
618 |
richard |
311 |
else echo -n "Do you want to use this IP address and this IP addressing plan (recommanded) (Y/n)? : "
|
595 |
richard |
312 |
fi
|
1 |
root |
313 |
read response
|
|
|
314 |
done
|
636 |
richard |
315 |
if [ "$response" = "n" ] || [ "$response" = "N" ]
|
|
|
316 |
then
|
|
|
317 |
PRIVATE_IP_MASK="0"
|
|
|
318 |
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:]]$'
|
|
|
319 |
until [[ $(expr $PRIVATE_IP_MASK : $PTN) -gt 0 ]]
|
1 |
root |
320 |
do
|
595 |
richard |
321 |
if [ $Lang == "fr" ]
|
597 |
richard |
322 |
then echo -n "Entrez l'adresse IP d'ALCASAR au format CIDR (a.b.c.d/xx) : "
|
|
|
323 |
else echo -n "Enter ALCASAR IP address in CIDR format (a.b.c.d/xx) : "
|
595 |
richard |
324 |
fi
|
597 |
richard |
325 |
read PRIVATE_IP_MASK
|
1 |
root |
326 |
done
|
636 |
richard |
327 |
else
|
|
|
328 |
PRIVATE_IP_MASK=$DEFAULT_PRIVATE_IP_MASK
|
|
|
329 |
fi
|
595 |
richard |
330 |
else
|
637 |
richard |
331 |
PRIVATE_IP_MASK=`grep PRIVATE_IP conf/etc/alcasar.conf|cut -d"=" -f2`
|
|
|
332 |
rm -rf conf/etc/alcasar.conf
|
1 |
root |
333 |
fi
|
784 |
richard |
334 |
# Define Lan side Ethernet card
|
1 |
root |
335 |
hostname $HOSTNAME
|
607 |
richard |
336 |
PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP_MASK | cut -d"=" -f2` # @ réseau de consultation (ex.: 192.168.182.0)
|
|
|
337 |
PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2` # masque réseau de consultation (ex.: 255.255.255.0)
|
|
|
338 |
PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1` # @ip du portail (côté réseau de consultation)
|
|
|
339 |
private_prefix=`/bin/ipcalc -p $PRIVATE_IP_MASK |cut -d"=" -f2` # prefixe du réseau (ex. 24)
|
|
|
340 |
PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$private_prefix # @ + masque du réseau de consult (192.168.182.0/24)
|
|
|
341 |
classe=$((private_prefix/8)); classe_sup=`expr $classe + 1`; classe_sup_sup=`expr $classe + 2` # classes de réseau (ex.: 2=classe B, 3=classe C)
|
|
|
342 |
PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`. # @ compatible hosts.allow et hosts.deny (ex.: 192.168.182.)
|
|
|
343 |
PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2` # @ broadcast réseau de consultation (ex.: 192.168.182.255)
|
|
|
344 |
tmp_mask=`echo $PRIVATE_NETWORK_MASK|cut -d"/" -f2`; half_mask=`expr $tmp_mask + 1` # masque du 1/2 réseau de consultation (ex.: 25)
|
|
|
345 |
PRIVATE_STAT_IP=$PRIVATE_NETWORK/$half_mask # plage des adresses statiques (ex.: 192.168.182.0/25)
|
|
|
346 |
private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f$classe_sup` # dernier octet de l'@ de réseau
|
|
|
347 |
private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f$classe_sup` # dernier octet de l'@ de broadcast
|
|
|
348 |
private_plage=`expr $private_broadcast_ending - $private_network_ending + 1`
|
|
|
349 |
private_half_plage=`expr $private_plage / 2`
|
|
|
350 |
private_dyn=`expr $private_half_plage + $private_network_ending`
|
|
|
351 |
private_dyn_ip_network=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`"."$private_dyn"."`echo $PRIVATE_NETWORK | cut -d"." -f$classe_sup_sup-5`
|
|
|
352 |
PRIVATE_DYN_IP=`echo $private_dyn_ip_network | cut -d"." -f1-4`/$half_mask # @ réseau (CIDR) de la plage des adresses dynamiques (ex.: 192.168.182.128/25)
|
|
|
353 |
private_dyn_ip_ending=`echo $private_dyn_ip_network | cut -d"." -f4`
|
|
|
354 |
PRIVATE_DYN_FIRST_IP=`echo $private_dyn_ip_network | cut -d"." -f1-3`"."`expr $private_dyn_ip_ending + 1` # 1ère adresse de la plage dynamique (ex.: 192.168.182.129)
|
|
|
355 |
PRIVATE_DYN_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1` # dernière adresse de la plage dynamique (ex.: 192.168.182.254)
|
784 |
richard |
356 |
# Define Internet side Ethernet card
|
14 |
richard |
357 |
[ -e /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF ] || cp /etc/sysconfig/network-scripts/ifcfg-$EXTIF /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF
|
|
|
358 |
DNS1=`grep DNS1 /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF|cut -d"=" -f2` # @ip 1er DNS
|
|
|
359 |
DNS2=`grep DNS2 /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF|cut -d"=" -f2` # @ip 2ème DNS
|
70 |
franck |
360 |
DNS1=${DNS1:=208.67.220.220}
|
|
|
361 |
DNS2=${DNS2:=208.67.222.222}
|
597 |
richard |
362 |
PUBLIC_NETMASK=`grep NETMASK /etc/sysconfig/network-scripts/default-ifcfg-$EXTIF|cut -d"=" -f2`
|
784 |
richard |
363 |
DEFAULT_PUBLIC_NETMASK=`ipcalc -m 192.168.182.2 | cut -d"=" -f2`
|
|
|
364 |
PUBLIC_NETMASK=${PUBLIC_NETMASK:=$DEFAULT_PUBLIC_NETMASK}
|
|
|
365 |
PUBLIC_PREFIX=`/bin/ipcalc -p 192.168.182.2 $PUBLIC_NETMASK|cut -d"=" -f2`
|
765 |
stephane |
366 |
echo "PUBLIC_IP=$PUBLIC_IP/$PUBLIC_PREFIX" >> $CONF_FILE
|
|
|
367 |
echo "PUBLIC_MTU=1500" >> $CONF_FILE
|
628 |
richard |
368 |
echo "GW=$PUBLIC_GATEWAY" >> $CONF_FILE
|
|
|
369 |
echo "DNS1=$DNS1" >> $CONF_FILE
|
|
|
370 |
echo "DNS2=$DNS2" >> $CONF_FILE
|
|
|
371 |
echo "PRIVATE_IP=$PRIVATE_IP_MASK" >> $CONF_FILE
|
|
|
372 |
echo "DHCP=on" >> $CONF_FILE
|
597 |
richard |
373 |
[ -e /etc/sysconfig/network.default ] || cp /etc/sysconfig/network /etc/sysconfig/network.default
|
784 |
richard |
374 |
# Renseignement des fichiers de configuration réseau
|
1 |
root |
375 |
cat <<EOF > /etc/sysconfig/network
|
|
|
376 |
NETWORKING=yes
|
|
|
377 |
HOSTNAME="$HOSTNAME"
|
|
|
378 |
FORWARD_IPV4=true
|
|
|
379 |
EOF
|
|
|
380 |
# Modif /etc/hosts
|
|
|
381 |
[ -e /etc/hosts.default ] || cp /etc/hosts /etc/hosts.default
|
|
|
382 |
cat <<EOF > /etc/hosts
|
503 |
richard |
383 |
127.0.0.1 localhost
|
|
|
384 |
$PRIVATE_IP $HOSTNAME
|
1 |
root |
385 |
EOF
|
14 |
richard |
386 |
# Configuration de l'interface eth0 (Internet)
|
|
|
387 |
cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
|
|
|
388 |
DEVICE=$EXTIF
|
|
|
389 |
BOOTPROTO=static
|
597 |
richard |
390 |
IPADDR=$PUBLIC_IP
|
|
|
391 |
NETMASK=$PUBLIC_NETMASK
|
|
|
392 |
GATEWAY=$PUBLIC_GATEWAY
|
14 |
richard |
393 |
DNS1=127.0.0.1
|
|
|
394 |
ONBOOT=yes
|
|
|
395 |
METRIC=10
|
|
|
396 |
NOZEROCONF=yes
|
|
|
397 |
MII_NOT_SUPPORTED=yes
|
|
|
398 |
IPV6INIT=no
|
|
|
399 |
IPV6TO4INIT=no
|
|
|
400 |
ACCOUNTING=no
|
|
|
401 |
USERCTL=no
|
|
|
402 |
EOF
|
1 |
root |
403 |
# Configuration de l'interface eth1 (réseau de consultation)
|
793 |
richard |
404 |
# utile uniquement pour le mode bypass (cf. alcasar-bypass.sh)
|
|
|
405 |
rm -f /etc/sysconfig/network-scripts/ifcfg-$INTIF
|
|
|
406 |
cat <<EOF > /etc/sysconfig/network-scripts/default-ifcfg-$INTIF
|
1 |
root |
407 |
DEVICE=$INTIF
|
|
|
408 |
BOOTPROTO=static
|
|
|
409 |
IPADDR=$PRIVATE_IP
|
604 |
richard |
410 |
NETMASK=$PRIVATE_NETMASK
|
1 |
root |
411 |
ONBOOT=yes
|
|
|
412 |
METRIC=10
|
|
|
413 |
NOZEROCONF=yes
|
|
|
414 |
MII_NOT_SUPPORTED=yes
|
14 |
richard |
415 |
IPV6INIT=no
|
|
|
416 |
IPV6TO4INIT=no
|
|
|
417 |
ACCOUNTING=no
|
|
|
418 |
USERCTL=no
|
1 |
root |
419 |
EOF
|
440 |
franck |
420 |
# Mise à l'heure du serveur
|
|
|
421 |
[ -e /etc/ntp/step-tickers.default ] || cp /etc/ntp/step-tickers /etc/ntp/step-tickers.default
|
|
|
422 |
cat <<EOF > /etc/ntp/step-tickers
|
455 |
franck |
423 |
0.fr.pool.ntp.org # adapt to your country
|
|
|
424 |
1.fr.pool.ntp.org
|
|
|
425 |
2.fr.pool.ntp.org
|
440 |
franck |
426 |
EOF
|
|
|
427 |
# Configuration du serveur de temps (sur lui même)
|
1 |
root |
428 |
[ -e /etc/ntp.conf.default ] || cp /etc/ntp.conf /etc/ntp.conf.default
|
|
|
429 |
cat <<EOF > /etc/ntp.conf
|
456 |
franck |
430 |
server 0.fr.pool.ntp.org # adapt to your country
|
447 |
franck |
431 |
server 1.fr.pool.ntp.org
|
|
|
432 |
server 2.fr.pool.ntp.org
|
|
|
433 |
server 127.127.1.0 # local clock si NTP internet indisponible ...
|
411 |
richard |
434 |
fudge 127.127.1.0 stratum 10
|
604 |
richard |
435 |
restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap
|
1 |
root |
436 |
restrict 127.0.0.1
|
310 |
richard |
437 |
driftfile /var/lib/ntp/drift
|
1 |
root |
438 |
logfile /var/log/ntp.log
|
|
|
439 |
EOF
|
440 |
franck |
440 |
|
310 |
richard |
441 |
chown -R ntp:ntp /var/lib/ntp
|
1 |
root |
442 |
# Renseignement des fichiers hosts.allow et hosts.deny
|
|
|
443 |
[ -e /etc/hosts.allow.default ] || cp /etc/hosts.allow /etc/hosts.allow.default
|
|
|
444 |
cat <<EOF > /etc/hosts.allow
|
|
|
445 |
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
|
604 |
richard |
446 |
sshd: ALL
|
1 |
root |
447 |
ntpd: $PRIVATE_NETWORK_SHORT
|
|
|
448 |
EOF
|
|
|
449 |
[ -e /etc/host.deny.default ] || cp /etc/hosts.deny /etc/hosts.deny.default
|
|
|
450 |
cat <<EOF > /etc/hosts.deny
|
|
|
451 |
ALL: ALL: spawn ( /bin/echo "service %d demandé par %c" | /bin/mail -s "Tentative d'accès au service %d par %c REFUSE !!!" security ) &
|
|
|
452 |
EOF
|
604 |
richard |
453 |
# Firewall config
|
790 |
richard |
454 |
$SED "s?^EXTIF=.*?EXTIF=\"$EXTIF\"?g" $DIR_DEST_BIN/alcasar-iptables.sh $DIR_DEST_BIN/alcasar-iptables-bypass.sh
|
|
|
455 |
$SED "s?^INTIF=.*?INTIF=\"$INTIF\"?g" $DIR_DEST_BIN/alcasar-iptables.sh $DIR_DEST_BIN/alcasar-iptables-bypass.sh
|
|
|
456 |
chmod o+r $DIR_DEST_BIN/alcasar-iptables.sh #lecture possible pour apache (interface php du filtrage réseau)
|
|
|
457 |
# create the filter exxeption file
|
|
|
458 |
touch $DIR_DEST_ETC/alcasar-filter-exceptions
|
|
|
459 |
# load conntrack ftp module
|
|
|
460 |
[ -e /etc/modprobe.preload.default ] || cp /etc/modprobe.preload /etc/modprobe.preload.default
|
|
|
461 |
echo "ip_conntrack_ftp" >> /etc/modprobe.preload
|
604 |
richard |
462 |
# le script $DIR_DEST_BIN/alcasar-iptables.sh est lancé à la fin (pour ne pas perturber une mise à jour via ssh)
|
1 |
root |
463 |
} # End of network ()
|
|
|
464 |
|
|
|
465 |
##################################################################
|
|
|
466 |
## Fonction gestion ##
|
|
|
467 |
## - installation du centre de gestion ##
|
|
|
468 |
## - configuration du serveur web (Apache) ##
|
|
|
469 |
## - définition du 1er comptes de gestion ##
|
|
|
470 |
## - sécurisation des accès ##
|
|
|
471 |
##################################################################
|
|
|
472 |
gestion()
|
|
|
473 |
{
|
|
|
474 |
[ -d $DIR_WEB ] && rm -rf $DIR_WEB
|
|
|
475 |
mkdir $DIR_WEB
|
|
|
476 |
# Copie et configuration des fichiers du centre de gestion
|
316 |
richard |
477 |
cp -rf $DIR_INSTALL/web/* $DIR_WEB/
|
1 |
root |
478 |
echo "$VERSION du $DATE" > $DIR_WEB/VERSION
|
316 |
richard |
479 |
$SED "s?99/99/9999?$DATE_SHORT?g" $DIR_ACC/menu.php
|
|
|
480 |
$SED "s?\$DB_RADIUS = .*?\$DB_RADIUS = \"$DB_RADIUS\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
|
|
|
481 |
$SED "s?\$DB_USER = .*?\$DB_USER = \"$DB_USER\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
|
|
|
482 |
$SED "s?\$radiuspwd = .*?\$radiuspwd = \"$radiuspwd\"\;?g" $DIR_ACC/phpsysinfo/includes/xml/portail.php
|
498 |
richard |
483 |
$SED "s?\$hostname =.*?\$hostname = \"$HOSTNAME\";?g" $DIR_WEB/index.php
|
316 |
richard |
484 |
chmod 640 $DIR_ACC/phpsysinfo/includes/xml/portail.php
|
5 |
franck |
485 |
chown -R apache:apache $DIR_WEB/*
|
806 |
richard |
486 |
for i in system_backup base logs/firewall logs/httpd logs/squid ;
|
1 |
root |
487 |
do
|
|
|
488 |
[ -d $DIR_SAVE/$i ] || mkdir -p $DIR_SAVE/$i
|
|
|
489 |
done
|
5 |
franck |
490 |
chown -R root:apache $DIR_SAVE
|
71 |
richard |
491 |
# Configuration et sécurisation php
|
|
|
492 |
[ -e /etc/php.ini.default ] || cp /etc/php.ini /etc/php.ini.default
|
534 |
richard |
493 |
timezone=`cat /etc/sysconfig/clock|grep ZONE|cut -d"=" -f2`
|
|
|
494 |
$SED "s?^;date.timezone =.*?date.timezone = $timezone?g" /etc/php.ini
|
411 |
richard |
495 |
$SED "s?^upload_max_filesize.*?upload_max_filesize = 100M?g" /etc/php.ini
|
|
|
496 |
$SED "s?^post_max_size.*?post_max_size = 100M?g" /etc/php.ini
|
71 |
richard |
497 |
$SED "s?^html_errors.*?html_errors = Off?g" /etc/php.ini
|
|
|
498 |
$SED "s?^expose_php.*?expose_php = Off?g" /etc/php.ini
|
|
|
499 |
# Configuration et sécurisation Apache
|
790 |
richard |
500 |
rm -rf /var/www/cgi-bin/* /var/www/perl/* /var/www/icons/README* /var/www/error/README*
|
1 |
root |
501 |
[ -e /etc/httpd/conf/httpd.conf.default ] || cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.default
|
580 |
richard |
502 |
$SED "s?^#ServerName.*?ServerName $HOSTNAME?g" /etc/httpd/conf/httpd.conf
|
303 |
richard |
503 |
$SED "s?^Listen.*?Listen $PRIVATE_IP:80?g" /etc/httpd/conf/httpd.conf
|
1 |
root |
504 |
$SED "s?^ServerTokens.*?ServerTokens Prod?g" /etc/httpd/conf/httpd.conf
|
|
|
505 |
$SED "s?^ServerSignature.*?ServerSignature Off?g" /etc/httpd/conf/httpd.conf
|
|
|
506 |
$SED "s?^#ErrorDocument 404 /missing.html.*?ErrorDocument 404 /index.html?g" /etc/httpd/conf/httpd.conf
|
790 |
richard |
507 |
$SED "s?^LoadModule authn_anon_module.*?#LoadModule authn_anon_module modules/mod_authn_anon.so?g" /etc/httpd/conf/httpd.conf
|
|
|
508 |
$SED "s?^LoadModule status_module.*?#LoadModule status_module modules/mod_status.so?g" /etc/httpd/conf/httpd.conf
|
|
|
509 |
$SED "s?^LoadModule autoindex_module.*?#LoadModule autoindex_module modules/mod_autoindex.so?g" /etc/httpd/conf/httpd.conf
|
|
|
510 |
$SED "s?^LoadModule info_module.*?#LoadModule info_module modules/mod_info.so?g" /etc/httpd/conf/httpd.conf
|
|
|
511 |
$SED "s?^LoadModule imagemap_module.*?#LoadModule imagemap_module modules/mod_imagemap.so?g" /etc/httpd/conf/httpd.conf
|
|
|
512 |
$SED "s?^LoadModule rewrite_module.*?#LoadModule rewrite_module modules/mod_rewrite.so?g" /etc/httpd/conf/httpd.conf
|
1 |
root |
513 |
FIC_MOD_SSL=`find /etc/httpd/modules.d/ -type f -name *mod_ssl.conf`
|
|
|
514 |
$SED "s?^Listen.*?Listen $PRIVATE_IP:443?g" $FIC_MOD_SSL # On écoute en SSL que sur INTIF
|
|
|
515 |
$SED "s?background-color.*?background-color: #EFEFEF; }?g" /var/www/error/include/top.html
|
|
|
516 |
[ -e /var/www/error/include/bottom.html.default ] || mv /var/www/error/include/bottom.html /var/www/error/include/bottom.html.default
|
|
|
517 |
cat <<EOF > /var/www/error/include/bottom.html
|
|
|
518 |
</body>
|
|
|
519 |
</html>
|
|
|
520 |
EOF
|
|
|
521 |
# Définition du premier compte lié au profil 'admin'
|
509 |
richard |
522 |
header_install
|
510 |
richard |
523 |
if [ "$mode" = "install" ]
|
|
|
524 |
then
|
613 |
richard |
525 |
admin_portal=!
|
|
|
526 |
PTN='^[a-zA-Z0-9-]*$'
|
|
|
527 |
until [[ $(expr $admin_portal : $PTN) -gt 0 ]]
|
|
|
528 |
do
|
|
|
529 |
header_install
|
|
|
530 |
if [ $Lang == "fr" ]
|
|
|
531 |
then
|
|
|
532 |
echo ""
|
|
|
533 |
echo "Définissez un premier compte d'administration du portail :"
|
|
|
534 |
echo
|
|
|
535 |
echo -n "Nom : "
|
|
|
536 |
else
|
|
|
537 |
echo ""
|
|
|
538 |
echo "Define the first account allow to administrate the portal :"
|
|
|
539 |
echo
|
|
|
540 |
echo -n "Account : "
|
|
|
541 |
fi
|
|
|
542 |
read admin_portal
|
|
|
543 |
if [ "$admin_portal" == "" ]
|
|
|
544 |
then
|
|
|
545 |
admin_portal=!
|
|
|
546 |
fi
|
|
|
547 |
done
|
1 |
root |
548 |
# Création du fichier de clés de ce compte dans le profil "admin"
|
510 |
richard |
549 |
[ -d $DIR_DEST_ETC/digest ] && rm -rf $DIR_DEST_ETC/digest
|
|
|
550 |
mkdir -p $DIR_DEST_ETC/digest
|
|
|
551 |
chmod 755 $DIR_DEST_ETC/digest
|
|
|
552 |
until [ -s $DIR_DEST_ETC/digest/key_admin ]
|
|
|
553 |
do
|
613 |
richard |
554 |
/usr/sbin/htdigest -c $DIR_DEST_ETC/digest/key_admin $HOSTNAME $admin_portal
|
510 |
richard |
555 |
done
|
|
|
556 |
$DIR_DEST_SBIN/alcasar-profil.sh --list
|
595 |
richard |
557 |
else # mise à jour des versions < 2.1
|
510 |
richard |
558 |
if ([ $MAJ_RUNNING_VERSION -lt 2 ] || ([ $MAJ_RUNNING_VERSION -eq 2 ] && [ $MIN_RUNNING_VERSION -lt 1 ]))
|
|
|
559 |
then
|
613 |
richard |
560 |
if [ $Lang == "fr" ]
|
|
|
561 |
then
|
|
|
562 |
echo "Cette mise à jour nécessite de redéfinir le premier compte d'administration du portail"
|
|
|
563 |
echo
|
|
|
564 |
echo -n "Nom : "
|
|
|
565 |
else
|
|
|
566 |
echo "This update need to redefine the first admin account"
|
|
|
567 |
echo
|
|
|
568 |
echo -n "Account : "
|
|
|
569 |
fi
|
|
|
570 |
read admin_portal
|
510 |
richard |
571 |
[ -d $DIR_DEST_ETC/digest ] && rm -rf $DIR_DEST_ETC/digest
|
|
|
572 |
mkdir -p $DIR_DEST_ETC/digest
|
|
|
573 |
chmod 755 $DIR_DEST_ETC/digest
|
|
|
574 |
until [ -s $DIR_DEST_ETC/digest/key_admin ]
|
|
|
575 |
do
|
613 |
richard |
576 |
/usr/sbin/htdigest -c $DIR_DEST_ETC/digest/key_admin $HOSTNAME $admin_portal
|
510 |
richard |
577 |
done
|
|
|
578 |
$DIR_DEST_SBIN/alcasar-profil.sh --list
|
|
|
579 |
fi
|
|
|
580 |
fi
|
434 |
richard |
581 |
# synchronisation horaire
|
|
|
582 |
ntpd -q -g &
|
1 |
root |
583 |
# Sécurisation du centre
|
|
|
584 |
rm -f /etc/httpd/conf/webapps.d/*
|
|
|
585 |
cat <<EOF > /etc/httpd/conf/webapps.d/alcasar.conf
|
316 |
richard |
586 |
<Directory $DIR_ACC>
|
1 |
root |
587 |
SSLRequireSSL
|
|
|
588 |
AllowOverride None
|
|
|
589 |
Order deny,allow
|
|
|
590 |
Deny from all
|
|
|
591 |
Allow from 127.0.0.1
|
|
|
592 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
593 |
require valid-user
|
|
|
594 |
AuthType digest
|
|
|
595 |
AuthName $HOSTNAME
|
|
|
596 |
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
|
434 |
richard |
597 |
AuthUserFile $DIR_DEST_ETC/digest/key_all
|
580 |
richard |
598 |
ErrorDocument 404 https://$HOSTNAME/
|
1 |
root |
599 |
</Directory>
|
316 |
richard |
600 |
<Directory $DIR_ACC/admin>
|
1 |
root |
601 |
SSLRequireSSL
|
|
|
602 |
AllowOverride None
|
|
|
603 |
Order deny,allow
|
|
|
604 |
Deny from all
|
|
|
605 |
Allow from 127.0.0.1
|
|
|
606 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
607 |
require valid-user
|
|
|
608 |
AuthType digest
|
|
|
609 |
AuthName $HOSTNAME
|
|
|
610 |
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
|
434 |
richard |
611 |
AuthUserFile $DIR_DEST_ETC/digest/key_admin
|
580 |
richard |
612 |
ErrorDocument 404 https://$HOSTNAME/
|
1 |
root |
613 |
</Directory>
|
344 |
richard |
614 |
<Directory $DIR_ACC/manager>
|
1 |
root |
615 |
SSLRequireSSL
|
|
|
616 |
AllowOverride None
|
|
|
617 |
Order deny,allow
|
|
|
618 |
Deny from all
|
|
|
619 |
Allow from 127.0.0.1
|
|
|
620 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
621 |
require valid-user
|
|
|
622 |
AuthType digest
|
|
|
623 |
AuthName $HOSTNAME
|
|
|
624 |
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
|
434 |
richard |
625 |
AuthUserFile $DIR_DEST_ETC/digest/key_manager
|
580 |
richard |
626 |
ErrorDocument 404 https://$HOSTNAME/
|
1 |
root |
627 |
</Directory>
|
316 |
richard |
628 |
<Directory $DIR_ACC/backup>
|
|
|
629 |
SSLRequireSSL
|
|
|
630 |
AllowOverride None
|
|
|
631 |
Order deny,allow
|
|
|
632 |
Deny from all
|
|
|
633 |
Allow from 127.0.0.1
|
|
|
634 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
635 |
require valid-user
|
|
|
636 |
AuthType digest
|
|
|
637 |
AuthName $HOSTNAME
|
|
|
638 |
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
|
434 |
richard |
639 |
AuthUserFile $DIR_DEST_ETC/digest/key_backup
|
580 |
richard |
640 |
ErrorDocument 404 https://$HOSTNAME/
|
316 |
richard |
641 |
</Directory>
|
811 |
richard |
642 |
Alias /save/ "$DIR_SAVE/"
|
|
|
643 |
<Directory $DIR_SAVE>
|
|
|
644 |
SSLRequireSSL
|
|
|
645 |
Options Indexes
|
|
|
646 |
Order deny,allow
|
|
|
647 |
Deny from all
|
|
|
648 |
Allow from 127.0.0.1
|
|
|
649 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
650 |
require valid-user
|
|
|
651 |
AuthType digest
|
|
|
652 |
AuthName $HOSTNAME
|
|
|
653 |
AuthUserFile $DIR_DEST_ETC/digest/key_backup
|
|
|
654 |
ErrorDocument 404 https://$HOSTNAME/
|
|
|
655 |
</Directory>
|
1 |
root |
656 |
EOF
|
|
|
657 |
} # End of gestion ()
|
|
|
658 |
|
|
|
659 |
##########################################################################################
|
|
|
660 |
## Fonction AC() ##
|
|
|
661 |
## - Création d'une Autorité de Certification et du certificat serveur pour apache ##
|
|
|
662 |
##########################################################################################
|
|
|
663 |
AC ()
|
|
|
664 |
{
|
|
|
665 |
$SED "s?ifcfg-eth.?ifcfg-$INTIF?g" $DIR_DEST_BIN/alcasar-CA.sh
|
510 |
richard |
666 |
$DIR_DEST_BIN/alcasar-CA.sh
|
800 |
richard |
667 |
FIC_VIRTUAL_SSL=`find /etc/httpd/conf -type f -name *default_ssl_vhost.conf`
|
303 |
richard |
668 |
[ -e /etc/httpd/conf/vhosts-ssl.default ] || cp $FIC_VIRTUAL_SSL /etc/httpd/conf/vhosts-ssl.default
|
|
|
669 |
$SED "s?localhost.crt?alcasar.crt?g" $FIC_VIRTUAL_SSL
|
|
|
670 |
$SED "s?localhost.key?alcasar.key?g" $FIC_VIRTUAL_SSL
|
679 |
richard |
671 |
$SED "s?^#SSLCertificateChainFile.*?SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt?" $FIC_VIRTUAL_SSL
|
5 |
franck |
672 |
chown -R root:apache /etc/pki
|
1 |
root |
673 |
chmod -R 750 /etc/pki
|
|
|
674 |
} # End AC ()
|
|
|
675 |
|
|
|
676 |
##########################################################################################
|
|
|
677 |
## Fonction init_db() ##
|
|
|
678 |
## - Initialisation de la base Mysql ##
|
|
|
679 |
## - Affectation du mot de passe de l'administrateur (root) ##
|
|
|
680 |
## - Suppression des bases et des utilisateurs superflus ##
|
|
|
681 |
## - Création de la base 'radius' ##
|
|
|
682 |
## - Installation du schéma de cette base ##
|
|
|
683 |
## - Import des tables de comptabilité (mtotacct, totacct) et info_usagers (userinfo) ##
|
|
|
684 |
## ces table proviennent de 'dialupadmin' (paquetage freeradius-web) ##
|
|
|
685 |
##########################################################################################
|
|
|
686 |
init_db ()
|
|
|
687 |
{
|
|
|
688 |
mkdir -p /var/lib/mysql/.tmp
|
|
|
689 |
chown mysql:mysql /var/lib/mysql/.tmp
|
227 |
franck |
690 |
[ -e /etc/my.cnf.rpmnew ] && mv /etc/my.cnf.rpmnew /etc/my.cnf # prend en compte les migrations de MySQL
|
1 |
root |
691 |
[ -e /etc/my.cnf.default ] || cp /etc/my.cnf /etc/my.cnf.default
|
|
|
692 |
$SED "s?^#bind-address.*?bind-address=127.0.0.1?g" /etc/my.cnf
|
|
|
693 |
/etc/init.d/mysqld start
|
|
|
694 |
sleep 4
|
|
|
695 |
mysqladmin -u root password $mysqlpwd
|
|
|
696 |
MYSQL="/usr/bin/mysql -uroot -p$mysqlpwd --exec"
|
615 |
richard |
697 |
# Delete exemple databases if exist
|
1 |
root |
698 |
$MYSQL="DROP DATABASE IF EXISTS test;DROP DATABASE IF EXISTS tmp;CONNECT mysql;DELETE from user where user='';FLUSH PRIVILEGES;"
|
615 |
richard |
699 |
# Create 'radius' database
|
1 |
root |
700 |
$MYSQL="CREATE DATABASE IF NOT EXISTS $DB_RADIUS;GRANT ALL ON $DB_RADIUS.* TO $DB_USER@localhost IDENTIFIED BY '$radiuspwd';FLUSH PRIVILEGES"
|
615 |
richard |
701 |
# Add an empty radius database structure
|
364 |
franck |
702 |
mysql -u$DB_USER -p$radiuspwd $DB_RADIUS < $DIR_CONF/radiusd-db-vierge.sql
|
615 |
richard |
703 |
# modify the start script in order to close accounting connexion when the system is comming down or up
|
|
|
704 |
[ -e /etc/init.d/mysqld.default ] || cp /etc/init.d/mysqld /etc/init.d/mysqld.default
|
|
|
705 |
$SED "/wait_for_pid created/a echo \"Flush ALCASAR open accounting sessions\"; /usr/local/sbin/alcasar-mysql.sh -acct_stop" /etc/init.d/mysqld
|
|
|
706 |
$SED "/'stop')/a echo \"Flush ALCASAR open accounting sessions\"; /usr/local/sbin/alcasar-mysql.sh -acct_stop" /etc/init.d/mysqld
|
1 |
root |
707 |
} # End init_db ()
|
|
|
708 |
|
|
|
709 |
##########################################################################
|
|
|
710 |
## Fonction param_radius ##
|
|
|
711 |
## - Paramètrage des fichiers de configuration FreeRadius ##
|
|
|
712 |
## - Affectation du secret partagé entre coova-chilli et freeradius ##
|
|
|
713 |
## - Modification de fichier de conf pour l'accès à Mysql ##
|
|
|
714 |
##########################################################################
|
|
|
715 |
param_radius ()
|
|
|
716 |
{
|
|
|
717 |
cp -f $DIR_CONF/radiusd-db-vierge.sql /etc/raddb/
|
|
|
718 |
chown -R radius:radius /etc/raddb
|
|
|
719 |
[ -e /etc/raddb/radiusd.conf.default ] || cp /etc/raddb/radiusd.conf /etc/raddb/radiusd.conf.default
|
|
|
720 |
# paramètrage radius.conf
|
|
|
721 |
$SED "s?^[\t ]*#[\t ]*user =.*?user = radius?g" /etc/raddb/radiusd.conf
|
|
|
722 |
$SED "s?^[\t ]*#[\t ]*group =.*?group = radius?g" /etc/raddb/radiusd.conf
|
|
|
723 |
$SED "s?^[\t ]*status_server =.*?status_server = no?g" /etc/raddb/radiusd.conf
|
|
|
724 |
# suppression de la fonction proxy
|
|
|
725 |
$SED "s?^[\t ]*proxy_requests.*?proxy_requests = no?g" /etc/raddb/radiusd.conf
|
|
|
726 |
$SED "s?^[\t ]*\$INCLUDE proxy.conf.*?#\$INCLUDE proxy.conf?g" /etc/raddb/radiusd.conf
|
654 |
richard |
727 |
# suppression du module EAP
|
|
|
728 |
$SED "s?^[\t ]*\$INCLUDE eap.conf.*?#\$INCLUDE eap.conf?g" /etc/raddb/radiusd.conf
|
1 |
root |
729 |
# écoute sur loopback uniquement (à modifier plus tard pour l'EAP)
|
|
|
730 |
$SED "s?^[\t ]*ipaddr =.*?ipaddr = 127.0.0.1?g" /etc/raddb/radiusd.conf
|
|
|
731 |
# prise en compte du module SQL et des compteurs SQL
|
|
|
732 |
$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql.conf.*?\$INCLUDE sql.conf?g" /etc/raddb/radiusd.conf
|
|
|
733 |
$SED "s?^[\t ]*#[\t ]*\$INCLUDE sql/mysql/counter.conf?\$INCLUDE sql/mysql/counter.conf?g" /etc/raddb/radiusd.conf
|
|
|
734 |
$SED "s?^[\t ]*\$INCLUDE policy.conf?#\$INCLUDE policy.conf?g" /etc/raddb/radiusd.conf
|
|
|
735 |
# purge du répertoire des serveurs virtuels et copie du fichier de configuration d'Alcasar
|
|
|
736 |
rm -f /etc/raddb/sites-enabled/*
|
|
|
737 |
cp $DIR_CONF/alcasar-radius /etc/raddb/sites-available/alcasar
|
|
|
738 |
chown radius:apache /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap # droits rw pour apache (module ldap)
|
|
|
739 |
chmod 660 /etc/raddb/sites-available/alcasar /etc/raddb/modules/ldap
|
|
|
740 |
chgrp apache /etc/raddb /etc/raddb/sites-available /etc/raddb/modules
|
|
|
741 |
ln -s /etc/raddb/sites-available/alcasar /etc/raddb/sites-enabled/alcasar
|
384 |
richard |
742 |
# Inutile dans notre fonctionnement mais les liens sont recréés par un update de radius ... donc forcé en tant que fichier à 'vide'
|
1 |
root |
743 |
touch /etc/raddb/sites-enabled/{inner-tunnel,control-socket,default}
|
|
|
744 |
# configuration du fichier client.conf (127.0.0.1 suffit mais on laisse le deuxième client pour la future gestion de l'EAP)
|
|
|
745 |
[ -e /etc/raddb/clients.conf.default ] || cp -f /etc/raddb/clients.conf /etc/raddb/clients.conf.default
|
|
|
746 |
cat << EOF > /etc/raddb/clients.conf
|
|
|
747 |
client 127.0.0.1 {
|
|
|
748 |
secret = $secretradius
|
|
|
749 |
shortname = localhost
|
|
|
750 |
}
|
|
|
751 |
EOF
|
|
|
752 |
# modif sql.conf
|
|
|
753 |
[ -e /etc/raddb/sql.conf.default ] || cp /etc/raddb/sql.conf /etc/raddb/sql.conf.default
|
|
|
754 |
$SED "s?^[\t ]*login =.*?login = \"$DB_USER\"?g" /etc/raddb/sql.conf
|
|
|
755 |
$SED "s?^[\t ]*password =.*?password = \"$radiuspwd\"?g" /etc/raddb/sql.conf
|
|
|
756 |
$SED "s?^[\t ]*radius_db =.*?radius_db = \"$DB_RADIUS\"?g" /etc/raddb/sql.conf
|
|
|
757 |
$SED "s?^[\t ]*sqltrace =.*?sqltrace = no?g" /etc/raddb/sql.conf
|
|
|
758 |
# modif dialup.conf
|
|
|
759 |
[ -e /etc/raddb/sql/mysql/dialup.conf.default ] || cp /etc/raddb/sql/mysql/dialup.conf /etc/raddb/sql/mysql/dialup.conf.default
|
|
|
760 |
cp -f $DIR_CONF/dialup.conf /etc/raddb/sql/mysql/dialup.conf
|
|
|
761 |
} # End param_radius ()
|
|
|
762 |
|
|
|
763 |
##########################################################################
|
|
|
764 |
## Fonction param_web_radius ##
|
|
|
765 |
## - Import, modification et paramètrage de l'interface "dialupadmin" ##
|
|
|
766 |
## - Création du lien vers la page de changement de mot de passe ##
|
|
|
767 |
##########################################################################
|
|
|
768 |
param_web_radius ()
|
|
|
769 |
{
|
|
|
770 |
# copie de l'interface d'origine dans la structure Alcasar
|
316 |
richard |
771 |
[ -d /usr/share/freeradius-web ] && cp -rf /usr/share/freeradius-web/* $DIR_ACC/manager/
|
|
|
772 |
rm -f $DIR_ACC/manager/index.html $DIR_ACC/manager/readme
|
|
|
773 |
rm -f $DIR_ACC/manager/htdocs/about.html $DIR_ACC/manager/htdocs/index.html $DIR_ACC/manager/htdocs/content.html
|
344 |
richard |
774 |
# copie des fichiers modifiés
|
|
|
775 |
cp -rf $DIR_INSTALL/web/acc/manager/* $DIR_ACC/manager/
|
316 |
richard |
776 |
chown -R apache:apache $DIR_ACC/manager/
|
344 |
richard |
777 |
# Modification des fichiers de configuration
|
1 |
root |
778 |
[ -e /etc/freeradius-web/admin.conf.default ] || cp /etc/freeradius-web/admin.conf /etc/freeradius-web/admin.conf.default
|
503 |
richard |
779 |
$SED "s?^general_domain:.*?general_domain: $DOMAIN?g" /etc/freeradius-web/admin.conf
|
1 |
root |
780 |
$SED "s?^sql_username:.*?sql_username: $DB_USER?g" /etc/freeradius-web/admin.conf
|
|
|
781 |
$SED "s?^sql_password:.*?sql_password: $radiuspwd?g" /etc/freeradius-web/admin.conf
|
|
|
782 |
$SED "s?^sql_debug:.*?sql_debug: false?g" /etc/freeradius-web/admin.conf
|
|
|
783 |
$SED "s?^sql_usergroup_table: .*?sql_usergroup_table: radusergroup?g" /etc/freeradius-web/admin.conf
|
|
|
784 |
$SED "s?^sql_password_attribute:.*?sql_password_attribute: Crypt-Password?g" /etc/freeradius-web/admin.conf
|
|
|
785 |
$SED "s?^general_finger_type.*?# general_finger_type: snmp?g" /etc/freeradius-web/admin.conf
|
|
|
786 |
$SED "s?^general_stats_use_totacct.*?general_stats_use_totacct: yes?g" /etc/freeradius-web/admin.conf
|
582 |
richard |
787 |
$SED "s?^general_charset.*?general_charset: utf8?g" /etc/freeradius-web/admin.conf
|
344 |
richard |
788 |
[ -e /etc/freeradius-web/config.php.default ] || cp /etc/freeradius-web/config.php /etc/freeradius-web/config.php.default
|
|
|
789 |
cp -f $DIR_CONF/freeradiusweb-config.php /etc/freeradius-web/config.php
|
131 |
richard |
790 |
cat <<EOF > /etc/freeradius-web/naslist.conf
|
632 |
richard |
791 |
nas1_name: alcasar-$ORGANISME
|
1 |
root |
792 |
nas1_model: Portail captif
|
|
|
793 |
nas1_ip: $PRIVATE_IP
|
|
|
794 |
nas1_port_num: 0
|
|
|
795 |
nas1_community: public
|
|
|
796 |
EOF
|
|
|
797 |
# Modification des attributs visibles lors de la création d'un usager ou d'un groupe
|
|
|
798 |
[ -e /etc/freeradius-web/user_edit.attrs.default ] || mv /etc/freeradius-web/user_edit.attrs /etc/freeradius-web/user_edit.attrs.default
|
|
|
799 |
cp -f $DIR_CONF/user_edit.attrs /etc/freeradius-web/user_edit.attrs
|
114 |
richard |
800 |
# Ajout du mappage des attributs chillispot
|
|
|
801 |
[ -e /etc/freeradius-web/sql.attrmap.default ] || mv /etc/freeradius-web/sql.attrmap /etc/freeradius-web/sql.attrmap.default
|
|
|
802 |
cp -f $DIR_CONF/sql.attrmap /etc/freeradius-web/sql.attrmap
|
1 |
root |
803 |
# Modification des attributs visibles sur les pages des statistiques (suppression NAS_IP et NAS_port)
|
|
|
804 |
[ -e /etc/freeradius-web/sql.attrs.default ] || cp /etc/freeradius-web/sql.attrs /etc/freeradius-web/user_edit.attrs.default
|
|
|
805 |
$SED "s?^NASIPAddress.*?NASIPAddress\tNas IP Address\tno?g" /etc/freeradius-web/sql.attrs
|
|
|
806 |
$SED "s?^NASPortId.*?NASPortId\tNas Port\tno?g" /etc/freeradius-web/sql.attrs
|
5 |
franck |
807 |
chown -R apache:apache /etc/freeradius-web
|
1 |
root |
808 |
# Ajout de l'alias vers la page de "changement de mot de passe usager"
|
|
|
809 |
cat <<EOF >> /etc/httpd/conf/webapps.d/alcasar.conf
|
344 |
richard |
810 |
<Directory $DIR_WEB/pass>
|
1 |
root |
811 |
SSLRequireSSL
|
|
|
812 |
AllowOverride None
|
|
|
813 |
Order deny,allow
|
|
|
814 |
Deny from all
|
|
|
815 |
Allow from 127.0.0.1
|
|
|
816 |
Allow from $PRIVATE_NETWORK_MASK
|
580 |
richard |
817 |
ErrorDocument 404 https://$HOSTNAME
|
1 |
root |
818 |
</Directory>
|
|
|
819 |
EOF
|
|
|
820 |
} # End of param_web_radius ()
|
|
|
821 |
|
799 |
richard |
822 |
##################################################################################
|
|
|
823 |
## Fonction param_chilli ##
|
|
|
824 |
## - Création du fichier d'initialisation et de configuration de coova-chilli ##
|
|
|
825 |
## - Paramètrage de la page d'authentification (intercept.php) ##
|
|
|
826 |
##################################################################################
|
1 |
root |
827 |
param_chilli ()
|
|
|
828 |
{
|
799 |
richard |
829 |
# init file creation
|
461 |
richard |
830 |
[ -e /etc/init.d/chilli.default ] || cp /etc/init.d/chilli /etc/init.d/chilli.default
|
799 |
richard |
831 |
cat <<EOF > /etc/init.d/chilli
|
|
|
832 |
#!/bin/sh
|
|
|
833 |
#
|
|
|
834 |
# chilli CoovaChilli init
|
|
|
835 |
#
|
|
|
836 |
# chkconfig: 2345 65 35
|
|
|
837 |
# description: CoovaChilli
|
|
|
838 |
### BEGIN INIT INFO
|
|
|
839 |
# Provides: chilli
|
|
|
840 |
# Required-Start: network
|
|
|
841 |
# Should-Start:
|
|
|
842 |
# Required-Stop: network
|
|
|
843 |
# Should-Stop:
|
|
|
844 |
# Default-Start: 2 3 5
|
|
|
845 |
# Default-Stop:
|
|
|
846 |
# Description: CoovaChilli access controller
|
|
|
847 |
### END INIT INFO
|
|
|
848 |
|
|
|
849 |
[ -f /usr/sbin/chilli ] || exit 0
|
|
|
850 |
. /etc/init.d/functions
|
|
|
851 |
CONFIG=/etc/chilli.conf
|
|
|
852 |
pidfile=/var/run/chilli.pid
|
|
|
853 |
[ -f \$CONFIG ] || {
|
|
|
854 |
echo "\$CONFIG Not found"
|
|
|
855 |
exit 0
|
|
|
856 |
}
|
|
|
857 |
RETVAL=0
|
|
|
858 |
prog="chilli"
|
|
|
859 |
case \$1 in
|
|
|
860 |
start)
|
|
|
861 |
if [ -f \$pidfile ] ; then
|
|
|
862 |
gprintf "chilli is already running"
|
|
|
863 |
else
|
|
|
864 |
gprintf "Starting \$prog: "
|
|
|
865 |
rm -f /var/run/chilli* # cleaning
|
|
|
866 |
/sbin/modprobe tun >/dev/null 2>&1
|
|
|
867 |
echo 1 > /proc/sys/net/ipv4/ip_forward
|
|
|
868 |
[ -e /dev/net/tun ] || {
|
|
|
869 |
(cd /dev;
|
|
|
870 |
mkdir net;
|
|
|
871 |
cd net;
|
|
|
872 |
mknod tun c 10 200)
|
|
|
873 |
}
|
|
|
874 |
ifconfig eth1 0.0.0.0
|
|
|
875 |
daemon /usr/sbin/chilli -c \$CONFIG --pidfile=\$pidfile &
|
|
|
876 |
RETVAL=$?
|
|
|
877 |
fi
|
|
|
878 |
;;
|
|
|
879 |
|
|
|
880 |
reload)
|
|
|
881 |
killall -HUP chilli
|
|
|
882 |
;;
|
|
|
883 |
|
|
|
884 |
restart)
|
|
|
885 |
\$0 stop
|
|
|
886 |
sleep 2
|
|
|
887 |
\$0 start
|
|
|
888 |
;;
|
|
|
889 |
|
|
|
890 |
status)
|
|
|
891 |
status chilli
|
|
|
892 |
RETVAL=0
|
|
|
893 |
;;
|
|
|
894 |
|
|
|
895 |
stop)
|
|
|
896 |
if [ -f \$pidfile ] ; then
|
|
|
897 |
gprintf "Shutting down \$prog: "
|
|
|
898 |
killproc /usr/sbin/chilli
|
|
|
899 |
RETVAL=\$?
|
|
|
900 |
[ \$RETVAL = 0 ] && rm -f $pidfile
|
|
|
901 |
else
|
|
|
902 |
gprintf "chilli is not running"
|
|
|
903 |
fi
|
|
|
904 |
;;
|
|
|
905 |
|
|
|
906 |
*)
|
|
|
907 |
echo "Usage: \$0 {start|stop|restart|reload|status}"
|
|
|
908 |
exit 1
|
|
|
909 |
esac
|
|
|
910 |
echo
|
|
|
911 |
EOF
|
|
|
912 |
|
|
|
913 |
# conf file creation
|
346 |
richard |
914 |
[ -e /etc/chilli.conf.default ] || cp /etc/chilli.conf /etc/chilli.conf.default
|
|
|
915 |
cat <<EOF > /etc/chilli.conf
|
|
|
916 |
# coova config for ALCASAR
|
|
|
917 |
cmdsocket /var/run/chilli.sock
|
|
|
918 |
unixipc chilli.eth1.ipc
|
|
|
919 |
pidfile /var/run/chilli.eth1.pid
|
|
|
920 |
net $PRIVATE_NETWORK_MASK
|
595 |
richard |
921 |
dhcpif $INTIF
|
|
|
922 |
#nodynip
|
607 |
richard |
923 |
dynip $PRIVATE_DYN_IP
|
|
|
924 |
statip $PRIVATE_STAT_IP
|
595 |
richard |
925 |
ethers $DIR_DEST_ETC/alcasar-ethers
|
346 |
richard |
926 |
domain localdomain
|
355 |
richard |
927 |
dns1 $PRIVATE_IP
|
|
|
928 |
dns2 $PRIVATE_IP
|
346 |
richard |
929 |
uamlisten $PRIVATE_IP
|
503 |
richard |
930 |
uamport 3990
|
346 |
richard |
931 |
macallowlocal
|
|
|
932 |
locationname $HOSTNAME
|
|
|
933 |
radiusserver1 127.0.0.1
|
|
|
934 |
radiusserver2 127.0.0.1
|
|
|
935 |
radiussecret $secretradius
|
|
|
936 |
radiusauthport 1812
|
|
|
937 |
radiusacctport 1813
|
467 |
richard |
938 |
uamserver https://$HOSTNAME/intercept.php
|
346 |
richard |
939 |
radiusnasid $HOSTNAME
|
|
|
940 |
uamsecret $secretuam
|
793 |
richard |
941 |
uamallowed alcasar
|
346 |
richard |
942 |
coaport 3799
|
503 |
richard |
943 |
include $DIR_DEST_ETC/alcasar-uamallowed
|
|
|
944 |
include $DIR_DEST_ETC/alcasar-uamdomain
|
|
|
945 |
include $DIR_DEST_ETC/alcasar-macallowed
|
346 |
richard |
946 |
EOF
|
605 |
richard |
947 |
# création du fichier d'allocation d'adresses IP statiques
|
|
|
948 |
touch $DIR_DEST_ETC/alcasar-ethers
|
1 |
root |
949 |
# création des fichiers de sites, d'urls et d'adresses MAC de confiance
|
613 |
richard |
950 |
touch $DIR_DEST_ETC/alcasar-macallowed $DIR_DEST_ETC/alcasar-uamallowed $DIR_DEST_ETC/alcasar-uamdomain
|
503 |
richard |
951 |
chown root:apache $DIR_DEST_ETC/alcasar-*
|
|
|
952 |
chmod 660 $DIR_DEST_ETC/alcasar-*
|
|
|
953 |
# Configuration des fichier WEB d'interception (secret partagé avec coova-chilli et nom d'organisme)
|
526 |
stephane |
954 |
$SED "s?^\$uamsecret =.*?\$uamsecret = \"$secretuam\";?g" $DIR_WEB/intercept.php
|
|
|
955 |
$SED "s?^\$userpassword=1.*?\$userpassword=1;?g" $DIR_WEB/intercept.php
|
|
|
956 |
$SED "s?^\$organisme = .*?\$organisme = \"$ORGANISME\";?g" $DIR_WEB/intercept.php $DIR_WEB/status.php
|
796 |
richard |
957 |
# user 'chilli' creation (in order to run conup/off and up/down scripts
|
|
|
958 |
chilli_exist=`grep chilli /etc/passwd|wc -l`
|
|
|
959 |
if [ "$chilli_exist" == "1" ]
|
|
|
960 |
then
|
|
|
961 |
userdel -r chilli 2>/dev/null
|
|
|
962 |
fi
|
|
|
963 |
groupadd -f chilli
|
|
|
964 |
useradd -r -g chilli -s /bin/false -c "system user for coova-chilli" chilli
|
1 |
root |
965 |
} # End of param_chilli ()
|
|
|
966 |
|
|
|
967 |
##########################################################
|
|
|
968 |
## Fonction param_squid ##
|
|
|
969 |
## - Paramètrage du proxy 'squid' en mode 'cache' ##
|
|
|
970 |
## - Initialisation de la base de données ##
|
|
|
971 |
##########################################################
|
|
|
972 |
param_squid ()
|
|
|
973 |
{
|
|
|
974 |
# paramètrage de Squid (connecté en série derrière Dansguardian)
|
|
|
975 |
[ -e /etc/squid/squid.conf.default ] || cp /etc/squid/squid.conf /etc/squid/squid.conf.default
|
|
|
976 |
# suppression des références 'localnet', 'icp', 'htcp' et 'always_direct'
|
|
|
977 |
$SED "/^acl localnet/d" /etc/squid/squid.conf
|
|
|
978 |
$SED "/^icp_access allow localnet/d" /etc/squid/squid.conf
|
|
|
979 |
$SED "/^icp_port 3130/d" /etc/squid/squid.conf
|
|
|
980 |
$SED "/^http_access allow localnet/d" /etc/squid/squid.conf
|
|
|
981 |
$SED "/^htcp_access allow localnet/d" /etc/squid/squid.conf
|
|
|
982 |
$SED "/^always_direct allow localnet/d" /etc/squid/squid.conf
|
|
|
983 |
# mode 'proxy transparent local'
|
595 |
richard |
984 |
$SED "s?^http_port.*?http_port 127.0.0.1:3128 transparent?g" /etc/squid/squid.conf
|
726 |
franck |
985 |
# Configuration du cache local
|
749 |
franck |
986 |
$SED "s?^#cache_dir.*?cache_dir ufs \/var\/spool\/squid 256 16 256?g" /etc/squid/squid.conf
|
405 |
franck |
987 |
# emplacement et formatage standard des logs
|
419 |
franck |
988 |
echo '#logformat common %>a %ui %un [%tl] "%rm %ru HTTP/%rv" %>Hs %<st %Ss:%Sh' >> /etc/squid/squid.conf
|
749 |
franck |
989 |
echo '#logformat combined %>a %ui %un [%tl] "%rm %ru HTTP/%rv" %>Hs %<st "%{Referer}>h" "%{User-Agent}>h" %Ss:%Sh' >> /etc/squid/squid.conf
|
405 |
franck |
990 |
echo "access_log /var/log/squid/access.log" >> /etc/squid/squid.conf
|
1 |
root |
991 |
# compatibilité des logs avec awstats
|
315 |
richard |
992 |
echo "emulate_httpd_log on" >> /etc/squid/squid.conf
|
749 |
franck |
993 |
echo "half_closed_clients off" >> /etc/squid/squid.conf
|
|
|
994 |
echo "server_persistent_connections off" >> /etc/squid/squid.conf
|
|
|
995 |
echo "client_persistent_connections on" >> /etc/squid/squid.conf
|
|
|
996 |
echo "client_lifetime 1440 minutes" >> /etc/squid/squid.conf
|
|
|
997 |
echo "request_timeout 5 minutes" >> /etc/squid/squid.conf
|
|
|
998 |
echo "persistent_request_timeout 2 minutes" >> /etc/squid/squid.conf
|
726 |
franck |
999 |
echo "cache_mem 256 MB" >> /etc/squid/squid.conf
|
749 |
franck |
1000 |
echo "maximum_object_size_in_memory 4096 KB" >> /etc/squid/squid.conf
|
|
|
1001 |
echo "maximum_object_size 4096 KB" >> /etc/squid/squid.conf
|
812 |
richard |
1002 |
# anonymisation de la version de squid
|
813 |
richard |
1003 |
echo "via off" >> /etc/squid/squid.conf
|
812 |
richard |
1004 |
# suppression de la primitive http 'X_forwarded'
|
|
|
1005 |
echo "forwarded_for delete" >> /etc/squid/squid.conf
|
313 |
richard |
1006 |
# pour éviter les message d'erreur lors des changement d'état des interfaces réseaux
|
|
|
1007 |
$SED "s?^SQUID_AUTO_RELOAD.*?SQUID_AUTO_RELOAD=no?g" /etc/sysconfig/squid
|
1 |
root |
1008 |
# Initialisation du cache de Squid
|
|
|
1009 |
/usr/sbin/squid -z
|
|
|
1010 |
} # End of param_squid ()
|
|
|
1011 |
|
|
|
1012 |
##################################################################
|
|
|
1013 |
## Fonction param_dansguardian ##
|
|
|
1014 |
## - Paramètrage du gestionnaire de contenu Dansguardian ##
|
|
|
1015 |
##################################################################
|
|
|
1016 |
param_dansguardian ()
|
|
|
1017 |
{
|
|
|
1018 |
mkdir /var/dansguardian
|
|
|
1019 |
chown dansguardian /var/dansguardian
|
497 |
richard |
1020 |
[ -e $DIR_DG/dansguardian.conf.default ] || cp $DIR_DG/dansguardian.conf $DIR_DG/dansguardian.conf.default
|
307 |
richard |
1021 |
# Le filtrage est désactivé par défaut
|
497 |
richard |
1022 |
$SED "s/^reportinglevel =.*/reportinglevel = -1/g" $DIR_DG/dansguardian.conf
|
1 |
root |
1023 |
# la page d'interception est en français
|
497 |
richard |
1024 |
$SED "s?^language =.*?language = french?g" $DIR_DG/dansguardian.conf
|
1 |
root |
1025 |
# on limite l'écoute de Dansguardian côté LAN
|
497 |
richard |
1026 |
$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" $DIR_DG/dansguardian.conf
|
75 |
richard |
1027 |
# on chaîne Dansguardian au proxy antivirus HAVP
|
497 |
richard |
1028 |
$SED "s?^proxyport.*?proxyport = 8090?g" $DIR_DG/dansguardian.conf
|
1 |
root |
1029 |
# on remplace la page d'interception (template)
|
|
|
1030 |
cp -f $DIR_CONF/template.html /usr/share/dansguardian/languages/ukenglish/
|
|
|
1031 |
cp -f $DIR_CONF/template-fr.html /usr/share/dansguardian/languages/french/template.html
|
|
|
1032 |
# on ne loggue que les deny (pour le reste, on a squid)
|
497 |
richard |
1033 |
$SED "s?^loglevel =.*?loglevel = 1?g" $DIR_DG/dansguardian.conf
|
659 |
richard |
1034 |
# lauch of 10 daemons (20 in largest server)
|
|
|
1035 |
$SED "s?^minchildren =.*?minchildren = 10?g" $DIR_DG/dansguardian.conf
|
1 |
root |
1036 |
# on désactive par défaut le controle de contenu des pages html
|
497 |
richard |
1037 |
$SED "s?^weightedphrasemode =.*?weightedphrasemode = 0?g" $DIR_DG/dansguardian.conf
|
|
|
1038 |
cp $DIR_DG/lists/bannedphraselist $DIR_DG/lists/bannedphraselist.default
|
|
|
1039 |
$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedphraselist # (on commente ce qui ne l'est pas)
|
1 |
root |
1040 |
# on désactive par défaut le contrôle d'URL par expressions régulières
|
497 |
richard |
1041 |
cp $DIR_DG/lists/bannedregexpurllist $DIR_DG/lists/bannedregexpurllist.default
|
|
|
1042 |
$SED "s?^[^#]?#&?g" $DIR_DG/lists/bannedregexpurllist # (on commente ce qui ne l'est pas)
|
1 |
root |
1043 |
# on désactive par défaut le contrôle de téléchargement de fichiers
|
497 |
richard |
1044 |
[ -e $DIR_DG/dansguardianf1.conf.default ] || cp $DIR_DG/dansguardianf1.conf $DIR_DG/dansguardianf1.conf.default
|
|
|
1045 |
$SED "s?^blockdownloads =.*?blockdownloads = off?g" $DIR_DG/dansguardianf1.conf
|
|
|
1046 |
[ -e $DIR_DG/lists/bannedextensionlist.default ] || mv $DIR_DG/lists/bannedextensionlist $DIR_DG/lists/bannedextensionlist.default
|
|
|
1047 |
[ -e $DIR_DG/lists/bannedmimetypelist.default ] || mv $DIR_DG/lists/bannedmimetypelist $DIR_DG/lists/bannedmimetypelist.default
|
|
|
1048 |
touch $DIR_DG/lists/bannedextensionlist
|
|
|
1049 |
touch $DIR_DG/lists/bannedmimetypelist
|
|
|
1050 |
# 'Safesearch' regex actualisation
|
498 |
richard |
1051 |
$SED "s?images?search?g" $DIR_DG/lists/urlregexplist
|
497 |
richard |
1052 |
# empty LAN IP list that won't be WEB filtered
|
|
|
1053 |
[ -e $DIR_DG/lists/exceptioniplist.default ] || mv $DIR_DG/lists/exceptioniplist $DIR_DG/lists/exceptioniplist.default
|
|
|
1054 |
touch $DIR_DG/lists/exceptioniplist
|
|
|
1055 |
# Keep a copy of URL & domain filter configuration files
|
|
|
1056 |
[ -e $DIR_DG/lists/bannedsitelist.default ] || mv $DIR_DG/lists/bannedsitelist $DIR_DG/lists/bannedsitelist.default
|
|
|
1057 |
[ -e $DIR_DG/lists/bannedurllist.default ] || mv $DIR_DG/lists/bannedurllist $DIR_DG/lists/bannedurllist.default
|
1 |
root |
1058 |
} # End of param_dansguardian ()
|
|
|
1059 |
|
71 |
richard |
1060 |
##################################################################
|
|
|
1061 |
## Fonction antivirus ##
|
479 |
richard |
1062 |
## - configuration havp + libclamav ##
|
71 |
richard |
1063 |
##################################################################
|
|
|
1064 |
antivirus ()
|
|
|
1065 |
{
|
288 |
richard |
1066 |
# création de l'usager 'havp'
|
|
|
1067 |
havp_exist=`grep havp /etc/passwd|wc -l`
|
307 |
richard |
1068 |
if [ "$havp_exist" == "1" ]
|
288 |
richard |
1069 |
then
|
478 |
richard |
1070 |
userdel -r havp 2>/dev/null
|
288 |
richard |
1071 |
fi
|
307 |
richard |
1072 |
groupadd -f havp
|
796 |
richard |
1073 |
useradd -r -g havp -s /bin/false -c "system user for havp" havp
|
476 |
richard |
1074 |
mkdir -p /var/tmp/havp /var/log/havp
|
|
|
1075 |
chown -R havp /var/tmp/havp /var/log/havp /var/run/havp
|
307 |
richard |
1076 |
$SED "/$HAVP_BIN -c $HAVP_CONFIG/i chown -R havp:havp \/var\/tmp\/havp" /etc/init.d/havp
|
109 |
richard |
1077 |
# configuration d'HAVP
|
|
|
1078 |
[ -e /etc/havp/havp.config.default ] || cp /etc/havp/havp.config /etc/havp/havp.config.default
|
|
|
1079 |
$SED "/^REMOVETHISLINE/d" /etc/havp/havp.config
|
631 |
richard |
1080 |
$SED "s?^# PARENTPROXY.*?PARENTPROXY 127.0.0.1?g" /etc/havp/havp.config # datas come from DG
|
|
|
1081 |
$SED "s?^# PARENTPORT.*?PARENTPORT 3128?g" /etc/havp/havp.config # datas are send to squid (3128)
|
|
|
1082 |
$SED "s?^# PORT.*?PORT 8090?g" /etc/havp/havp.config # datas come on 8090
|
|
|
1083 |
$SED "s?^# BIND_ADDRESS.*?BIND_ADDRESS 127.0.0.1?g" /etc/havp/havp.config # we listen only on loopback
|
|
|
1084 |
$SED "s?^ENABLECLAMLIB.*?ENABLECLAMLIB true?g" /etc/havp/havp.config # active libclamav AV
|
|
|
1085 |
$SED "s?^# LOG_OKS.*?LOG_OKS false?g" /etc/havp/havp.config # log only when malware matches
|
659 |
richard |
1086 |
$SED "s?^# SERVERNUMBER.*?SERVERNUMBER 10?g" /etc/havp/havp.config # 10 daemons are started simultaneously
|
481 |
franck |
1087 |
# remplacement du fichier d'initialisation
|
335 |
richard |
1088 |
[ -e /etc/init.d/havp.default ] || cp /etc/init.d/havp /etc/init.d/havp.default
|
481 |
franck |
1089 |
cp -f $DIR_CONF/havp-init /etc/init.d/havp
|
340 |
richard |
1090 |
# on remplace la page d'interception (template)
|
|
|
1091 |
cp -f $DIR_CONF/virus-fr.html /etc/havp/templates/fr/virus.html
|
|
|
1092 |
cp -f $DIR_CONF/virus-en.html /etc/havp/templates/en/virus.html
|
489 |
richard |
1093 |
# automatisation de la mise à jour de la base antivirale (toutes les 2 heures)
|
|
|
1094 |
$SED "s?^Checks.*?Checks 12?g" /etc/freshclam.conf
|
|
|
1095 |
$SED "s?^NotifyClamd.*?# NotifyClamd /etc/clamd.conf?g" /etc/freshclam.conf
|
734 |
richard |
1096 |
# Virus database update
|
|
|
1097 |
rm -f /var/lib/clamav/*.cld # in case of old database scheme
|
|
|
1098 |
[ -e /var/lib/clamav/main.cvd ] || /usr/bin/freshclam
|
71 |
richard |
1099 |
}
|
|
|
1100 |
|
1 |
root |
1101 |
##################################################################################
|
476 |
richard |
1102 |
## param_ulogd function ##
|
|
|
1103 |
## - Ulog config for multi-log files ##
|
|
|
1104 |
##################################################################################
|
|
|
1105 |
param_ulogd ()
|
|
|
1106 |
{
|
|
|
1107 |
# Three instances of ulogd (three different logfiles)
|
|
|
1108 |
[ -d /var/log/firewall ] || mkdir -p /var/log/firewall
|
478 |
richard |
1109 |
nl=1
|
|
|
1110 |
for log_type in tracability ssh ext-access
|
|
|
1111 |
do
|
|
|
1112 |
[ -e /var/log/firewall/$log_type.log ] || touch /var/log/firewall/$log_type.log
|
|
|
1113 |
cp -f /etc/ulogd.conf /etc/ulogd-$log_type.conf
|
|
|
1114 |
$SED "s?^nlgroup=.*?nlgroup=$nl?g" /etc/ulogd-$log_type.conf
|
|
|
1115 |
$SED '/OPRINT/,$d' /etc/ulogd-$log_type.conf
|
|
|
1116 |
cat << EOF >> /etc/ulogd-$log_type.conf
|
|
|
1117 |
[LOGEMU]
|
|
|
1118 |
file="/var/log/firewall/$log_type.log"
|
|
|
1119 |
sync=1
|
|
|
1120 |
EOF
|
|
|
1121 |
nl=`expr $nl + 1`
|
|
|
1122 |
done
|
476 |
richard |
1123 |
chown -R root:apache /var/log/firewall
|
|
|
1124 |
chmod 750 /var/log/firewall
|
|
|
1125 |
chmod 640 /var/log/firewall/*
|
|
|
1126 |
[ -e /etc/init.d/ulogd.default ] || cp /etc/init.d/ulogd /etc/init.d/ulogd.default
|
|
|
1127 |
cp -f $DIR_CONF/ulogd-init /etc/init.d/ulogd
|
|
|
1128 |
} # End of param_ulogd ()
|
|
|
1129 |
|
|
|
1130 |
##################################################################################
|
1 |
root |
1131 |
## Fonction param_awstats ##
|
|
|
1132 |
## - configuration de l'interface des logs de consultation WEB (AWSTAT) ##
|
|
|
1133 |
##################################################################################
|
|
|
1134 |
param_awstats()
|
|
|
1135 |
{
|
316 |
richard |
1136 |
cp -rf /usr/share/awstats/www/ $DIR_ACC/awstats/
|
|
|
1137 |
chown -R apache:apache $DIR_ACC/awstats
|
1 |
root |
1138 |
cp /etc/awstats/awstats.conf /etc/awstats/awstats.conf.default
|
|
|
1139 |
$SED "s?^LogFile=.*?LogFile=\"/var/log/squid/access.log\"?g" /etc/awstats/awstats.conf
|
|
|
1140 |
$SED "s?^LogFormat=.*?LogFormat=4?g" /etc/awstats/awstats.conf
|
|
|
1141 |
$SED "s?^SiteDomain=.*?SiteDomain=\"$HOSTNAME\"?g" /etc/awstats/awstats.conf
|
|
|
1142 |
$SED "s?^HostAliases=.*?HostAliases=\"$PRIVATE_IP\"?g" /etc/awstats/awstats.conf
|
|
|
1143 |
$SED "s?^DNSLookup=.*?DNSLookup=0?g" /etc/awstats/awstats.conf
|
344 |
richard |
1144 |
$SED "s?^DirData=.*?DirData=\"/var/lib/awstats\"?g" /etc/awstats/awstats.conf
|
|
|
1145 |
$SED "s?^DirIcons=.*?DirIcons=\"/acc/awstats/icon\"?g" /etc/awstats/awstats.conf
|
1 |
root |
1146 |
$SED "s?^StyleSheet=.*?StyleSheet=\"/css/style.css\"?g" /etc/awstats/awstats.conf
|
|
|
1147 |
$SED "s?^BuildReportFormat=.*?BuildReportFormat=xhtml?g" /etc/awstats/awstats.conf
|
59 |
richard |
1148 |
$SED "s?^UseFramesWhenCGI=.*?UseFramesWhenCGI=0?g" /etc/awstats/awstats.conf
|
580 |
richard |
1149 |
$SED "s?^UseFramesWhenCGI=.*?UseFramesWhenCGI=0?g" /etc/awstats/awstats.conf
|
|
|
1150 |
$SED "s?^ShowSummary=.*?ShowSummary=VPHB?g" /etc/awstats/awstats.conf
|
|
|
1151 |
$SED "s?^ShowSummary=.*?ShowSummary=VPHB?g" /etc/awstats/awstats.conf
|
|
|
1152 |
$SED "s?^ShowMonthStats=.*?ShowMonthStats=VPHB?g" /etc/awstats/awstats.conf
|
|
|
1153 |
$SED "s?^ShowDaysOfMonthStats=.*?ShowDaysOfMonthStats=PHB?g" /etc/awstats/awstats.conf
|
|
|
1154 |
$SED "s?^ShowDaysOfWeekStats=.*?ShowDaysOfWeekStats=PHB?g" /etc/awstats/awstats.conf
|
|
|
1155 |
$SED "s?^ShowHoursStats=.*?ShowHoursStats=PHB?g" /etc/awstats/awstats.conf
|
|
|
1156 |
$SED "s?^ShowDomainsStats=.*?ShowDomainsStats=0?g" /etc/awstats/awstats.conf
|
|
|
1157 |
$SED "s?^ShowHostsStats=.*?ShowHostsStats=0?g" /etc/awstats/awstats.conf
|
|
|
1158 |
$SED "s?^ShowAuthenticatedUsers=.*?ShowAuthenticatedUsers=0?g" /etc/awstats/awstats.conf
|
|
|
1159 |
$SED "s?^ShowRobotsStats=.*?ShowRobotsStats=0?g" /etc/awstats/awstats.conf
|
|
|
1160 |
$SED "s?^ShowFileTypesStats=.*?ShowFileTypesStats=0?g" /etc/awstats/awstats.conf
|
|
|
1161 |
$SED "s?^ShowFileSizesStats=.*?ShowFileSizesStats=0?g" /etc/awstats/awstats.conf
|
|
|
1162 |
$SED "s?^ShowOSStats=.*?ShowOSStats=0?g" /etc/awstats/awstats.conf
|
|
|
1163 |
$SED "s?^ShowScreenSizeStats=.*?ShowScreenSizeStats=0?g" /etc/awstats/awstats.conf
|
|
|
1164 |
|
1 |
root |
1165 |
cat <<EOF >> /etc/httpd/conf/webapps.d/alcasar.conf
|
316 |
richard |
1166 |
<Directory $DIR_ACC/awstats>
|
1 |
root |
1167 |
SSLRequireSSL
|
|
|
1168 |
Options ExecCGI
|
|
|
1169 |
AddHandler cgi-script .pl
|
|
|
1170 |
DirectoryIndex awstats.pl
|
|
|
1171 |
Order deny,allow
|
|
|
1172 |
Deny from all
|
|
|
1173 |
Allow from 127.0.0.1
|
|
|
1174 |
Allow from $PRIVATE_NETWORK_MASK
|
|
|
1175 |
require valid-user
|
|
|
1176 |
AuthType digest
|
|
|
1177 |
AuthName $HOSTNAME
|
|
|
1178 |
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
|
434 |
richard |
1179 |
AuthUserFile $DIR_DEST_ETC/digest/key_admin
|
580 |
richard |
1180 |
ErrorDocument 404 https://$HOSTNAME/
|
1 |
root |
1181 |
</Directory>
|
|
|
1182 |
SetEnv PERL5LIB /usr/share/awstats/lib:/usr/share/awstats/plugins
|
|
|
1183 |
EOF
|
|
|
1184 |
} # End of param_awstats ()
|
|
|
1185 |
|
|
|
1186 |
##########################################################
|
235 |
richard |
1187 |
## Fonction param_dnsmasq ##
|
1 |
root |
1188 |
##########################################################
|
219 |
jeremy |
1189 |
param_dnsmasq ()
|
|
|
1190 |
{
|
|
|
1191 |
[ -d /var/log/dnsmasq ] || mkdir /var/log/dnsmasq
|
259 |
richard |
1192 |
$SED "s?^DHCP_LEASE=.*?DHCP_LEASE=/var/log/dnsmasq/lease.log?g" /etc/sysconfig/dnsmasq # fichier contenant les baux
|
503 |
richard |
1193 |
[ -e /etc/dnsmasq.conf.default ] || cp /etc/dnsmasq.conf /etc/dnsmasq.conf.default
|
520 |
richard |
1194 |
# 1st dnsmasq listen on udp 53 ("dnsmasq - forward"). It's used as dhcp server only if bypass is on.
|
503 |
richard |
1195 |
cat << EOF > /etc/dnsmasq.conf
|
520 |
richard |
1196 |
# Configuration file for "dnsmasq in forward mode"
|
503 |
richard |
1197 |
conf-file=$DIR_DEST_ETC/alcasar-dns-name # zone de definition de noms DNS locaux
|
259 |
richard |
1198 |
listen-address=$PRIVATE_IP
|
|
|
1199 |
listen-address=127.0.0.1
|
286 |
richard |
1200 |
no-dhcp-interface=$INTIF
|
259 |
richard |
1201 |
bind-interfaces
|
|
|
1202 |
cache-size=256
|
|
|
1203 |
domain=$DOMAIN
|
|
|
1204 |
domain-needed
|
|
|
1205 |
expand-hosts
|
|
|
1206 |
bogus-priv
|
|
|
1207 |
filterwin2k
|
|
|
1208 |
server=$DNS1
|
|
|
1209 |
server=$DNS2
|
498 |
richard |
1210 |
# le servive DHCP est configuré mais n'est exploité que pour le "bypass"
|
604 |
richard |
1211 |
dhcp-range=$PRIVATE_DYN_FIRST_IP,$PRIVATE_DYN_LAST_IP,$PRIVATE_NETMASK,12h
|
632 |
richard |
1212 |
dhcp-option=option:router,$PRIVATE_IP
|
259 |
richard |
1213 |
#dhcp-option=option:ntp-server,192.168.0.4,10.10.0.5
|
|
|
1214 |
|
291 |
franck |
1215 |
# Exemple de configuration statique : <@MAC>,<name>,<@IP>,<MASK>,<ttl bail>
|
420 |
franck |
1216 |
#dhcp-host=11:22:33:44:55:66,ssic-test,192.168.182.20,255.255.255.0,45m
|
259 |
richard |
1217 |
EOF
|
520 |
richard |
1218 |
# 2nd dnsmasq listen on udp 54 ("dnsmasq with blackhole")
|
|
|
1219 |
cat << EOF > /etc/dnsmasq-blackhole.conf
|
|
|
1220 |
# Configuration file for "dnsmasq with blackhole"
|
|
|
1221 |
# Inclusion de la blacklist <domains> de Toulouse dans la configuration
|
|
|
1222 |
conf-dir=$DIR_DEST_ETC/alcasar-dnsfilter-enabled
|
503 |
richard |
1223 |
conf-file=$DIR_DEST_ETC/alcasar-dns-name # zone de definition de noms DNS locaux
|
498 |
richard |
1224 |
listen-address=$PRIVATE_IP
|
|
|
1225 |
port=54
|
|
|
1226 |
no-dhcp-interface=$INTIF
|
|
|
1227 |
bind-interfaces
|
|
|
1228 |
cache-size=256
|
|
|
1229 |
domain=$DOMAIN
|
|
|
1230 |
domain-needed
|
|
|
1231 |
expand-hosts
|
|
|
1232 |
bogus-priv
|
|
|
1233 |
filterwin2k
|
|
|
1234 |
server=$DNS1
|
|
|
1235 |
server=$DNS2
|
|
|
1236 |
EOF
|
718 |
franck |
1237 |
|
800 |
richard |
1238 |
# Init file modification
|
503 |
richard |
1239 |
[ -e /etc/init.d/dnsmasq.default ] || cp /etc/init.d/dnsmasq /etc/init.d/dnsmasq.default
|
800 |
richard |
1240 |
# Start and stop a 2nd process for the "DNS blackhole"
|
520 |
richard |
1241 |
$SED "/daemon/a \$dnsmasq -C /etc/dnsmasq-blackhole.conf \$OPTIONS" /etc/init.d/dnsmasq
|
503 |
richard |
1242 |
$SED "/killproc \$DAEMON_NAME/a killproc \$DAEMON_NAME" /etc/init.d/dnsmasq
|
800 |
richard |
1243 |
# Start after chilli (65) which create tun0
|
|
|
1244 |
$SED "s?^# chkconfig:.*?# chkconfig: 2345 99 40?g" /etc/init.d/dnsmasq
|
|
|
1245 |
# Optionnellement on active les logs DNS des clients
|
786 |
richard |
1246 |
[ -e /etc/sysconfig/dnsmasq.default ] || cp /etc/sysconfig/dnsmasq /etc/sysconfig/dnsmasq.default
|
800 |
richard |
1247 |
$SED "s?^OPTIONS=.*?#OPTIONS=\"-q --log-facility=/var/log/dnsmasq/queries.log\"?g" /etc/sysconfig/dnsmasq
|
308 |
richard |
1248 |
} # End dnsmasq
|
|
|
1249 |
|
|
|
1250 |
##########################################################
|
|
|
1251 |
## Fonction BL (BlackList) ##
|
|
|
1252 |
##########################################################
|
|
|
1253 |
BL ()
|
|
|
1254 |
{
|
|
|
1255 |
# on copie par défaut la BL de toulouse embarqués dans l'archive d'ALCASAR
|
648 |
richard |
1256 |
rm -rf $DIR_DG/lists/blacklists
|
|
|
1257 |
tar zxf $DIR_CONF/blacklists.tar.gz --directory=$DIR_DG/lists/ > /dev/null 2>&1
|
316 |
richard |
1258 |
cp -f $DIR_CONF/VERSION-BL $DIR_ACC/
|
|
|
1259 |
chown apache:apache $DIR_ACC/VERSION-BL
|
648 |
richard |
1260 |
# on crée le répertoire de la BL secondaire et le répertoire "pureip" (catégorie virtuelle)
|
|
|
1261 |
mkdir $DIR_DG/lists/blacklists/ossi $DIR_DG/lists/blacklists/ip
|
|
|
1262 |
touch $DIR_DG/lists/blacklists/ossi/domains $DIR_DG/lists/blacklists/ip/domains
|
|
|
1263 |
touch $DIR_DG/lists/blacklists/ossi/urls $DIR_DG/lists/blacklists/ip/urls
|
309 |
richard |
1264 |
# On crée les fichiers vides de sites ou d'URL réhabilités
|
648 |
richard |
1265 |
[ -e $DIR_DG/lists/exceptionsitelist.default ] || mv $DIR_DG/lists/exceptionsitelist $DIR_DG/lists/exceptionsitelist.default
|
673 |
richard |
1266 |
[ -e $DIR_DG/lists/exceptionurllist.default ] || mv $DIR_DG/lists/exceptionurllist $DIR_DG/lists/exceptionurllist.default
|
648 |
richard |
1267 |
touch $DIR_DG/lists/exceptionsitelist
|
|
|
1268 |
touch $DIR_DG/lists/exceptionurllist
|
311 |
richard |
1269 |
# On crée la configuration de base du filtrage de domaine et d'URL pour Dansguardian
|
648 |
richard |
1270 |
cat <<EOF > $DIR_DG/lists/bannedurllist
|
311 |
richard |
1271 |
# Dansguardian filter config for ALCASAR
|
|
|
1272 |
EOF
|
648 |
richard |
1273 |
cat <<EOF > $DIR_DG/lists/bannedsitelist
|
311 |
richard |
1274 |
# Dansguardian domain filter config for ALCASAR
|
|
|
1275 |
# block all sites except those in the exceptionsitelist --> liste blanche (désactivée)
|
|
|
1276 |
#**
|
|
|
1277 |
# block all SSL and CONNECT tunnels
|
|
|
1278 |
**s
|
|
|
1279 |
# block all SSL and CONNECT tunnels specified only as an IP
|
|
|
1280 |
*ips
|
|
|
1281 |
# block all sites specified only by an IP
|
|
|
1282 |
*ip
|
|
|
1283 |
EOF
|
648 |
richard |
1284 |
chown -R dansguardian:apache $DIR_DG
|
|
|
1285 |
chmod -R g+rw $DIR_DG
|
304 |
richard |
1286 |
# On crée la structure du DNS-blackhole :
|
503 |
richard |
1287 |
mkdir $DIR_DEST_ETC/{alcasar-dnsfilter-available,alcasar-dnsfilter-enabled}
|
|
|
1288 |
chown -R 770 $DIR_DEST_ETC/{alcasar-dnsfilter-available,alcasar-dnsfilter-enabled}
|
|
|
1289 |
chown -R root:apache $DIR_DEST_ETC/{alcasar-dnsfilter-available,alcasar-dnsfilter-enabled}
|
308 |
richard |
1290 |
# On fait pointer le black-hole sur une page interne
|
|
|
1291 |
$SED "s?^IP_RETOUR=.*?IP_RETOUR=\"$PRIVATE_IP\"?g" $DIR_DEST_SBIN/alcasar-bl.sh
|
786 |
richard |
1292 |
# On adapte la BL de Toulouse à notre structure
|
654 |
richard |
1293 |
if [ "$mode" != "update" ]; then
|
|
|
1294 |
$DIR_DEST_SBIN/alcasar-bl.sh --adapt
|
|
|
1295 |
fi
|
308 |
richard |
1296 |
}
|
219 |
jeremy |
1297 |
|
1 |
root |
1298 |
##########################################################
|
|
|
1299 |
## Fonction cron ##
|
|
|
1300 |
## - Mise en place des différents fichiers de cron ##
|
|
|
1301 |
##########################################################
|
|
|
1302 |
cron ()
|
|
|
1303 |
{
|
|
|
1304 |
# Modif du fichier 'crontab' pour passer les cron à minuit au lieu de 04h00
|
|
|
1305 |
[ -e /etc/crontab.default ] || cp /etc/crontab /etc/crontab.default
|
|
|
1306 |
cat <<EOF > /etc/crontab
|
|
|
1307 |
SHELL=/bin/bash
|
|
|
1308 |
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
|
1309 |
MAILTO=root
|
|
|
1310 |
HOME=/
|
|
|
1311 |
|
|
|
1312 |
# run-parts
|
|
|
1313 |
01 * * * * root nice -n 19 run-parts --report /etc/cron.hourly
|
|
|
1314 |
02 0 * * * root nice -n 19 run-parts --report /etc/cron.daily
|
|
|
1315 |
22 0 * * 0 root nice -n 19 run-parts --report /etc/cron.weekly
|
|
|
1316 |
42 0 1 * * root nice -n 19 run-parts --report /etc/cron.monthly
|
|
|
1317 |
EOF
|
|
|
1318 |
[ -e /etc/anacrontab.default ] || cp /etc/anacrontab /etc/anacrontab.default
|
|
|
1319 |
cat <<EOF >> /etc/anacrontab
|
667 |
franck |
1320 |
7 8 cron.MysqlDump nice /etc/cron.d/alcasar-mysql
|
|
|
1321 |
7 10 cron.logExport nice /etc/cron.d/alcasar-export_log
|
|
|
1322 |
7 15 cron.logClean nice /etc/cron.d/alcasar-clean_log
|
|
|
1323 |
7 20 cron.importClean nice /etc/cron.d/alcasar-clean_import
|
1 |
root |
1324 |
EOF
|
667 |
franck |
1325 |
cat <<EOF > /etc/cron.d/alcasar-clean_log
|
713 |
franck |
1326 |
# suppression des fichiers de logs de plus d'un an (tous les lundi à 4h30)
|
1 |
root |
1327 |
30 4 * * 1 root $DIR_DEST_BIN/alcasar-log-clean.sh
|
|
|
1328 |
EOF
|
811 |
richard |
1329 |
cat <<EOF > /etc/cron.d/alcasar-mysql
|
1 |
root |
1330 |
# export de la base des usagers (tous les lundi à 4h45)
|
671 |
franck |
1331 |
45 4 * * 1 root $DIR_DEST_SBIN/alcasar-mysql.sh --dump
|
1 |
root |
1332 |
EOF
|
667 |
franck |
1333 |
cat <<EOF > /etc/cron.d/alcasar-export_log
|
713 |
franck |
1334 |
# export des log squid, firewall et apache (tous les lundi à 5h00)
|
1 |
root |
1335 |
00 5 * * 1 root $DIR_DEST_BIN/alcasar-log-export.sh
|
|
|
1336 |
EOF
|
|
|
1337 |
cat << EOF > /etc/cron.d/awstats
|
713 |
franck |
1338 |
# mise à jour des stats de consultation WEB toutes les 30'
|
419 |
franck |
1339 |
*/30 * * * * root $DIR_ACC/awstats/awstats.pl -config=localhost -update >/dev/null 2>&1
|
1 |
root |
1340 |
EOF
|
667 |
franck |
1341 |
cat << EOF > /etc/cron.d/alcasar-clean_import
|
713 |
franck |
1342 |
# suppression des fichiers de mots de passe lors d'imports massifs par fichier de plus de 24h
|
503 |
richard |
1343 |
30 * * * * root $DIR_DEST_BIN/alcasar-import-clean.sh
|
168 |
franck |
1344 |
EOF
|
722 |
franck |
1345 |
cat << EOF > /etc/cron.d/alcasar-distrib-updates
|
|
|
1346 |
# mise à jour automatique de la distribution tous les jours 3h30
|
762 |
franck |
1347 |
30 3 * * * root /usr/sbin/urpmi --auto-update --auto 2>&1
|
722 |
franck |
1348 |
EOF
|
1 |
root |
1349 |
# mise à jour des stats de connexion (accounting). Scripts provenant de "dialupadmin" (rpm freeradius-web) (cf. wiki.freeradius.org/Dialup_admin).
|
|
|
1350 |
# on écrase le crontab d'origine installé par le RPM "freeradius-web" (bug remonté à qa.mandriva.com : 46739).
|
|
|
1351 |
# 'tot_stats' (tout les jours à 01h01) : aggrégat des connexions journalières par usager (renseigne la table 'totacct')
|
|
|
1352 |
# 'monthly_tot_stat' (tous les jours à 01h05) : aggrégat des connexions mensuelles par usager (renseigne la table 'mtotacct')
|
|
|
1353 |
# 'truncate_raddact' (tous les 1er du mois à 01h10) : supprime les entrées journalisées plus vieilles que '$back_days' jours (défini ci-après)
|
|
|
1354 |
# 'clean_radacct' (tous les 1er du mois à 01h15) : ferme les session ouvertes de plus de '$back_days' jours (défini ci-après)
|
|
|
1355 |
$SED "s?^\$back_days.*?\$back_days = 365;?g" /usr/bin/truncate_radacct
|
|
|
1356 |
$SED "s?^\$back_days.*?\$back_days = 30;?g" /usr/bin/clean_radacct
|
|
|
1357 |
rm -f /etc/cron.daily/freeradius-web
|
|
|
1358 |
rm -f /etc/cron.monthly/freeradius-web
|
|
|
1359 |
cat << EOF > /etc/cron.d/freeradius-web
|
|
|
1360 |
1 1 * * * root /usr/bin/tot_stats > /dev/null 2>&1
|
|
|
1361 |
5 1 * * * root /usr/bin/monthly_tot_stats > /dev/null 2>&1
|
|
|
1362 |
10 1 1 * * root /usr/bin/truncate_radacct > /dev/null 2>&1
|
|
|
1363 |
15 1 1 * * root /usr/bin/clean_radacct > /dev/null 2>&1
|
|
|
1364 |
EOF
|
671 |
franck |
1365 |
cat << EOF > /etc/cron.d/alcasar-watchdog
|
713 |
franck |
1366 |
# activation du "chien de garde" (watchdog) toutes les 3'
|
1 |
root |
1367 |
*/3 * * * * root $DIR_DEST_BIN/alcasar-watchdog.sh > /dev/null 2>&1
|
|
|
1368 |
EOF
|
808 |
franck |
1369 |
# activation du "chien de garde des services" (watchdog) toutes les 18'
|
|
|
1370 |
cat << EOF > /etc/cron.d/alcasar-daemon-watchdog
|
|
|
1371 |
# activation du "chien de garde" (daemon-watchdog) toutes les 18'
|
|
|
1372 |
*/18 * * * * root $DIR_DEST_BIN/alcasar-daemon.sh > /dev/null 2>&1
|
|
|
1373 |
EOF
|
522 |
richard |
1374 |
# suppression des crons usagers
|
|
|
1375 |
rm -f /var/spool/cron/*
|
1 |
root |
1376 |
} # End cron
|
|
|
1377 |
|
|
|
1378 |
##################################################################
|
|
|
1379 |
## Fonction post_install ##
|
|
|
1380 |
## - Modification des bannières (locales et ssh) et des prompts ##
|
|
|
1381 |
## - Installation de la structure de chiffrement pour root ##
|
|
|
1382 |
## - Mise en place du sudoers et de la sécurité sur les fichiers##
|
|
|
1383 |
## - Mise en place du la rotation des logs ##
|
5 |
franck |
1384 |
## - Configuration dans le cas d'une mise à jour ##
|
1 |
root |
1385 |
##################################################################
|
|
|
1386 |
post_install()
|
|
|
1387 |
{
|
|
|
1388 |
# adaptation du script "chien de garde" (watchdog)
|
376 |
franck |
1389 |
$SED "s?^EXTIF=.*?EXTIF=\"$EXTIF\"?g" $DIR_DEST_BIN/alcasar-watchdog.sh
|
|
|
1390 |
$SED "s?^INTIF=.*?INTIF=\"$INTIF\"?g" $DIR_DEST_BIN/alcasar-watchdog.sh
|
1 |
root |
1391 |
$SED "s?^PRIVATE_IP=.*?PRIVATE_IP=\"$PRIVATE_IP\"?g" $DIR_DEST_BIN/alcasar-watchdog.sh
|
|
|
1392 |
# création de la bannière locale
|
|
|
1393 |
[ -e /etc/mandriva-release.default ] || cp /etc/mandriva-release /etc/mandriva-release.default
|
589 |
richard |
1394 |
cp -f $DIR_CONF/banner /etc/mandriva-release
|
|
|
1395 |
echo " V$VERSION" >> /etc/mandriva-release
|
1 |
root |
1396 |
# création de la bannière SSH
|
|
|
1397 |
cp /etc/mandriva-release /etc/ssh/alcasar-banner-ssh
|
5 |
franck |
1398 |
chmod 644 /etc/ssh/alcasar-banner-ssh ; chown root:root /etc/ssh/alcasar-banner-ssh
|
1 |
root |
1399 |
[ -e /etc/ssh/sshd_config.default ] || cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default
|
|
|
1400 |
$SED "s?^Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
|
|
|
1401 |
$SED "s?^#Banner.*?Banner /etc/ssh/alcasar-banner-ssh?g" /etc/ssh/sshd_config
|
793 |
richard |
1402 |
# postfix banner anonymisation
|
|
|
1403 |
$SED "s?^smtpd_banner =.*?smtpd_banner = $myhostname ESMTP?g" /etc/postfix/main.cf
|
604 |
richard |
1404 |
# sshd écoute côté LAN et WAN
|
1 |
root |
1405 |
$SED "s?^#ListenAddress 0\.0\.0\.0?ListenAddress $PRIVATE_IP?g" /etc/ssh/sshd_config
|
604 |
richard |
1406 |
$SED "/^ListenAddress $PRIVATE_IP/a\ListenAddress $PUBLIC_IP" /etc/ssh/sshd_config
|
790 |
richard |
1407 |
# Put the default value in conf file (sshd, QOS and protocols/dns/ext_LAN filtering are off)(web antivirus is on)
|
1 |
root |
1408 |
/sbin/chkconfig --del sshd
|
628 |
richard |
1409 |
echo "SSH=off" >> $CONF_FILE
|
694 |
franck |
1410 |
echo 'Admin_from_IP="0.0.0.0/0.0.0.0"' >> $CONF_FILE
|
628 |
richard |
1411 |
echo "QOS=off" >> $CONF_FILE
|
|
|
1412 |
echo "LDAP=off" >> $CONF_FILE
|
786 |
richard |
1413 |
echo "LDAP_IP=0.0.0.0/0.0.0.0" >> $CONF_FILE
|
628 |
richard |
1414 |
echo "PROTOCOLS_FILTERING=off" >> $CONF_FILE
|
790 |
richard |
1415 |
echo "EXT_LAN_FILTERING=off" >> $CONF_FILE
|
628 |
richard |
1416 |
echo "DNS_FILTERING=off" >> $CONF_FILE
|
|
|
1417 |
echo "WEB_ANTIVIRUS=on" >> $CONF_FILE
|
1 |
root |
1418 |
# Coloration des prompts
|
|
|
1419 |
[ -e /etc/bashrc.default ] || cp /etc/bashrc /etc/bashrc.default
|
5 |
franck |
1420 |
cp -f $DIR_CONF/bashrc /etc/. ; chmod 644 /etc/bashrc ; chown root:root /etc/bashrc
|
630 |
franck |
1421 |
$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
|
1 |
root |
1422 |
# Droits d'exécution pour utilisateur apache et sysadmin
|
|
|
1423 |
[ -e /etc/sudoers.default ] || cp /etc/sudoers /etc/sudoers.default
|
5 |
franck |
1424 |
cp -f $DIR_CONF/sudoers /etc/. ; chmod 440 /etc/sudoers ; chown root:root /etc/sudoers
|
629 |
richard |
1425 |
$SED "s?^Host_Alias.*?Host_Alias LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost #réseau de l'organisme?g" /etc/sudoers
|
132 |
franck |
1426 |
# prise en compte de la rotation des logs sur 1 an (concerne mysql, httpd, dansguardian, squid, radiusd, ulogd)
|
1 |
root |
1427 |
cp -f $DIR_CONF/logrotate.d/* /etc/logrotate.d/
|
|
|
1428 |
chmod 644 /etc/logrotate.d/*
|
714 |
franck |
1429 |
# rectification sur versions précédentes de la compression des logs
|
706 |
franck |
1430 |
$SED "s?^delaycompress.*?#&?g" /etc/logrotate.conf
|
|
|
1431 |
# actualisation des fichiers logs compressés
|
714 |
franck |
1432 |
for dir in firewall squid dansguardian httpd
|
706 |
franck |
1433 |
do
|
714 |
franck |
1434 |
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 {} \;
|
706 |
franck |
1435 |
done
|
|
|
1436 |
# export des logs en 'retard' dans /var/Save/logs
|
|
|
1437 |
/usr/local/bin/alcasar-log-export.sh
|
1 |
root |
1438 |
# processus lancés par défaut au démarrage
|
796 |
richard |
1439 |
for i in ntpd iptables ulogd dnsmasq squid chilli httpd radiusd netfs mysqld dansguardian havp freshclam
|
1 |
root |
1440 |
do
|
|
|
1441 |
/sbin/chkconfig --add $i
|
|
|
1442 |
done
|
595 |
richard |
1443 |
# pour éviter les alertes de dépendance entre service.
|
384 |
richard |
1444 |
$SED "s?^# Required-Start.*?# Required-Start: \$local_fs \$network?g" /etc/init.d/mysqld
|
497 |
richard |
1445 |
$SED "s?^# Required-Stop.*?# Required-Stop: \$local_fs \$network?g" /etc/init.d/mysqld
|
595 |
richard |
1446 |
$SED "s?^# Should-Start.*?# Should-Start: radiusd ldap?g" /etc/init.d/httpd
|
|
|
1447 |
$SED "s?^# Should-Stop.*?# Should-Stop: radiusd ldap?g" /etc/init.d/httpd
|
306 |
richard |
1448 |
# On affecte le niveau de sécurité du système : type "fileserver"
|
235 |
richard |
1449 |
$SED "s?BASE_LEVEL=.*?BASE_LEVEL=fileserver?g" /etc/security/msec/security.conf
|
306 |
richard |
1450 |
# On supprime la vérification du mode promiscious des interfaces réseaux ( nombreuses alertes sur eth1 dûes à Tun0 )
|
235 |
richard |
1451 |
$SED "s?CHECK_PROMISC=.*?CHECK_PROMISC=no?g" /etc/security/msec/level.fileserver
|
568 |
richard |
1452 |
# On applique les préconisations ANSSI (sysctl + msec quand c'est possible)
|
|
|
1453 |
# Apply French Security Agency rules (sysctl + msec when possible)
|
|
|
1454 |
# ignorer les broadcast ICMP. (attaque smurf)
|
|
|
1455 |
$SED "s?^ACCEPT_BROADCASTED_ICMP_ECHO=.*?ACCEPT_BROADCASTED_ICMP_ECHO=no?g" /etc/security/msec/level.fileserver
|
|
|
1456 |
sysctl -w net.ipv4.icmp_echo_ignore_broadcasts=1
|
|
|
1457 |
# ignorer les erreurs ICMP bogus
|
|
|
1458 |
$SED "s?^ACCEPT_BOGUS_ERROR_RESPONSES=.*?ACCEPT_BOGUS_ERROR_RESPONSES=no?g" /etc/security/msec/level.fileserver
|
|
|
1459 |
sysctl -w net.ipv4.icmp_ignore_bogus_error_responses=1
|
595 |
richard |
1460 |
# désactiver l'envoi et la réponse aux ICMP redirects
|
679 |
richard |
1461 |
sysctl -w net.ipv4.conf.all.accept_redirects=0
|
568 |
richard |
1462 |
accept_redirect=`grep accept_redirect /etc/sysctl.conf|wc -l`
|
|
|
1463 |
if [ "$accept_redirect" == "0" ]
|
|
|
1464 |
then
|
679 |
richard |
1465 |
echo "net.ipv4.conf.all.accept_redirects = 0" >> /etc/sysctl.conf
|
|
|
1466 |
else
|
|
|
1467 |
$SED "s?accept_redirects.*?accept_redirects = 0?g" /etc/sysctl.conf
|
568 |
richard |
1468 |
fi
|
679 |
richard |
1469 |
sysctl -w net.ipv4.conf.all.send_redirects=0
|
568 |
richard |
1470 |
send_redirect=`grep send_redirect /etc/sysctl.conf|wc -l`
|
|
|
1471 |
if [ "$send_redirect" == "0" ]
|
|
|
1472 |
then
|
679 |
richard |
1473 |
echo "net.ipv4.conf.all.send_redirects = 0" >> /etc/sysctl.conf
|
|
|
1474 |
else
|
|
|
1475 |
$SED "s?send_redirects.*?send_redirects = 0?g" /etc/sysctl.conf
|
568 |
richard |
1476 |
fi
|
|
|
1477 |
# activer les SYN Cookies (attaque syn flood)
|
679 |
richard |
1478 |
sysctl -w net.ipv4.tcp_syncookies=1
|
568 |
richard |
1479 |
tcp_syncookies=`grep tcp_syncookies /etc/sysctl.conf|wc -l`
|
|
|
1480 |
if [ "$tcp_syncookies" == "0" ]
|
|
|
1481 |
then
|
679 |
richard |
1482 |
echo "net.ipv4.tcp_syncookies = 1" >> /etc/sysctl.conf
|
|
|
1483 |
else
|
|
|
1484 |
$SED "s?tcp_syncookies.*?tcp_syncookies = 1?g" /etc/sysctl.conf
|
568 |
richard |
1485 |
fi
|
595 |
richard |
1486 |
# activer l'antispoofing niveau Noyau
|
568 |
richard |
1487 |
$SED "s?^ENABLE_IP_SPOOFING_PROTECTION.*?ENABLE_IP_SPOOFING_PROTECTION=yes?g" /etc/security/msec/level.fileserver
|
|
|
1488 |
sysctl -w net.ipv4.conf.all.rp_filter=1
|
|
|
1489 |
# ignorer le source routing
|
679 |
richard |
1490 |
sysctl -w net.ipv4.conf.all.accept_source_route=0
|
568 |
richard |
1491 |
accept_source_route=`grep accept_source_route /etc/sysctl.conf|wc -l`
|
|
|
1492 |
if [ "$accept_source_route" == "0" ]
|
|
|
1493 |
then
|
679 |
richard |
1494 |
echo "net.ipv4.conf.all.accept_source_route = 0" >> /etc/sysctl.conf
|
|
|
1495 |
else
|
|
|
1496 |
$SED "s?accept_source_route.*?accept_source_route = 0?g" /etc/sysctl.conf
|
568 |
richard |
1497 |
fi
|
679 |
richard |
1498 |
# réglage du timer de maintien de suivi de session à 1h (3600s) au lieu de 5 semaines
|
|
|
1499 |
sysctl -w net.netfilter.nf_conntrack_tcp_timeout_established=3600
|
|
|
1500 |
timeout_established=`grep timeout_established /etc/sysctl.conf|wc -l`
|
|
|
1501 |
if [ "$timeout_established" == "0" ]
|
|
|
1502 |
then
|
|
|
1503 |
echo "net.netfilter.nf_conntrack_tcp_timeout_established = 3600" >> /etc/sysctl.conf
|
|
|
1504 |
else
|
793 |
richard |
1505 |
$SED "s?timeout_established.*?timeout_established = 3600?g" /etc/sysctl.conf
|
679 |
richard |
1506 |
fi
|
|
|
1507 |
# suppression des log_martians (ALCASAR est souvent entre deux réseaux en adressage privée)
|
568 |
richard |
1508 |
sysctl -w net.ipv4.conf.all.log_martians=0
|
|
|
1509 |
$SED "s?^ENABLE_LOG_STRANGE_PACKETS=.*?ENABLE_LOG_STRANGE_PACKETS=no?g" /etc/security/msec/level.fileserver
|
|
|
1510 |
|
793 |
richard |
1511 |
|
306 |
richard |
1512 |
# On supprime la gestion du <CTRL>+<ALT>+<SUPPR> et des Magic SysReq Keys
|
|
|
1513 |
$SED "s?^ALLOW_REBOOT=.*?ALLOW_REBOOT=no?g" /etc/security/msec/level.fileserver
|
1 |
root |
1514 |
# On mets en place la sécurité sur les fichiers
|
|
|
1515 |
# des modif par rapport à radius update
|
|
|
1516 |
cat <<EOF > /etc/security/msec/perm.local
|
|
|
1517 |
/var/log/firewall/ root.apache 750
|
|
|
1518 |
/var/log/firewall/* root.apache 640
|
|
|
1519 |
/etc/security/msec/perm.local root.root 640
|
|
|
1520 |
/etc/security/msec/level.local root.root 640
|
|
|
1521 |
/etc/freeradius-web root.apache 750
|
|
|
1522 |
/etc/freeradius-web/admin.conf root.apache 640
|
|
|
1523 |
/etc/freeradius-web/config.php root.apache 640
|
|
|
1524 |
/etc/raddb/dictionnary root.radius 640
|
|
|
1525 |
/etc/raddb/ldap.attrmap root.radius 640
|
|
|
1526 |
/etc/raddb/hints root.radius 640
|
|
|
1527 |
/etc/raddb/huntgroups root.radius 640
|
|
|
1528 |
/etc/raddb/attrs.access_reject root.radius 640
|
|
|
1529 |
/etc/raddb/attrs.accounting_response root.radius 640
|
|
|
1530 |
/etc/raddb/acct_users root.radius 640
|
|
|
1531 |
/etc/raddb/preproxy_users root.radius 640
|
|
|
1532 |
/etc/raddb/modules/ldap radius.apache 660
|
|
|
1533 |
/etc/raddb/sites-available/alcasar radius.apache 660
|
|
|
1534 |
/etc/pki/* root.apache 750
|
|
|
1535 |
EOF
|
|
|
1536 |
/usr/sbin/msec
|
59 |
richard |
1537 |
# modification /etc/inittab
|
|
|
1538 |
[ -e /etc/inittab.default ] || cp /etc/inittab /etc/inittab.default
|
60 |
richard |
1539 |
# On ne garde que 3 terminaux
|
59 |
richard |
1540 |
$SED "s?^4.*?#&?g" /etc/inittab
|
|
|
1541 |
$SED "s?^5.*?#&?g" /etc/inittab
|
|
|
1542 |
$SED "s?^6.*?#&?g" /etc/inittab
|
470 |
richard |
1543 |
# On limite le temps d'attente de grub (3s) et on change la résolution d'écran
|
|
|
1544 |
$SED "s?^timeout.*?timeout 3?g" /boot/grub/menu.lst
|
|
|
1545 |
$SED "s?^kernel.*?& vga=791?g" /boot/grub/menu.lst
|
532 |
richard |
1546 |
# On supprime les services et les utilisateurs inutiles
|
793 |
richard |
1547 |
for svc in alsa sound dm atd bootlogd stop-bootlogd
|
532 |
richard |
1548 |
do
|
|
|
1549 |
/sbin/chkconfig --del $svc
|
|
|
1550 |
done
|
|
|
1551 |
for rm_users in avahi-autoipd avahi icapd
|
|
|
1552 |
do
|
|
|
1553 |
user=`cat /etc/passwd|grep $rm_users|cut -d":" -f1`
|
|
|
1554 |
if [ "$user" == "$rm_users" ]
|
|
|
1555 |
then
|
|
|
1556 |
/usr/sbin/userdel -f $rm_users
|
|
|
1557 |
fi
|
|
|
1558 |
done
|
628 |
richard |
1559 |
# Load and update the previous conf file
|
5 |
franck |
1560 |
if [ "$mode" = "update" ]
|
|
|
1561 |
then
|
389 |
franck |
1562 |
$DIR_DEST_BIN/alcasar-conf.sh --load
|
628 |
richard |
1563 |
$SED "s?^INSTALL_DATE=.*?INSTALL_DATE=$DATE?g" $CONF_FILE
|
|
|
1564 |
$SED "s?^VERSION=.*?VERSION=$VERSION?g" $CONF_FILE
|
5 |
franck |
1565 |
fi
|
595 |
richard |
1566 |
rm -f /tmp/alcasar-conf*
|
434 |
richard |
1567 |
chown -R root:apache $DIR_DEST_ETC/*
|
512 |
richard |
1568 |
chmod -R 660 $DIR_DEST_ETC/*
|
434 |
richard |
1569 |
chmod ug+x $DIR_DEST_ETC/digest $DIR_DEST_ETC/alcasar-dnsfilter*
|
1 |
root |
1570 |
cd $DIR_INSTALL
|
5 |
franck |
1571 |
echo ""
|
1 |
root |
1572 |
echo "#############################################################################"
|
638 |
richard |
1573 |
if [ $Lang == "fr" ]
|
|
|
1574 |
then
|
|
|
1575 |
echo "# Fin d'installation d'ALCASAR #"
|
|
|
1576 |
echo "# #"
|
|
|
1577 |
echo "# Application Libre pour le Contrôle Authentifié et Sécurisé #"
|
|
|
1578 |
echo "# des Accès au Réseau ( ALCASAR ) #"
|
|
|
1579 |
echo "# #"
|
|
|
1580 |
echo "#############################################################################"
|
|
|
1581 |
echo
|
|
|
1582 |
echo "- ALCASAR sera fonctionnel après redémarrage du système"
|
|
|
1583 |
echo
|
|
|
1584 |
echo "- Lisez attentivement la documentation d'exploitation"
|
|
|
1585 |
echo
|
|
|
1586 |
echo "- Le centre de controle d'ALCASAR (ACC) est à l'adresse http://alcasar"
|
|
|
1587 |
echo
|
|
|
1588 |
echo " Appuyez sur 'Entrée' pour continuer"
|
|
|
1589 |
else
|
|
|
1590 |
echo "# Enf of ALCASAR install process #"
|
|
|
1591 |
echo "# #"
|
|
|
1592 |
echo "# Application Libre pour le Contrôle Authentifié et Sécurisé #"
|
|
|
1593 |
echo "# des Accès au Réseau ( ALCASAR ) #"
|
|
|
1594 |
echo "# #"
|
|
|
1595 |
echo "#############################################################################"
|
|
|
1596 |
echo
|
|
|
1597 |
echo "- The system will be rebooted in order to operate ALCASAR"
|
|
|
1598 |
echo
|
|
|
1599 |
echo "- Read the exploitation documentation"
|
|
|
1600 |
echo
|
|
|
1601 |
echo "- The ALCASAR Control Center (ACC) is at http://alcasar"
|
|
|
1602 |
echo
|
|
|
1603 |
echo " Hit 'Enter' to continue"
|
|
|
1604 |
fi
|
815 |
richard |
1605 |
sleep 2
|
|
|
1606 |
if [ "$mode" != "update" ]
|
820 |
richard |
1607 |
then
|
815 |
richard |
1608 |
read a
|
|
|
1609 |
fi
|
774 |
richard |
1610 |
clear
|
|
|
1611 |
# Apply and save the firewall rules
|
490 |
richard |
1612 |
sh $DIR_DEST_BIN/alcasar-iptables.sh
|
|
|
1613 |
sleep 2
|
1 |
root |
1614 |
reboot
|
|
|
1615 |
} # End post_install ()
|
|
|
1616 |
|
|
|
1617 |
#################################
|
|
|
1618 |
# Boucle principale du script #
|
|
|
1619 |
#################################
|
832 |
richard |
1620 |
dir_exec=`dirname "$0"`
|
|
|
1621 |
if [ $dir_exec != "." ]
|
|
|
1622 |
then
|
|
|
1623 |
echo "Lancez ce programme depuis le répertoire de l'archive d'ALCASAR"
|
|
|
1624 |
echo "Launch this program from the ALCASAR archive directory"
|
|
|
1625 |
exit 0
|
|
|
1626 |
fi
|
|
|
1627 |
VERSION=`cat $DIR_INSTALL/VERSION`
|
291 |
franck |
1628 |
usage="Usage: alcasar.sh {-i or --install} | {-u or --uninstall}"
|
1 |
root |
1629 |
nb_args=$#
|
|
|
1630 |
args=$1
|
|
|
1631 |
if [ $nb_args -eq 0 ]
|
|
|
1632 |
then
|
|
|
1633 |
nb_args=1
|
|
|
1634 |
args="-h"
|
|
|
1635 |
fi
|
|
|
1636 |
case $args in
|
|
|
1637 |
-\? | -h* | --h*)
|
|
|
1638 |
echo "$usage"
|
|
|
1639 |
exit 0
|
|
|
1640 |
;;
|
291 |
franck |
1641 |
-i | --install)
|
5 |
franck |
1642 |
header_install
|
29 |
richard |
1643 |
testing
|
597 |
richard |
1644 |
# Test if ALCASAR is already installed
|
5 |
franck |
1645 |
if [ -e $DIR_WEB/VERSION ]
|
1 |
root |
1646 |
then
|
460 |
richard |
1647 |
actual_version=`cat $DIR_WEB/VERSION`
|
595 |
richard |
1648 |
if [ $Lang == "fr" ]
|
|
|
1649 |
then echo -n "La version "; echo -n $actual_version ; echo " d'ALCASAR est déjà installée";
|
|
|
1650 |
else echo -n "ALCASAR Version "; echo -n $actual_version ; echo " is already installed";
|
|
|
1651 |
fi
|
5 |
franck |
1652 |
response=0
|
460 |
richard |
1653 |
PTN='^[oOnNyY]$'
|
580 |
richard |
1654 |
until [[ $(expr $response : $PTN) -gt 0 ]]
|
5 |
franck |
1655 |
do
|
595 |
richard |
1656 |
if [ $Lang == "fr" ]
|
|
|
1657 |
then echo -n "Voulez-vous effectuer une mise à jour (O/n)? ";
|
|
|
1658 |
else echo -n "Do you want to update (Y/n)?";
|
|
|
1659 |
fi
|
5 |
franck |
1660 |
read response
|
|
|
1661 |
done
|
597 |
richard |
1662 |
if [ "$response" = "n" ] || [ "$response" = "N" ]
|
5 |
franck |
1663 |
then
|
597 |
richard |
1664 |
rm -f /tmp/alcasar-conf*
|
|
|
1665 |
else
|
510 |
richard |
1666 |
RUNNING_VERSION=`cat $DIR_WEB/VERSION|cut -d" " -f1`
|
|
|
1667 |
MAJ_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f1`
|
|
|
1668 |
MIN_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f2|cut -c1`
|
|
|
1669 |
UPD_RUNNING_VERSION=`echo $RUNNING_VERSION|cut -d"." -f3`
|
636 |
richard |
1670 |
# Create a backup of running version importants files
|
5 |
franck |
1671 |
chmod u+x $DIR_SCRIPTS/alcasar-conf.sh
|
389 |
franck |
1672 |
$DIR_SCRIPTS/alcasar-conf.sh --create
|
532 |
richard |
1673 |
mode="update"
|
5 |
franck |
1674 |
fi
|
1 |
root |
1675 |
fi
|
595 |
richard |
1676 |
# RPMs install
|
|
|
1677 |
$DIR_SCRIPTS/alcasar-urpmi.sh
|
|
|
1678 |
if [ "$?" != "0" ]
|
1 |
root |
1679 |
then
|
595 |
richard |
1680 |
exit 0
|
|
|
1681 |
fi
|
|
|
1682 |
if [ -e $DIR_WEB/VERSION ]
|
|
|
1683 |
then
|
597 |
richard |
1684 |
# Uninstall the running version
|
532 |
richard |
1685 |
$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
|
595 |
richard |
1686 |
fi
|
636 |
richard |
1687 |
# Test if manual update
|
597 |
richard |
1688 |
if [ -e /tmp/alcasar-conf.tar.gz ] && [ "$mode" != "update" ]
|
595 |
richard |
1689 |
then
|
636 |
richard |
1690 |
header_install
|
595 |
richard |
1691 |
if [ $Lang == "fr" ]
|
636 |
richard |
1692 |
then echo "Le fichier de configuration d'une ancienne version a été trouvé";
|
|
|
1693 |
else echo "The configuration file of an old version has been found";
|
595 |
richard |
1694 |
fi
|
597 |
richard |
1695 |
response=0
|
|
|
1696 |
PTN='^[oOnNyY]$'
|
|
|
1697 |
until [[ $(expr $response : $PTN) -gt 0 ]]
|
|
|
1698 |
do
|
|
|
1699 |
if [ $Lang == "fr" ]
|
|
|
1700 |
then echo -n "Voulez-vous l'utiliser (O/n)? ";
|
|
|
1701 |
else echo -n "Do you want to use it (Y/n)?";
|
|
|
1702 |
fi
|
|
|
1703 |
read response
|
|
|
1704 |
if [ "$response" = "n" ] || [ "$response" = "N" ]
|
|
|
1705 |
then rm -f /tmp/alcasar-conf*
|
|
|
1706 |
fi
|
|
|
1707 |
done
|
|
|
1708 |
fi
|
636 |
richard |
1709 |
# Test if update
|
597 |
richard |
1710 |
if [ -e /tmp/alcasar-conf.tar.gz ]
|
|
|
1711 |
then
|
|
|
1712 |
if [ $Lang == "fr" ]
|
|
|
1713 |
then echo "#### Installation avec mise à jour ####";
|
|
|
1714 |
else echo "#### Installation with update ####";
|
|
|
1715 |
fi
|
636 |
richard |
1716 |
# Extract the central configuration file
|
637 |
richard |
1717 |
tar -xf /tmp/alcasar-conf.tar.gz conf/etc/alcasar.conf
|
|
|
1718 |
ORGANISME=`grep ORGANISM conf/etc/alcasar.conf|cut -d"=" -f2`
|
5 |
franck |
1719 |
mode="update"
|
|
|
1720 |
else
|
|
|
1721 |
mode="install"
|
1 |
root |
1722 |
fi
|
604 |
richard |
1723 |
for func in init network gestion AC init_db param_radius param_web_radius param_chilli param_squid param_dansguardian antivirus param_ulogd param_awstats param_dnsmasq BL cron post_install
|
5 |
franck |
1724 |
do
|
|
|
1725 |
$func
|
735 |
richard |
1726 |
# echo "*** 'debug' : end of function $func ***"; read a
|
14 |
richard |
1727 |
done
|
5 |
franck |
1728 |
;;
|
291 |
franck |
1729 |
-u | --uninstall)
|
5 |
franck |
1730 |
if [ ! -e $DIR_DEST_SBIN/alcasar-uninstall.sh ]
|
1 |
root |
1731 |
then
|
597 |
richard |
1732 |
if [ $Lang == "fr" ]
|
|
|
1733 |
then echo "ALCASAR n'est pas installé!";
|
|
|
1734 |
else echo "ALCASAR isn't installed!";
|
|
|
1735 |
fi
|
1 |
root |
1736 |
exit 0
|
|
|
1737 |
fi
|
5 |
franck |
1738 |
response=0
|
|
|
1739 |
PTN='^[oOnN]$'
|
580 |
richard |
1740 |
until [[ $(expr $response : $PTN) -gt 0 ]]
|
5 |
franck |
1741 |
do
|
597 |
richard |
1742 |
if [ $Lang == "fr" ]
|
|
|
1743 |
then echo -n "Voulez-vous créer le fichier de configuration de la version actuelle (0/n)? ";
|
|
|
1744 |
else echo -n "Do you want to crate the running version configuration file (Y/n)? ";
|
|
|
1745 |
fi
|
5 |
franck |
1746 |
read response
|
|
|
1747 |
done
|
597 |
richard |
1748 |
if [ "$reponse" = "o" ] || [ "$reponse" = "O" ] || [ "$response" = "Y" ] || [ "$response" = "y" ]
|
1 |
root |
1749 |
then
|
389 |
franck |
1750 |
$DIR_SCRIPT/alcasar-conf.sh --create
|
498 |
richard |
1751 |
else
|
|
|
1752 |
rm -f /tmp/alcasar-conf*
|
1 |
root |
1753 |
fi
|
597 |
richard |
1754 |
# Uninstall the running version
|
65 |
richard |
1755 |
$DIR_SCRIPTS/sbin/alcasar-uninstall.sh
|
1 |
root |
1756 |
;;
|
|
|
1757 |
*)
|
|
|
1758 |
echo "Argument inconnu :$1";
|
460 |
richard |
1759 |
echo "Unknown argument :$1";
|
1 |
root |
1760 |
echo "$usage"
|
|
|
1761 |
exit 1
|
|
|
1762 |
;;
|
|
|
1763 |
esac
|
10 |
franck |
1764 |
# end of script
|
366 |
franck |
1765 |
|