2223 |
tom.houday |
1 |
#!/bin/bash
|
64 |
franck |
2 |
# $Id: alcasar-conf.sh 2569 2018-07-14 09:17:12Z lucas.echard $
|
672 |
richard |
3 |
|
|
|
4 |
# alcasar-conf.sh
|
865 |
richard |
5 |
# by REXY
|
672 |
richard |
6 |
# This script is distributed under the Gnu General Public License (GPL)
|
|
|
7 |
|
|
|
8 |
# Ce script permet la mise à jour ALCASAR
|
2560 |
rexy |
9 |
# - création de l'archive des fichiers de configuration "/var/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
|
2327 |
richard |
10 |
# - chargement de l'archive de fichiers de configuration lors de la mise à jour d'un alcasar (alcasar-conf -load). Le cas échéant, c'est ici qu'on met à jour les fichiers entre versions
|
1758 |
richard |
11 |
# - application des directives du fichier de conf central "/usr/local/etc/alcasar.conf" lors d'un changement de conf réseau à chaud (alcasar-conf -apply)
|
672 |
richard |
12 |
# This script allows ALCASAR update
|
2560 |
rexy |
13 |
# - create the configuration files backup "/var/tmp/alcasar-conf.tar.gz" (alcasar-conf.sh -create)
|
2327 |
richard |
14 |
# - load the backup of configuration files during the update process (alcasar-conf -load). If needed, it's here we update files between versions
|
1758 |
richard |
15 |
# - apply ALCASAR central configuration file "/usr/local/etc/alcasar.conf" when hot modification is needed (alcasar-conf -apply)
|
672 |
richard |
16 |
|
2247 |
tom.houday |
17 |
new="$(date +%G%m%d-%Hh%M)" # date et heure des fichiers
|
|
|
18 |
fichier="alcasar-conf-$new.tar.gz" # nom du fichier de sauvegarde
|
2560 |
rexy |
19 |
DIR_UPDATE="/var/tmp/conf" # répertoire de stockage des fichier de conf pour une mise à jour
|
2247 |
tom.houday |
20 |
DIR_WEB="/var/www/html" # répertoire du centre de gestion
|
|
|
21 |
DIR_BIN="/usr/local/bin" # scripts directory
|
|
|
22 |
DIR_ETC="/usr/local/etc" # conf directory
|
|
|
23 |
DIR_SHARE="/usr/local/share" # data directory
|
2521 |
armand.ito |
24 |
DIR_BLACKLIST="/etc/e2guardian/lists/blacklists" # Toulouse BL directory
|
2247 |
tom.houday |
25 |
CONF_FILE="$DIR_ETC/alcasar.conf" # main alcasar conf file
|
|
|
26 |
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2` # EXTernal InterFace
|
|
|
27 |
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
|
|
|
28 |
MTU=`grep ^PUBLIC_MTU= $CONF_FILE|cut -d"=" -f2`
|
1890 |
franck |
29 |
DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
|
|
|
30 |
INT_DNS_mode=`grep ^INT_DNS_ACTIVE= $CONF_FILE|cut -d"=" -f2`
|
|
|
31 |
LDAP_mode=`grep ^LDAP= $CONF_FILE|cut -d"=" -f2`
|
2247 |
tom.houday |
32 |
HOSTNAME=`grep ^HOSTNAME= $CONF_FILE|cut -d"=" -f2`
|
|
|
33 |
DOMAIN=`grep ^DOMAIN= $CONF_FILE|cut -d"=" -f2`
|
2412 |
tom.houday |
34 |
PASSWD_FILE="/root/ALCASAR-passwords.txt"
|
|
|
35 |
DB_USER=$(grep '^db_user=' $PASSWD_FILE | cut -d'=' -f 2-)
|
|
|
36 |
DB_PASS=$(grep '^db_password=' $PASSWD_FILE | cut -d'=' -f 2-)
|
384 |
richard |
37 |
SED="/bin/sed -i"
|
2474 |
tom.houday |
38 |
DNS1=`grep ^DNS1= $CONF_FILE | cut -d'=' -f2` # server DNS1 (for WL domain names)
|
923 |
franck |
39 |
DOMAIN=${DOMAIN:=localdomain}
|
628 |
richard |
40 |
DATE=`date '+%d %B %Y - %Hh%M'`
|
2247 |
tom.houday |
41 |
|
628 |
richard |
42 |
private_network_calc ()
|
|
|
43 |
{
|
1060 |
richard |
44 |
PRIVATE_PREFIX=`/bin/ipcalc -p $PRIVATE_IP $PRIVATE_NETMASK |cut -d"=" -f2` # prefixe du réseau (ex. 24)
|
2561 |
rexy |
45 |
PRIVATE_NETWORK=`/bin/ipcalc -n $PRIVATE_IP $PRIVATE_NETMASK| cut -d"=" -f2` # @ réseau de consultation (ex.: 192.168.182.0)
|
|
|
46 |
PRIVATE_NETWORK_MASK=$PRIVATE_NETWORK/$PRIVATE_PREFIX # @ + masque du réseau de consult (192.168.182.0/24)
|
628 |
richard |
47 |
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)
|
1060 |
richard |
48 |
PRIVATE_NETWORK_SHORT=`echo $PRIVATE_NETWORK | cut -d"." -f1-$classe`. # @ compatible hosts.allow et hosts.deny (ex.: 192.168.182.)
|
|
|
49 |
PRIVATE_BROADCAST=`/bin/ipcalc -b $PRIVATE_NETWORK_MASK | cut -d"=" -f2` # private network broadcast (ie.: 192.168.182.255)
|
|
|
50 |
private_network_ending=`echo $PRIVATE_NETWORK | cut -d"." -f$classe_sup` # last octet of LAN address
|
2561 |
rexy |
51 |
private_broadcast_ending=`echo $PRIVATE_BROADCAST | cut -d"." -f$classe_sup` # last octet of LAN broadcast
|
|
|
52 |
private_ip_ending=`echo $PRIVATE_IP | cut -d"." -f4` # last octet of LAN address
|
|
|
53 |
PRIVATE_FIRST_IP=$PRIVATE_IP # First network address (ex.: 192.168.182.1)
|
|
|
54 |
PRIVATE_SECOND_IP=`echo $PRIVATE_IP | cut -d"." -f1-3`"."`expr $private_ip_ending + 1` # second network address (ex.: 192.168.182.2)
|
1060 |
richard |
55 |
PRIVATE_LAST_IP=`echo $PRIVATE_BROADCAST | cut -d"." -f1-3`"."`expr $private_broadcast_ending - 1` # last network address (ex.: 192.168.182.254)
|
1581 |
richard |
56 |
PRIVATE_MAC=`/sbin/ip link show $INTIF | grep ether | cut -d" " -f6| sed 's/:/-/g'| awk '{print toupper($0)}'` # MAC address of INTIF
|
628 |
richard |
57 |
}
|
8 |
franck |
58 |
|
933 |
franck |
59 |
usage="Usage: alcasar-conf.sh {--create or -create} | {--load or -load} | {--apply or -apply}"
|
8 |
franck |
60 |
nb_args=$#
|
|
|
61 |
args=$1
|
|
|
62 |
if [ $nb_args -eq 0 ]
|
|
|
63 |
then
|
2430 |
tom.houday |
64 |
nb_args=1
|
8 |
franck |
65 |
args="-h"
|
|
|
66 |
fi
|
|
|
67 |
case $args in
|
|
|
68 |
-\? | -h* | --h*)
|
|
|
69 |
echo "$usage"
|
|
|
70 |
exit 0
|
|
|
71 |
;;
|
389 |
franck |
72 |
--create|-create)
|
8 |
franck |
73 |
[ -d $DIR_UPDATE ] && rm -rf $DIR_UPDATE
|
|
|
74 |
mkdir $DIR_UPDATE
|
1916 |
franck |
75 |
# backup the users database (test to delete in future version)
|
1918 |
franck |
76 |
if [ -e $DIR_BIN/alcasar-mysql.sh ]; then
|
|
|
77 |
$DIR_BIN/alcasar-mysql.sh --dump
|
1916 |
franck |
78 |
else
|
|
|
79 |
/usr/local/sbin/alcasar-mysql.sh --dump
|
|
|
80 |
fi
|
1777 |
richard |
81 |
cp /var/Save/base/`ls -1t /var/Save/base|head -1` $DIR_UPDATE
|
1758 |
richard |
82 |
# backup the logo
|
8 |
franck |
83 |
cp -f $DIR_WEB/images/organisme.png $DIR_UPDATE
|
1912 |
richard |
84 |
# backup BL/WL custom files
|
1914 |
richard |
85 |
mkdir $DIR_UPDATE/custom_bl
|
2541 |
rexy |
86 |
for i in exceptioniplist urlregexplist exceptionsitelist bannedsitelist exceptionurllist bannedurllist
|
|
|
87 |
do
|
2561 |
rexy |
88 |
if [ -d /etc/dansguardian ]; then # before V3.3
|
2541 |
rexy |
89 |
cp /etc/dansguardian/lists/$i $DIR_UPDATE/custom_bl/
|
|
|
90 |
else
|
2561 |
rexy |
91 |
cp /etc/e2guardian/lists/$i $DIR_UPDATE/custom_bl/ # since V3.3
|
2541 |
rexy |
92 |
fi
|
|
|
93 |
done
|
1961 |
richard |
94 |
cp -rf $DIR_BLACKLIST/ossi-* $DIR_UPDATE/custom_bl/ 2>/dev/null
|
2560 |
rexy |
95 |
# backup of different conf files (main conf file, filtering, digest, /etc/hosts, etc.)
|
8 |
franck |
96 |
mkdir $DIR_UPDATE/etc/
|
346 |
richard |
97 |
cp -rf $DIR_ETC/* $DIR_UPDATE/etc/
|
2560 |
rexy |
98 |
cp /etc/hosts $DIR_UPDATE/etc/
|
1758 |
richard |
99 |
# backup of the security certificates (server & CA)
|
2561 |
rexy |
100 |
cp -f /etc/pki/tls/certs/alcasar.crt* $DIR_UPDATE
|
|
|
101 |
cp -f /etc/pki/tls/private/alcasar.key* $DIR_UPDATE
|
2566 |
rexy |
102 |
cp -f /etc/pki/tls/private/alcasar.pem $DIR_UPDATE
|
1564 |
richard |
103 |
cp -f /etc/pki/CA/alcasar-ca.crt $DIR_UPDATE
|
|
|
104 |
cp -f /etc/pki/CA/private/alcasar-ca.key $DIR_UPDATE
|
|
|
105 |
if [ -e /etc/pki/tls/certs/server-chain.crt ]; then
|
2244 |
tom.houday |
106 |
cp -f /etc/pki/tls/certs/server-chain.crt* $DIR_UPDATE # autosigned and official if exist
|
510 |
richard |
107 |
else
|
1564 |
richard |
108 |
cp -f /etc/pki/tls/certs/alcasar.crt $DIR_UPDATE/server-chain.crt
|
510 |
richard |
109 |
fi
|
1758 |
richard |
110 |
# archive file creation
|
2560 |
rexy |
111 |
cd /var/tmp
|
8 |
franck |
112 |
tar -cf alcasar-conf.tar conf/
|
|
|
113 |
gzip -f alcasar-conf.tar
|
|
|
114 |
rm -rf $DIR_UPDATE
|
|
|
115 |
;;
|
2560 |
rexy |
116 |
|
389 |
franck |
117 |
--load|-load)
|
2560 |
rexy |
118 |
cd /var/tmp
|
|
|
119 |
tar -xf alcasar-conf*.tar.gz
|
2561 |
rexy |
120 |
# Extract the previous version
|
|
|
121 |
PREVIOUS_VERSION=`grep ^VERSION= $DIR_UPDATE/etc/alcasar.conf|cut -d"=" -f2`
|
|
|
122 |
MAJ_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f1`
|
|
|
123 |
MIN_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f2`
|
|
|
124 |
UPD_PREVIOUS_VERSION=`echo $PREVIOUS_VERSION|cut -d"." -f3|cut -c1`
|
1060 |
richard |
125 |
# Retrieve the logo
|
510 |
richard |
126 |
[ -e $DIR_UPDATE/organisme.png ] && cp -f $DIR_UPDATE/organisme.png $DIR_WEB/images/
|
8 |
franck |
127 |
chown apache:apache $DIR_WEB/images/organisme.png $DIR_WEB/intercept.php
|
1060 |
richard |
128 |
# Retrieve the security certificates (CA and server)
|
2561 |
rexy |
129 |
cp -f $DIR_UPDATE/alcasar-ca.crt* /etc/pki/CA/
|
|
|
130 |
cp -f $DIR_UPDATE/alcasar-ca.key* /etc/pki/CA/private/
|
1758 |
richard |
131 |
cp -f $DIR_UPDATE/alcasar.crt /etc/pki/tls/certs/
|
|
|
132 |
cp -f $DIR_UPDATE/alcasar.key /etc/pki/tls/private/
|
2566 |
rexy |
133 |
cp -f $DIR_UPDATE/alcasar.pem /etc/pki/tls/private/
|
2244 |
tom.houday |
134 |
[ -e $DIR_UPDATE/server-chain.crt ] && cp -f $DIR_UPDATE/server-chain.crt* /etc/pki/tls/certs/ # autosigned and official if exist
|
8 |
franck |
135 |
chown -R root:apache /etc/pki
|
|
|
136 |
chmod -R 750 /etc/pki
|
1060 |
richard |
137 |
# Import of the users database
|
2412 |
tom.houday |
138 |
gzip -dc < `ls $DIR_UPDATE/alcasar-users-database*` | mysql -u$DB_USER -p$DB_PASS
|
1914 |
richard |
139 |
# Retrieve local parameters
|
2561 |
rexy |
140 |
cp -rf $DIR_UPDATE/etc/* $DIR_ETC/
|
2560 |
rexy |
141 |
mv -f $DIR_ETC/hosts /etc/hosts
|
1914 |
richard |
142 |
# Retrieve BL/WL custom files
|
2521 |
armand.ito |
143 |
cp -f $DIR_UPDATE/custom_bl/exceptioniplist /etc/e2guardian/lists/
|
|
|
144 |
cp -f $DIR_UPDATE/custom_bl/exceptionsitelist /etc/e2guardian/lists/
|
|
|
145 |
cp -f $DIR_UPDATE/custom_bl/urlregexplist /etc/e2guardian/lists/
|
|
|
146 |
cp -f $DIR_UPDATE/custom_bl/bannedsitelist /etc/e2guardian/lists/
|
|
|
147 |
cp -f $DIR_UPDATE/custom_bl/exceptionurllist /etc/e2guardian/lists/
|
|
|
148 |
cp -f $DIR_UPDATE/custom_bl/bannedurllist /etc/e2guardian/lists/
|
1961 |
richard |
149 |
cp -rf $DIR_UPDATE/custom_bl/ossi-* $DIR_BLACKLIST/ 2>/dev/null
|
2521 |
armand.ito |
150 |
chown -R e2guardian:apache /etc/e2guardian/lists
|
|
|
151 |
chmod -R g+rw /etc/e2guardian/lists
|
1060 |
richard |
152 |
# Adapt DNS/URL filtering
|
|
|
153 |
PARENT_SCRIPT=`basename $0`
|
637 |
richard |
154 |
export PARENT_SCRIPT
|
1946 |
richard |
155 |
$DIR_BIN/alcasar-bl.sh -cat_choice
|
1827 |
raphael.pi |
156 |
$DIR_BIN/alcasar-bl.sh -reload
|
1060 |
richard |
157 |
# admin profile update (admin + manager + backup)
|
1827 |
raphael.pi |
158 |
$DIR_BIN/alcasar-profil.sh --list
|
634 |
richard |
159 |
# Start / Stop SSH Daemon
|
2327 |
richard |
160 |
ssh_active=`grep "^SSH=" $CONF_FILE|cut -d"=" -f2`
|
634 |
richard |
161 |
if [ $ssh_active = "on" ]
|
|
|
162 |
then
|
1574 |
richard |
163 |
/usr/bin/systemctl -q enable sshd.service
|
634 |
richard |
164 |
else
|
1574 |
richard |
165 |
/usr/bin/systemctl -q disable sshd.service
|
634 |
richard |
166 |
fi
|
1060 |
richard |
167 |
# Remove the update folder
|
8 |
franck |
168 |
rm -rf $DIR_UPDATE
|
2560 |
rexy |
169 |
######################### modifications between versions #######################
|
|
|
170 |
## From 3.2.0 & 3.2.1 ##
|
2561 |
rexy |
171 |
if [ $MAJ_PREVIOUS_VERSION == "3" ] && [ $MIN_PREVIOUS_VERSION == "2" ]
|
2327 |
richard |
172 |
then
|
2560 |
rexy |
173 |
## rewrite the file managing domain name resolution (local & remote). Hostnames resolutions are now in /etc/hosts
|
|
|
174 |
cat << EOF > $DIR_ETC/alcasar-dns-name
|
|
|
175 |
# Vous pouvez définir ici votre nom de domain local ('localdomain' par défaut)
|
|
|
176 |
# Here you can define your local domain name ('localdomain' by default)
|
|
|
177 |
local=/$DOMAIN/
|
|
|
178 |
domain=$DOMAIN
|
|
|
179 |
|
|
|
180 |
## Ajouter une ligne pour chaque nom de domaine géré par un autre seveur DNS
|
|
|
181 |
## Add one line for each domain name managed by an other DNS server
|
|
|
182 |
## server=/<your_domain>/<@IP_domain_server>
|
|
|
183 |
## Exemple for an A.D. domain : server=/Your.Domain.AD/110.120.100.100
|
|
|
184 |
## Exemple for an other domain : server=/an_other_domain/10.20.30.40
|
|
|
185 |
|
|
|
186 |
## INFO : local hostnames are resolved in /etc/hosts file
|
|
|
187 |
EOF
|
|
|
188 |
## rewrite /etc/hosts file managing hostname resolution
|
|
|
189 |
PRIVATE_IP=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2|cut -d"/" -f1`
|
|
|
190 |
HOSTNAME=`grep ^HOSTNAME= $CONF_FILE|cut -d"=" -f2`
|
|
|
191 |
cat << EOF > /etc/hosts
|
|
|
192 |
127.0.0.1 localhost
|
|
|
193 |
$PRIVATE_IP $HOSTNAME
|
|
|
194 |
EOF
|
2561 |
rexy |
195 |
# apache & dansguardian are replaced with lighttpd & E²guardian
|
|
|
196 |
rm_rpm="apache apache-mod_php apache-mod_ssl dansguardian"
|
|
|
197 |
/usr/sbin/urpme --auto -a $rm_rpm
|
|
|
198 |
/usr/sbin/urpme --auto --auto-orphans
|
|
|
199 |
rm -rf /etc/httpd/ /var/log/httpd/ /var/dansguardian/ /etc/dansguardian/
|
2566 |
rexy |
200 |
# lighttpd need a .pem certificate (aggregation with server crt & private key)
|
|
|
201 |
(cat /etc/pki/tls/private/alcasar.key; echo; cat /etc/pki/tls/certs/alcasar.crt) > /etc/pki/tls/private/alcasar.pem
|
2327 |
richard |
202 |
fi
|
8 |
franck |
203 |
;;
|
2560 |
rexy |
204 |
|
628 |
richard |
205 |
--apply|-apply)
|
994 |
franck |
206 |
PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\/([012]?[0-9]|3[0-2])\b"
|
2474 |
tom.houday |
207 |
PRIVATE_IP_MASK=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
|
628 |
richard |
208 |
check=$(echo $PRIVATE_IP_MASK | egrep $PTN)
|
|
|
209 |
if [[ "$?" -ne 0 ]]
|
|
|
210 |
then
|
|
|
211 |
echo "Syntax error for PRIVATE_IP_MASK ($PRIVATE_IP_MASK)"
|
|
|
212 |
exit 0
|
|
|
213 |
fi
|
2474 |
tom.houday |
214 |
PUBLIC_IP_MASK=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`
|
1590 |
richard |
215 |
PTN="\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b"
|
1585 |
richard |
216 |
if [[ "$PUBLIC_IP_MASK" == "dhcp" ]]
|
|
|
217 |
then
|
|
|
218 |
PUBLIC_GATEWAY="dhcp"
|
1590 |
richard |
219 |
|
1585 |
richard |
220 |
else
|
|
|
221 |
check=$(echo $PUBLIC_IP_MASK | egrep $PTN)
|
|
|
222 |
if [[ "$?" -ne 0 ]]
|
628 |
richard |
223 |
then
|
1585 |
richard |
224 |
echo "Syntax error for PUBLIC_IP_MASK ($PUBLIC_IP_MASK)"
|
|
|
225 |
exit 0
|
|
|
226 |
fi
|
1590 |
richard |
227 |
PUBLIC_IP=`echo $PUBLIC_IP_MASK | cut -d"/" -f1`
|
|
|
228 |
PUBLIC_NETMASK=`/bin/ipcalc -m $PUBLIC_IP_MASK | cut -d"=" -f2`
|
2474 |
tom.houday |
229 |
PUBLIC_GATEWAY=`grep ^GW= $CONF_FILE|cut -d"=" -f2`
|
1585 |
richard |
230 |
check=$(echo $PUBLIC_GATEWAY | egrep $PTN)
|
|
|
231 |
if [[ "$?" -ne 0 ]]
|
|
|
232 |
then
|
|
|
233 |
echo "Syntax error for the Gateway IP ($PUBLIC_GATEWAY)"
|
|
|
234 |
exit 0
|
|
|
235 |
fi
|
628 |
richard |
236 |
fi
|
2474 |
tom.houday |
237 |
DNS1=`grep ^DNS1= $CONF_FILE|cut -d"=" -f2`
|
1590 |
richard |
238 |
check=$(echo $DNS1 | egrep $PTN)
|
|
|
239 |
if [[ "$?" -ne 0 ]]
|
|
|
240 |
then
|
|
|
241 |
echo "Syntax error for the IP address of the first DNS server ($DNS1)"
|
|
|
242 |
exit 0
|
|
|
243 |
fi
|
2474 |
tom.houday |
244 |
DNS2=`grep ^DNS2= $CONF_FILE|cut -d"=" -f2`
|
1590 |
richard |
245 |
check=$(echo $DNS2 | egrep $PTN)
|
|
|
246 |
if [[ "$?" -ne 0 ]]
|
|
|
247 |
then
|
|
|
248 |
echo "Syntax error for the IP address of the second DNS server ($DNS2)"
|
|
|
249 |
exit 0
|
|
|
250 |
fi
|
631 |
richard |
251 |
PRIVATE_IP=`echo $PRIVATE_IP_MASK | cut -d"/" -f1`
|
632 |
richard |
252 |
PRIVATE_NETMASK=`/bin/ipcalc -m $PRIVATE_IP_MASK | cut -d"=" -f2`
|
628 |
richard |
253 |
private_network_calc
|
2474 |
tom.houday |
254 |
INSTALL_DATE=`grep ^INSTALL_DATE= $CONF_FILE|cut -d"=" -f2`
|
|
|
255 |
ORGANISME=`grep ^ORGANISM= $CONF_FILE|cut -d"=" -f2-`
|
|
|
256 |
DHCP_mode=`grep ^DHCP= $CONF_FILE|cut -d"=" -f2`
|
1060 |
richard |
257 |
if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
|
933 |
franck |
258 |
then
|
1890 |
franck |
259 |
if [ $DHCP_mode = "off" ] || [ $DHCP_mode = "Off" ] || [ $DHCP_mode = "OFF" ]
|
1060 |
richard |
260 |
then
|
1827 |
raphael.pi |
261 |
$DIR_BIN/alcasar-dhcp.sh --off
|
1890 |
franck |
262 |
else
|
2569 |
lucas.echa |
263 |
$DIR_BIN/alcasar-dhcp.sh --on
|
1060 |
richard |
264 |
fi
|
1806 |
franck |
265 |
|
2568 |
rexy |
266 |
# Set the local DNS (or not)
|
1890 |
franck |
267 |
if [ $INT_DNS_mode = "on" ] || [ $INT_DNS_mode = "On" ] || [ $INT_DNS_mode = "ON" ]
|
|
|
268 |
then
|
|
|
269 |
$DIR_BIN/alcasar-dns-local.sh --on
|
|
|
270 |
else
|
|
|
271 |
$DIR_BIN/alcasar-dns-local.sh --off
|
|
|
272 |
fi
|
1611 |
franck |
273 |
|
1585 |
richard |
274 |
# Logout everybody
|
1827 |
raphael.pi |
275 |
$DIR_BIN/alcasar-logout.sh all
|
1585 |
richard |
276 |
# Services stop
|
1521 |
richard |
277 |
echo -n "Stop services : "
|
2569 |
lucas.echa |
278 |
for i in ntpd tinyproxy e2guardian dnsmasq dnsmasq-whitelist dnsmasq-blacklist dnsmasq-blackhole chilli network lighttpd
|
1060 |
richard |
279 |
do
|
1574 |
richard |
280 |
/usr/bin/systemctl stop $i && echo -n "$i, "
|
1060 |
richard |
281 |
done
|
1521 |
richard |
282 |
echo
|
1060 |
richard |
283 |
fi
|
1518 |
richard |
284 |
# EXTIF config
|
1585 |
richard |
285 |
if [ $PUBLIC_IP_MASK == "dhcp" ]
|
|
|
286 |
then
|
|
|
287 |
cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
|
|
|
288 |
DEVICE=$EXTIF
|
|
|
289 |
BOOTPROTO=dhcp
|
|
|
290 |
DNS1=127.0.0.1
|
|
|
291 |
PEERDNS=no
|
|
|
292 |
RESOLV_MODS=yes
|
|
|
293 |
ONBOOT=yes
|
|
|
294 |
METRIC=10
|
|
|
295 |
MII_NOT_SUPPORTED=yes
|
|
|
296 |
IPV6INIT=no
|
|
|
297 |
IPV6TO4INIT=no
|
|
|
298 |
ACCOUNTING=no
|
|
|
299 |
USERCTL=no
|
|
|
300 |
MTU=$MTU
|
1850 |
franck |
301 |
NOZEROCONF=yes
|
1585 |
richard |
302 |
EOF
|
|
|
303 |
else
|
|
|
304 |
cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-$EXTIF
|
|
|
305 |
DEVICE=$EXTIF
|
|
|
306 |
BOOTPROTO=static
|
|
|
307 |
IPADDR=$PUBLIC_IP
|
|
|
308 |
NETMASK=$PUBLIC_NETMASK
|
|
|
309 |
GATEWAY=$PUBLIC_GATEWAY
|
|
|
310 |
DNS1=127.0.0.1
|
|
|
311 |
RESOLV_MODS=yes
|
|
|
312 |
ONBOOT=yes
|
|
|
313 |
METRIC=10
|
|
|
314 |
MII_NOT_SUPPORTED=yes
|
|
|
315 |
IPV6INIT=no
|
|
|
316 |
IPV6TO4INIT=no
|
|
|
317 |
ACCOUNTING=no
|
|
|
318 |
USERCTL=no
|
|
|
319 |
MTU=$MTU
|
1850 |
franck |
320 |
NOZEROCONF=yes
|
1585 |
richard |
321 |
EOF
|
|
|
322 |
fi
|
1518 |
richard |
323 |
# INTIF config (for bypass mode only)
|
1554 |
richard |
324 |
$SED "s?^IPADDR=.*?IPADDR=$PRIVATE_IP?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
|
|
|
325 |
$SED "s?^NETMASK=.*?NETMASK=$PRIVATE_NETMASK?" /etc/sysconfig/network-scripts/bypass-ifcfg-$INTIF
|
628 |
richard |
326 |
# NTP server
|
632 |
richard |
327 |
$SED "/127.0.0.1/!s?^restrict.*?restrict $PRIVATE_NETWORK mask $PRIVATE_NETMASK nomodify notrap?g" /etc/ntp.conf
|
628 |
richard |
328 |
# host.allow
|
|
|
329 |
cat <<EOF > /etc/hosts.allow
|
|
|
330 |
ALL: LOCAL, 127.0.0.1, localhost, $PRIVATE_IP
|
|
|
331 |
sshd: ALL
|
|
|
332 |
ntpd: $PRIVATE_NETWORK_SHORT
|
|
|
333 |
EOF
|
2309 |
tom.houday |
334 |
# Set hostname
|
|
|
335 |
hostnamectl set-hostname $HOSTNAME.$DOMAIN
|
|
|
336 |
# /etc/hosts
|
|
|
337 |
cat <<EOF > /etc/hosts
|
|
|
338 |
127.0.0.1 localhost
|
2560 |
rexy |
339 |
$PRIVATE_IP $HOSTNAME
|
2309 |
tom.houday |
340 |
EOF
|
2568 |
rexy |
341 |
# Lighttpd
|
2488 |
lucas.echa |
342 |
$SED "s?^server\.bind.*?server\.bind = \"$HOSTNAME.$DOMAIN\"?g" /etc/lighttpd/lighttpd.conf
|
|
|
343 |
$SED 's/^$SERVER\["socket"\] == ".*:443.*/$SERVER\["socket"\] == "'"$HOSTNAME.$DOMAIN"':443" {/g' /etc/lighttpd/vhosts.d/alcasar.conf
|
|
|
344 |
$SED "s/^\([\t ]*\)var.server_name.*/\1var.server_name = \"$HOSTNAME.$DOMAIN\"/g" /etc/lighttpd/vhosts.d/alcasar.conf
|
2309 |
tom.houday |
345 |
# FreeRADIUS Web
|
634 |
richard |
346 |
$SED "s?^nas1_name:.*?nas1_name: alcasar-$ORGANISME?g" /etc/freeradius-web/naslist.conf
|
|
|
347 |
$SED "s?^nas1_ip:.*?nas1_ip: $PRIVATE_IP?g" /etc/freeradius-web/naslist.conf
|
632 |
richard |
348 |
# coova
|
2568 |
rexy |
349 |
$SED "s/^uamallowed.*/uamallowed\t$HOSTNAME,$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
|
|
|
350 |
$SED "s/^locationname.*/locationname\t$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
|
|
|
351 |
[ `grep ^HTTPS_LOGIN= $CONF_FILE | cut -d'=' -f2` == "on" ] && chilli_login_protocol="https" || chilli_login_protocol="http"
|
|
|
352 |
$SED "s/^uamserver.*/uamserver\t$chilli_login_protocol:\/\/$HOSTNAME.$DOMAIN\/intercept.php/" /etc/chilli.conf
|
|
|
353 |
$SED "s/^radiusnasid.*/radiusnasid\t$HOSTNAME.$DOMAIN/g" /etc/chilli.conf
|
634 |
richard |
354 |
$SED "s?^net.*?net\t\t$PRIVATE_NETWORK_MASK?g" /etc/chilli.conf
|
|
|
355 |
$SED "s?^dns1.*?dns1\t\t$PRIVATE_IP?g" /etc/chilli.conf
|
|
|
356 |
$SED "s?^dns2.*?dns2\t\t$PRIVATE_IP?g" /etc/chilli.conf
|
|
|
357 |
$SED "s?^uamlisten.*?uamlisten\t$PRIVATE_IP?g" /etc/chilli.conf
|
1581 |
richard |
358 |
# modify the DHCP static ip file. Reserve the second IP address for INTIF (the first one is for tun0). Keep previous entries
|
2274 |
richard |
359 |
$SED "s?^$PRIVATE_MAC.*?$PRIVATE_MAC $PRIVATE_SECOND_IP?" $DIR_ETC/alcasar-ethers $DIR_ETC/alcasar-ethers-info
|
632 |
richard |
360 |
# dnsmasq
|
1795 |
franck |
361 |
$SED "/127.0.0.1/!s?^listen-address=.*?listen-address=$PRIVATE_IP?g" /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf /etc/dnsmasq-whitelist.conf /etc/dnsmasq-blackhole.conf
|
1377 |
richard |
362 |
for i in /etc/dnsmasq.conf /etc/dnsmasq-blacklist.conf
|
673 |
richard |
363 |
do
|
|
|
364 |
$SED "/^server=/d" $i
|
|
|
365 |
echo "server=$DNS1" >> $i
|
|
|
366 |
echo "server=$DNS2" >> $i
|
|
|
367 |
done
|
1969 |
richard |
368 |
$SED "s?^address=.*?address=/#/$PRIVATE_IP?g" /etc/dnsmasq-blackhole.conf
|
|
|
369 |
for i in `ls $DIR_SHARE/dnsmasq-wl`
|
|
|
370 |
do
|
|
|
371 |
cat $DIR_SHARE/dnsmasq-wl/$i|cut -d"/" -f1,2 > /tmp/tmp_file
|
|
|
372 |
$SED "s/$/\/$DNS1/" /tmp/tmp_file
|
|
|
373 |
mv -f /tmp/tmp_file $DIR_SHARE/dnsmasq-wl/$i
|
|
|
374 |
done
|
|
|
375 |
chown root:apache $DIR_SHARE/dnsmasq-wl/*
|
|
|
376 |
chmod 660 $DIR_SHARE/dnsmasq-wl/*
|
2546 |
tom.houday |
377 |
$SED "s@^\([#]\?\)dhcp-range=.*@\1dhcp-range=$PRIVATE_SECOND_IP,$PRIVATE_LAST_IP,$PRIVATE_NETMASK,12h@" /etc/dnsmasq.conf
|
|
|
378 |
$SED "s@^\([#]\?\)dhcp-option=option:router.*@\1dhcp-option=option:router,$PRIVATE_IP@" /etc/dnsmasq.conf
|
|
|
379 |
$SED "s@^\([#]\?\)dhcp-option=option:ntp-server.*@\1dhcp-option=option:ntp-server,$PRIVATE_IP@" /etc/dnsmasq.conf
|
1518 |
richard |
380 |
# tinyproxy
|
|
|
381 |
$SED "s?^Listen.*?Listen $PRIVATE_IP?g" /etc/tinyproxy/tinyproxy.conf
|
634 |
richard |
382 |
# DG + BL
|
2521 |
armand.ito |
383 |
$SED "s?^filterip.*?filterip = $PRIVATE_IP?g" /etc/e2guardian/e2guardian.conf
|
634 |
richard |
384 |
# Watchdog
|
|
|
385 |
$SED "s?^PRIVATE_IP=.*?PRIVATE_IP=\"$PRIVATE_IP\"?g" $DIR_BIN/alcasar-watchdog.sh
|
|
|
386 |
# Prompts
|
|
|
387 |
$SED "s?^ORGANISME.*?ORGANISME=$ORGANISME?g" /etc/bashrc
|
|
|
388 |
# sudoers
|
|
|
389 |
$SED "s?^Host_Alias.*?Host_Alias LAN_ORG=$PRIVATE_NETWORK/$PRIVATE_NETMASK,localhost #réseau de l'organisme?g" /etc/sudoers
|
1060 |
richard |
390 |
if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
|
|
|
391 |
then
|
634 |
richard |
392 |
# Services start
|
1574 |
richard |
393 |
/usr/bin/systemctl start network && echo -n "Start service : network" && sleep 1
|
2309 |
tom.houday |
394 |
$DIR_BIN/alcasar-dhcp.sh -$DHCP_mode && echo -n ", chilli" # apply DHCP mode and start CoovaChilli
|
|
|
395 |
for i in dnsmasq dnsmasq-blackhole tinyproxy ntpd
|
|
|
396 |
do
|
|
|
397 |
sleep 1
|
|
|
398 |
/usr/bin/systemctl start $i && echo -n ", $i"
|
|
|
399 |
done
|
2569 |
lucas.echa |
400 |
$DIR_BIN/alcasar-bl.sh -reload && echo -n ", dnsmasq-blacklist, dnsmasq-whitelist, e2guardian, iptables"
|
2488 |
lucas.echa |
401 |
/usr/bin/systemctl restart lighttpd && echo -n ", lighttpd"
|
1060 |
richard |
402 |
fi
|
628 |
richard |
403 |
# Start / Stop SSH Daemon
|
2474 |
tom.houday |
404 |
ssh_active=`grep ^SSH= $CONF_FILE|cut -d"=" -f2`
|
634 |
richard |
405 |
if [ $ssh_active = "on" ]
|
|
|
406 |
then
|
1574 |
richard |
407 |
/usr/bin/systemctl enable sshd.service
|
1060 |
richard |
408 |
if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
|
|
|
409 |
then
|
1574 |
richard |
410 |
/usr/bin/systemctl start sshd.service
|
1060 |
richard |
411 |
fi
|
634 |
richard |
412 |
else
|
1574 |
richard |
413 |
/usr/bin/systemctl disable sshd.service
|
1060 |
richard |
414 |
if [ "$PARENT_SCRIPT" != "alcasar.sh" ] # don't launch on install stage
|
|
|
415 |
then
|
1574 |
richard |
416 |
/usr/bin/systemctl stop sshd.service
|
1060 |
richard |
417 |
fi
|
634 |
richard |
418 |
fi
|
2568 |
rexy |
419 |
# Start / Stop LDAP authentification
|
|
|
420 |
if [ LDAP_mode = "on" ] || [ $LDAP_mode = "On" ] || [ $LDAP_mode = "ON" ]
|
|
|
421 |
then
|
|
|
422 |
$DIR_BIN/alcasar-ldap.sh
|
|
|
423 |
fi
|
|
|
424 |
echo
|
628 |
richard |
425 |
;;
|
8 |
franck |
426 |
*)
|
|
|
427 |
echo "Argument inconnu :$1";
|
|
|
428 |
echo "$usage"
|
|
|
429 |
exit 1
|
|
|
430 |
;;
|
|
|
431 |
esac
|