Subversion Repositories ALCASAR

Rev

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

Rev 2642 Rev 2668
1
#!/bin/bash
1
#!/bin/bash
2
# $Id: alcasar-iptables.sh 2642 2018-09-24 17:39:20Z rexy $
2
# $Id: alcasar-iptables.sh 2668 2018-12-06 22:11:54Z rexy $
3
# Script de mise en place des regles du parefeu d'Alcasar (mode normal)
3
# Script de mise en place des regles du parefeu d'Alcasar (mode normal)
4
# This script writes the netfilter rules for ALCASAR
4
# This script writes the netfilter rules for ALCASAR
5
# Rexy - 3abtux - CPN
5
# Rexy - 3abtux - CPN
6
#
6
#
7
# Reminders
7
# Reminders
8
# There are four channels for log :
8
# There are four channels for log :
9
#	1 tracability of the consultation equipment with The 'Netflow' kernel module (iptables target = NETFLOW);
9
#	1 tracability of the consultation equipment with The 'Netflow' kernel module (iptables target = NETFLOW);
10
#	2 protection of ALCASAR with the Ulog group 1 (default group)
10
#	2 protection of ALCASAR with the Ulog group 1 (default group)
11
#	3 SSH on ALCASAR with the Ulog group 2;
11
#	3 SSH on ALCASAR with the Ulog group 2;
12
#	4 extern access attempts on ALCASAR with the Ulog group 3.
12
#	4 extern access attempts on ALCASAR with the Ulog group 3.
13
# The bootps/dhcp (67) port is always open on tun0/INTIF by coova
13
# The bootps/dhcp (67) port is always open on tun0/INTIF by coova
14
CONF_FILE="/usr/local/etc/alcasar.conf"
14
CONF_FILE="/usr/local/etc/alcasar.conf"
15
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`				# EXTernal InterFace
15
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2`				# EXTernal InterFace
16
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`				# INTernal InterFace
16
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2`				# INTernal InterFace
17
TUNIF="tun0"								# listen device for chilli daemon
17
TUNIF="tun0"								# listen device for chilli daemon
18
private_ip_mask=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
18
private_ip_mask=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
19
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
19
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
20
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1`			# ALCASAR LAN IP address
20
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1`			# ALCASAR LAN IP address
21
private_network=`/bin/ipcalc -n $private_ip_mask|cut -d"=" -f2`		# LAN IP address (ie.: 192.168.182.0)
21
private_network=`/bin/ipcalc -n $private_ip_mask|cut -d"=" -f2`		# LAN IP address (ie.: 192.168.182.0)
22
private_prefix=`/bin/ipcalc -p $private_ip_mask|cut -d"=" -f2`		# LAN prefix (ie. 24)
22
private_prefix=`/bin/ipcalc -p $private_ip_mask|cut -d"=" -f2`		# LAN prefix (ie. 24)
23
PRIVATE_NETWORK_MASK=$private_network/$private_prefix			# Lan IP address + prefix (192.168.182.0/24)
23
PRIVATE_NETWORK_MASK=$private_network/$private_prefix			# Lan IP address + prefix (192.168.182.0/24)
24
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
24
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
25
if [[ "$public_ip_mask" == "dhcp" ]]
25
if [[ "$public_ip_mask" == "dhcp" ]]
26
then
26
then
27
	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"
27
	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"
28
	public_ip_mask=`ip addr show $EXTIF | egrep -o $PTN`
28
	public_ip_mask=`ip addr show $EXTIF | egrep -o $PTN`
29
fi
29
fi
30
PUBLIC_IP=`echo $public_ip_mask | cut -d"/" -f1`
30
PUBLIC_IP=`echo $public_ip_mask | cut -d"/" -f1`
31
dns1=`grep ^DNS1= $CONF_FILE|cut -d"=" -f2`
31
dns1=`grep ^DNS1= $CONF_FILE|cut -d"=" -f2`
32
dns2=`grep ^DNS2= $CONF_FILE|cut -d"=" -f2`
32
dns2=`grep ^DNS2= $CONF_FILE|cut -d"=" -f2`
33
dns1=${dns1:=208.67.220.220}
33
dns1=${dns1:=208.67.220.220}
34
dns2=${dns2:=208.67.222.222}
34
dns2=${dns2:=208.67.222.222}
35
DNSSERVERS="$dns1,$dns2"						# first and second public DNS servers
35
DNSSERVERS="$dns1,$dns2"						# first and second public DNS servers
36
BL_IP_CAT="/usr/local/share/iptables-bl-enabled"			# categories files of the BlackListed IP
36
BL_IP_CAT="/usr/local/share/iptables-bl-enabled"			# categories files of the BlackListed IP
37
WL_IP_CAT="/usr/local/share/iptables-wl-enabled"			# categories files of the WhiteListed IP
37
WL_IP_CAT="/usr/local/share/iptables-wl-enabled"			# categories files of the WhiteListed IP
38
TMP_users_set_save="/tmp/users_set_save"				# tmp file for backup users set
38
TMP_users_set_save="/tmp/users_set_save"				# tmp file for backup users set
39
TMP_set_save="/tmp/ipset_save"						# tmp file for blacklist and whitelist creation
39
TMP_set_save="/tmp/ipset_save"						# tmp file for blacklist and whitelist creation
40
SSH=`grep ^SSH= $CONF_FILE|cut -d"=" -f2`				# sshd active (on/off)
40
SSH=`grep ^SSH= $CONF_FILE|cut -d"=" -f2`				# sshd active (on/off)
41
SSH=${SSH:=off}
41
SSH=${SSH:=off}
42
SSH_ADMIN_FROM=`grep ^SSH_ADMIN_FROM= $CONF_FILE|cut -d"=" -f2`
42
SSH_ADMIN_FROM=`grep ^SSH_ADMIN_FROM= $CONF_FILE|cut -d"=" -f2`
43
SSH_ADMIN_FROM=${SSH_ADMIN_FROM:="0.0.0.0/0.0.0.0"}			# WAN IP address to reduce ssh access (all ip allowed on LAN side)
43
SSH_ADMIN_FROM=${SSH_ADMIN_FROM:="0.0.0.0/0.0.0.0"}			# WAN IP address to reduce ssh access (all ip allowed on LAN side)
44
IPTABLES="/sbin/iptables"
44
IPTABLES="/sbin/iptables"
45
IP_REHABILITEES="/etc/e2guardian/lists/exceptioniplist"		# Rehabilitated IP
45
IP_REHABILITEES="/etc/e2guardian/lists/exceptioniplist"		# Rehabilitated IP
46
SITE_DIRECT="/usr/local/etc/alcasar-site-direct"			# Site Direct (no havp and no filtrage) for user BL
46
SITE_DIRECT="/usr/local/etc/alcasar-site-direct"			# Site Direct (no havp and no filtrage) for user BL
47
 
47
 
48
# Sauvegarde des SET des utilisateurs connectés si ils existent
48
# Sauvegarde des SET des utilisateurs connectés si ils existent
49
# Saving SET of connected users if it exists
49
# Saving SET of connected users if it exists
50
ipset list not_filtered 1>/dev/null 2>&1
50
ipset list not_filtered 1>/dev/null 2>&1
51
if [ $? -eq 0 ];
51
if [ $? -eq 0 ];
52
then
52
then
53
	ipset save not_filtered > $TMP_users_set_save
53
	ipset save not_filtered > $TMP_users_set_save
54
	ipset save havp >> $TMP_users_set_save
54
	ipset save havp >> $TMP_users_set_save
55
	ipset save havp_bl >> $TMP_users_set_save
55
	ipset save havp_bl >> $TMP_users_set_save
56
	ipset save havp_wl >> $TMP_users_set_save
56
	ipset save havp_wl >> $TMP_users_set_save
57
	ipset save proto_0 >> $TMP_users_set_save
57
	ipset save proto_0 >> $TMP_users_set_save
58
	ipset save proto_1 >> $TMP_users_set_save
58
	ipset save proto_1 >> $TMP_users_set_save
59
	ipset save proto_2 >> $TMP_users_set_save
59
	ipset save proto_2 >> $TMP_users_set_save
60
	ipset save proto_3 >> $TMP_users_set_save
60
	ipset save proto_3 >> $TMP_users_set_save
61
fi
61
fi
62
 
62
 
-
 
63
# Chargement de la sonde NetFlow (module noyau ipt_NETFLOW)
63
# loading of NetFlow probe (ipt_NETFLOW kernel module)
64
# loading of NetFlow probe (ipt_NETFLOW kernel module)
64
modprobe ipt_NETFLOW destination=127.0.0.1:2055
65
modprobe ipt_NETFLOW destination=127.0.0.1:2055
65
 
66
 
66
# Effacement des règles existantes
67
# Effacement des règles existantes
67
# Flush all existing rules
68
# Flush all existing rules
68
$IPTABLES -F
69
$IPTABLES -F
69
$IPTABLES -t nat -F
70
$IPTABLES -t nat -F
70
$IPTABLES -t mangle -F
71
$IPTABLES -t mangle -F
71
$IPTABLES -F INPUT
72
$IPTABLES -F INPUT
72
$IPTABLES -F FORWARD
73
$IPTABLES -F FORWARD
73
$IPTABLES -F OUTPUT
74
$IPTABLES -F OUTPUT
74
 
75
 
75
# Suppression des chaines utilisateurs sur les tables filter et nat
76
# Suppression des chaines utilisateurs sur les tables filter et nat
76
# Flush non default rules on filter and nat tables
77
# Flush non default rules on filter and nat tables
77
$IPTABLES -X
78
$IPTABLES -X
78
$IPTABLES -t nat -X
79
$IPTABLES -t nat -X
79
 
80
 
80
# Stratégies par défaut
81
# Stratégies par défaut
81
# Default policies
82
# Default policies
82
$IPTABLES -P INPUT DROP
83
$IPTABLES -P INPUT DROP
83
$IPTABLES -P FORWARD DROP
84
$IPTABLES -P FORWARD DROP
84
$IPTABLES -P OUTPUT DROP
85
$IPTABLES -P OUTPUT DROP
85
$IPTABLES -t nat -P PREROUTING ACCEPT
86
$IPTABLES -t nat -P PREROUTING ACCEPT
86
$IPTABLES -t nat -P POSTROUTING ACCEPT
87
$IPTABLES -t nat -P POSTROUTING ACCEPT
87
$IPTABLES -t nat -P OUTPUT ACCEPT
88
$IPTABLES -t nat -P OUTPUT ACCEPT
88
 
89
 
89
 
90
 
90
#############################
91
#############################
91
#          IPSET            #
92
#          IPSET            #
92
#############################
93
#############################
93
 
94
 
94
# destruction de tous les SET
95
# destruction de tous les SET
95
# destroy all SET
96
# destroy all SET
96
ipset flush
97
ipset flush
97
ipset destroy
98
ipset destroy
98
 
99
 
99
###### BL set  ###########
100
###### BL set  ###########
100
# Calcul de la taille / Compute the length
101
# Calcul de la taille / Compute the length
101
bl_set_length=$(wc -l $BL_IP_CAT/* | awk '{print $1}' | tail -n 1)
102
bl_set_length=$(wc -l $BL_IP_CAT/* | awk '{print $1}' | tail -n 1)
102
# Chargement / loading
103
# Chargement / loading
103
echo "create bl_ip_blocked hash:net family inet hashsize 1024 maxelem $bl_set_length" > $TMP_set_save
104
echo "create bl_ip_blocked hash:net family inet hashsize 1024 maxelem $bl_set_length" > $TMP_set_save
104
for category in `ls -1 $BL_IP_CAT | cut -d '@' -f1`
105
for category in `ls -1 $BL_IP_CAT | cut -d '@' -f1`
105
do
106
do
106
	cat $BL_IP_CAT/$category >> $TMP_set_save
107
	cat $BL_IP_CAT/$category >> $TMP_set_save
107
done
108
done
108
ipset -! restore < $TMP_set_save
109
ipset -! restore < $TMP_set_save
109
rm -f $TMP_set_save
110
rm -f $TMP_set_save
110
# Suppression des ip réhabilitées / Removing of rehabilitated ip
111
# Suppression des ip réhabilitées / Removing of rehabilitated ip
111
for ip in $(cat $IP_REHABILITEES)
112
for ip in $(cat $IP_REHABILITEES)
112
do
113
do
113
	ipset del bl_ip_blocked $ip
114
	ipset del bl_ip_blocked $ip
114
done
115
done
115
 
116
 
116
# rajout exception havp_bl --> Site en direct pour les Utilisateurs filtrés
117
# rajout exception havp_bl --> Site en direct pour les Utilisateurs filtrés
117
ipset create site_direct hash:net hashsize 1024
118
ipset create site_direct hash:net hashsize 1024
118
for site in $(cat $SITE_DIRECT)
119
for site in $(cat $SITE_DIRECT)
119
do
120
do
120
        ipset add site_direct $site
121
        ipset add site_direct $site
121
done
122
done
122
 
123
 
123
###### WL set  ###########
124
###### WL set  ###########
124
# taille fixe, car peupler par dnsmasq / fixe length due to dnsmasq dynamic loading
125
# taille fixe, car peupler par dnsmasq / fixe length due to dnsmasq dynamic loading
125
wl_set_length=65536
126
wl_set_length=65536
126
# Chargement Loading
127
# Chargement Loading
127
echo "create wl_ip_allowed hash:net family inet hashsize 1024 maxelem $wl_set_length" > $TMP_set_save
128
echo "create wl_ip_allowed hash:net family inet hashsize 1024 maxelem $wl_set_length" > $TMP_set_save
128
#get ip-wl files from ACC
129
#get ip-wl files from ACC
129
for category in `ls -1 $WL_IP_CAT |cut -d '@' -f1`
130
for category in `ls -1 $WL_IP_CAT |cut -d '@' -f1`
130
do
131
do
131
	cat $WL_IP_CAT/$category >> $TMP_set_save
132
	cat $WL_IP_CAT/$category >> $TMP_set_save
132
done
133
done
133
ipset -! restore < $TMP_set_save
134
ipset -! restore < $TMP_set_save
134
rm -f $TMP_set_save
135
rm -f $TMP_set_save
135
 
136
 
136
# Restoration des SET des utilisateurs connectés si ils existent sinon création des SET
137
# Restoration des SET des utilisateurs connectés si ils existent sinon création des SET
137
# Restoring the connected users SETs if available, otherwise creating SETs
138
# Restoring the connected users SETs if available, otherwise creating SETs
138
if [ -e $TMP_users_set_save ];
139
if [ -e $TMP_users_set_save ];
139
then
140
then
140
	ipset -! restore < $TMP_users_set_save
141
	ipset -! restore < $TMP_users_set_save
141
	rm -f $TMP_users_set_save
142
	rm -f $TMP_users_set_save
142
else
143
else
143
	ipset create not_filtered hash:ip hashsize 1024
144
	ipset create not_filtered hash:ip hashsize 1024
144
	ipset create havp hash:ip hashsize 1024
145
	ipset create havp hash:ip hashsize 1024
145
	ipset create havp_bl hash:ip hashsize 1024
146
	ipset create havp_bl hash:ip hashsize 1024
146
	ipset create havp_wl hash:ip hashsize 1024
147
	ipset create havp_wl hash:ip hashsize 1024
147
	#pour les filtrages de protocole par utilisateur
148
	# pour les filtrages de protocole par utilisateur / For network protocols filtering by user
148
	ipset create proto_0 hash:ip hashsize 1024
149
	ipset create proto_0 hash:ip hashsize 1024
149
	ipset create proto_1 hash:ip hashsize 1024
150
	ipset create proto_1 hash:ip hashsize 1024
150
	ipset create proto_2 hash:ip hashsize 1024
151
	ipset create proto_2 hash:ip hashsize 1024
151
	ipset create proto_3 hash:ip hashsize 1024
152
	ipset create proto_3 hash:ip hashsize 1024
152
fi
153
fi
153
 
154
 
154
#############################
155
#############################
155
#       PREROUTING          #
156
#       PREROUTING          #
156
#############################
157
#############################
157
 
158
 
158
# Marquage des paquets qui tentent d'accéder directement à un serveur sans authentification en mode proxy pour pouvoir les rejeter en INPUT
-
 
159
# Mark packets that attempt to directly access a server without authentication with proxy client to reject them in INPUT rules
-
 
160
#$IPTABLES -A PREROUTING -t mangle -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp -m tcp --dport 80 -m string --string 'GET http' --algo bm --from 50 --to 70 -j MARK --set-mark 10
-
 
161
 
-
 
162
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au 8080 (E2Guardian) pour pouvoir les rejeter en INPUT
159
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au 8080 (E2Guardian) pour pouvoir les rejeter en INPUT
163
# Mark (and log) the direct attempts to TCP port 8090 (e2guardian) in order to REJECT them in INPUT rules
160
# Mark (and log) the direct attempts to TCP port 8090 (e2guardian) in order to REJECT them in INPUT rules
164
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8080 -j NFLOG --nflog-group 1 --nflog-prefix "RULE direct-proxy -- DENY "
161
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8080 -j NFLOG --nflog-group 1 --nflog-prefix "RULE direct-proxy -- DENY "
165
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8080 -j MARK --set-mark 1
162
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8080 -j MARK --set-mark 1
166
 
163
 
167
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8090 (tinyproxy) pour pouvoir les rejeter en INPUT
164
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8090 (tinyproxy) pour pouvoir les rejeter en INPUT
168
# Mark (and log) the direct attempts to TCP port 8090 (tinyproxy) in order to REJECT them in INPUT rules
165
# Mark (and log) the direct attempts to TCP port 8090 (tinyproxy) in order to REJECT them in INPUT rules
169
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8090 -j NFLOG --nflog-group 1 --nflog-prefix "RULE direct-proxy -- DENY "
166
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8090 -j NFLOG --nflog-group 1 --nflog-prefix "RULE direct-proxy -- DENY "
170
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8090 -j MARK --set-mark 2
167
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8090 -j MARK --set-mark 2
171
 
168
 
172
# Marquage des paquets qui tentent d'accéder directement au port 54 (DNS-blacklist) pour pouvoir les rejeter en INPUT
169
# Marquage des paquets qui tentent d'accéder directement au port 54 (DNS-blacklist) pour pouvoir les rejeter en INPUT
173
# Mark the direct attempts to port 54 (DNS-blacklist) in order to REJECT them in INPUT rules
170
# Mark the direct attempts to port 54 (DNS-blacklist) in order to REJECT them in INPUT rules
174
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 54 -j MARK --set-mark 3
171
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 54 -j MARK --set-mark 3
175
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 54 -j MARK --set-mark 3
172
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 54 -j MARK --set-mark 3
176
 
173
 
177
# Marquage des paquets qui tentent d'accéder directement au port 55 (DNS-Whitelist) pour pouvoir les rejeter en INPUT
174
# Marquage des paquets qui tentent d'accéder directement au port 55 (DNS-Whitelist) pour pouvoir les rejeter en INPUT
178
# Mark the direct attempts to port 55 (DNS-whitelist) in order to REJECT them in INPUT rules
175
# Mark the direct attempts to port 55 (DNS-whitelist) in order to REJECT them in INPUT rules
179
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 55 -j MARK --set-mark 4
176
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 55 -j MARK --set-mark 4
180
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 55 -j MARK --set-mark 4
177
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 55 -j MARK --set-mark 4
181
 
178
 
182
# Marquage des paquets qui tentent d'accéder directement au port 56 (DNS-Blackhole) pour pouvoir les rejeter en INPUT
179
# Marquage des paquets qui tentent d'accéder directement au port 56 (DNS-Blackhole) pour pouvoir les rejeter en INPUT
183
# Mark the direct attempts to port 56 (DNS-blackhole) in order to REJECT them in INPUT rules
180
# Mark the direct attempts to port 56 (DNS-blackhole) in order to REJECT them in INPUT rules
184
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 56 -j MARK --set-mark 5
181
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 56 -j MARK --set-mark 5
185
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 56 -j MARK --set-mark 5
182
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p udp --dport 56 -j MARK --set-mark 5
186
 
183
 
187
# redirection DNS des usagers 'havp_bl' vers le port local 54 (en évitant le contournement)
184
# redirection DNS des usagers 'havp_bl' vers le port local 54 (en évitant le contournement)
188
# redirect DNS of 'havp_bl' users to the local port 54 (avoiding bypass)
185
# redirect DNS of 'havp_bl' users to the local port 54 (avoiding bypass)
189
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -p udp --dport domain -j REDIRECT --to-port 54
186
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -p udp --dport domain -j REDIRECT --to-port 54
190
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -p tcp --dport domain -j REDIRECT --to-port 54
187
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -p tcp --dport domain -j REDIRECT --to-port 54
191
 
188
 
192
# redirection DNS des usagers 'havp_wl' vers le port local 55 (en évitant le contournement)
189
# redirection DNS des usagers 'havp_wl' vers le port local 55 (en évitant le contournement)
193
# redirect DNS of 'havp_wl' users to the local port 55 (avoiding bypass)
190
# redirect DNS of 'havp_wl' users to the local port 55 (avoiding bypass)
194
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -p udp --dport domain -j REDIRECT --to-port 55
191
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -p udp --dport domain -j REDIRECT --to-port 55
195
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -p tcp --dport domain -j REDIRECT --to-port 55
192
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -p tcp --dport domain -j REDIRECT --to-port 55
196
 
193
 
197
# redirection des requêtes DNS de contournement vers le port local 53
194
# redirection des requêtes DNS de contournement vers le port local 53
198
# redirect of bypass DNS requests to the local port 53
195
# redirect of bypass DNS requests to the local port 53
199
$IPTABLES -A PREROUTING -t nat -i $TUNIF ! -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 53
196
$IPTABLES -A PREROUTING -t nat -i $TUNIF ! -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 53
200
$IPTABLES -A PREROUTING -t nat -i $TUNIF ! -d $PRIVATE_IP -p tcp --dport domain -j REDIRECT --to-port 53
197
$IPTABLES -A PREROUTING -t nat -i $TUNIF ! -d $PRIVATE_IP -p tcp --dport domain -j REDIRECT --to-port 53
201
 
198
 
202
# Journalisation HTTP_Internet des usagers 'havp_bl' (paquets SYN uniquement). Les autres protocoles sont journalisés en FORWARD par netflow.
199
# Journalisation HTTP_Internet des usagers 'havp_bl' (paquets SYN uniquement). Les autres protocoles sont journalisés en FORWARD par netflow.
203
# Log Internet HTTP of 'havp_bl' users" (only syn packets). Other protocols are logged in FORWARD by netflow
200
# Log Internet HTTP of 'havp_bl' users" (only syn packets). Other protocols are logged in FORWARD by netflow
204
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src ! -d $PRIVATE_IP -p tcp --dport http -m conntrack --ctstate NEW -j NFLOG --nflog-group 1 --nflog-prefix "RULE F_http -- ACCEPT "
201
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src ! -d $PRIVATE_IP -p tcp --dport http -m conntrack --ctstate NEW -j NFLOG --nflog-group 1 --nflog-prefix "RULE F_http -- ACCEPT "
205
 
202
 
206
# Redirection HTTP des usagers 'havp_bl' cherchant à joindre les IP de la blacklist vers ALCASAR (page 'accès interdit')
203
# Redirection HTTP des usagers 'havp_bl' cherchant à joindre les IP de la blacklist vers ALCASAR (page 'accès interdit')
207
# Redirect HTTP of 'havp_bl' users who want blacklist IP to ALCASAR ('access denied' page)
204
# Redirect HTTP of 'havp_bl' users who want blacklist IP to ALCASAR ('access denied' page)
208
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p tcp --dport http -j REDIRECT --to-port 80
205
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p tcp --dport http -j REDIRECT --to-port 80
209
 
206
 
210
# Redirection HTTP des usagers 'havp_wl' cherchant à joindre les IP qui ne sont pas dans la WL vers ALCASAR (page 'accès interdit')
207
# Redirection HTTP des usagers 'havp_wl' cherchant à joindre les IP qui ne sont pas dans la WL vers ALCASAR (page 'accès interdit')
211
# Redirect HTTP of 'havp_wl' users who want IP not in the WL to ALCASAR ('access denied' page)
208
# Redirect HTTP of 'havp_wl' users who want IP not in the WL to ALCASAR ('access denied' page)
212
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -m set ! --match-set wl_ip_allowed dst -p tcp --dport http -j REDIRECT --to-port 80
209
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src -m set ! --match-set wl_ip_allowed dst -p tcp --dport http -j REDIRECT --to-port 80
213
 
210
 
214
# Redirection des requêtes HTTP sortantes des usagers 'havp_bl' vers E2Guardian
211
# Redirection des requêtes HTTP sortantes des usagers 'havp_bl' vers E2Guardian
215
# Redirect outbound HTTP requests of "BL" users to E2Guardian (transparent proxy)
212
# Redirect outbound HTTP requests of "BL" users to E2Guardian (transparent proxy)
216
# $IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8080
-
 
217
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -m set ! --match-set site_direct dst ! -d $PRIVATE_IP  -p tcp --dport http -j REDIRECT --to-port 8080
213
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl src -m set ! --match-set site_direct dst ! -d $PRIVATE_IP  -p tcp --dport http -j REDIRECT --to-port 8080
-
 
214
 
218
# Redirection des requêtes HTTP sortantes des usager 'havp_wl' et 'havp' vers Tinyproxy
215
# Redirection des requêtes HTTP sortantes des usager 'havp_wl' et 'havp' vers Tinyproxy
219
# Redirect outbound HTTP requests for "WL-antivirus" users to Tinyproxy
216
# Redirect outbound HTTP requests for "WL-antivirus" users to Tinyproxy
220
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8090
217
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8090
221
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8090
218
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8090
222
 
219
 
223
# Redirection des requêtes NTP vers le serveur NTP local
220
# Redirection des requêtes NTP vers le serveur NTP local
224
# Redirect NTP request in local NTP server
221
# Redirect NTP request in local NTP server
225
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p udp --dport ntp -j REDIRECT --to-port 123
222
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p udp --dport ntp -j REDIRECT --to-port 123
226
 
223
 
227
#############################
224
#############################
228
#         INPUT             #
225
#         INPUT             #
229
#############################
226
#############################
230
 
227
 
231
# Tout passe sur loopback
228
# Tout passe sur loopback
232
# accept all on loopback
229
# accept all on loopback
233
$IPTABLES -A INPUT -i lo -j ACCEPT
230
$IPTABLES -A INPUT -i lo -j ACCEPT
234
$IPTABLES -A OUTPUT -o lo -j ACCEPT
231
$IPTABLES -A OUTPUT -o lo -j ACCEPT
235
 
232
 
236
# Rejet des demandes de connexions non conformes (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
233
# Rejet des demandes de connexions non conformes (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
237
# Drop non standard connexions (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
234
# Drop non standard connexions (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
238
$IPTABLES -A INPUT -p tcp --tcp-flags FIN,URG,PSH FIN,URG,PSH -j DROP
235
$IPTABLES -A INPUT -p tcp --tcp-flags FIN,URG,PSH FIN,URG,PSH -j DROP
239
$IPTABLES -A INPUT -p tcp --tcp-flags ALL ALL -j DROP
236
$IPTABLES -A INPUT -p tcp --tcp-flags ALL ALL -j DROP
240
$IPTABLES -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
237
$IPTABLES -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
241
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
238
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
242
$IPTABLES -A INPUT -p tcp -m tcp ! --syn -m conntrack --ctstate NEW -j DROP
239
$IPTABLES -A INPUT -p tcp -m tcp ! --syn -m conntrack --ctstate NEW -j DROP
243
 
240
 
244
# Si configéré, on autorise les réponses DHCP
241
# Si configéré, on autorise les réponses DHCP
245
# Allow DHCP answers if configured
242
# Allow DHCP answers if configured
246
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
243
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
247
if [[ "$public_ip_mask" == "dhcp" ]]
244
if [[ "$public_ip_mask" == "dhcp" ]]
248
then
245
then
249
	$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport 68 -j ACCEPT
246
	$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport 68 -j ACCEPT
250
	$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport 68 -j ACCEPT
247
	$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport 68 -j ACCEPT
251
fi
248
fi
252
# On rejette les trame en broadcast et en multicast sur EXTIF (évite leur journalisation)
249
# On rejette les trame en broadcast et en multicast sur EXTIF (évite leur journalisation)
253
# Drop broadcast & multicast on EXTIF to avoid log
250
# Drop broadcast & multicast on EXTIF to avoid log
254
$IPTABLES -A INPUT -m addrtype --dst-type BROADCAST,MULTICAST -j DROP
251
$IPTABLES -A INPUT -m addrtype --dst-type BROADCAST,MULTICAST -j DROP
255
 
252
 
256
# On autorise les retours de connexions légitimes par INPUT
253
# On autorise les retours de connexions légitimes par INPUT
257
# Conntrack on INPUT
254
# Conntrack on INPUT
258
$IPTABLES -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
255
$IPTABLES -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
259
 
256
 
260
# On interdit les connexions directes au port utilisé par E2Guardian (8080). Les packets concernés ont été marqués et loggués dans la table mangle (PREROUTING)
257
# On interdit les connexions directes au port utilisé par E2Guardian (8080). Les packets concernés ont été marqués et loggués dans la table mangle (PREROUTING)
261
# Deny direct connections on E2Guardian port (8080). The concerned paquets have been marked and logged in mangle table (PREROUTING)
258
# Deny direct connections on E2Guardian port (8080). The concerned paquets have been marked and logged in mangle table (PREROUTING)
262
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8080 -m mark --mark 1 -j REJECT --reject-with tcp-reset
259
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8080 -m mark --mark 1 -j REJECT --reject-with tcp-reset
263
 
260
 
264
# Autorisation des connexions légitimes à E2Guardian
261
# Autorisation des connexions légitimes à E2Guardian
265
# Allow connections for E2Guardian
262
# Allow connections for E2Guardian
266
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8080 -m conntrack --ctstate NEW --syn -j ACCEPT
263
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8080 -m conntrack --ctstate NEW --syn -j ACCEPT
267
 
264
 
268
# On interdit les connexions directes au port utilisé par tinyproxy (8090). Les packets concernés ont été marqués et loggués dans la table mangle (PREROUTING)
265
# On interdit les connexions directes au port utilisé par tinyproxy (8090). Les packets concernés ont été marqués et loggués dans la table mangle (PREROUTING)
269
# Deny direct connections on tinyproxy port (8090). The concerned paquets have been marked in mangle table (PREROUTING)
266
# Deny direct connections on tinyproxy port (8090). The concerned paquets have been marked in mangle table (PREROUTING)
270
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8090 -m mark --mark 2 -j REJECT --reject-with tcp-reset
267
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8090 -m mark --mark 2 -j REJECT --reject-with tcp-reset
271
 
268
 
272
# Autorisation des connexions légitimes vers tinyproxy
269
# Autorisation des connexions légitimes vers tinyproxy
273
# Allow connections to tinyproxy
270
# Allow connections to tinyproxy
274
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8090 -m conntrack --ctstate NEW --syn -j ACCEPT
271
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8090 -m conntrack --ctstate NEW --syn -j ACCEPT
275
 
272
 
276
# On interdit les connexions directes au port 54 (DNS-blacklist). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
273
# On interdit les connexions directes au port 54 (DNS-blacklist). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
277
# Deny direct connections on port 54 (DNS-blacklist). The concerned paquets are marked in mangle table (PREROUTING)
274
# Deny direct connections on port 54 (DNS-blacklist). The concerned paquets are marked in mangle table (PREROUTING)
278
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 54 -m mark --mark 3 -j REJECT --reject-with icmp-port-unreachable
275
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 54 -m mark --mark 3 -j REJECT --reject-with icmp-port-unreachable
279
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 54 -m mark --mark 3 -j REJECT --reject-with tcp-reset
276
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 54 -m mark --mark 3 -j REJECT --reject-with tcp-reset
280
 
277
 
281
# On interdit les connexions directes au port 55 (DNS-whitelist). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
278
# On interdit les connexions directes au port 55 (DNS-whitelist). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
282
# Deny direct connections on port 55 (DNS-whitelist). The concerned paquets are marked in mangle table (PREROUTING)
279
# Deny direct connections on port 55 (DNS-whitelist). The concerned paquets are marked in mangle table (PREROUTING)
283
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 55 -m mark --mark 4 -j REJECT --reject-with icmp-port-unreachable
280
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 55 -m mark --mark 4 -j REJECT --reject-with icmp-port-unreachable
284
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 55 -m mark --mark 3 -j REJECT --reject-with tcp-reset
281
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 55 -m mark --mark 3 -j REJECT --reject-with tcp-reset
285
 
282
 
286
# On interdit les connexions directes au port 56 (DNS-Blackhole). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
283
# On interdit les connexions directes au port 56 (DNS-Blackhole). Les packets concernés ont été marqués dans la table mangle (PREROUTING)
287
# Deny direct connections on port 56 (DNS-blackhole). The concerned paquets are marked in mangle table (PREROUTING)
284
# Deny direct connections on port 56 (DNS-blackhole). The concerned paquets are marked in mangle table (PREROUTING)
288
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 56 -m mark --mark 5 -j REJECT --reject-with icmp-port-unreachable
285
$IPTABLES -A INPUT -i $TUNIF -p udp --dport 56 -m mark --mark 5 -j REJECT --reject-with icmp-port-unreachable
289
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 56 -m mark --mark 3 -j REJECT --reject-with tcp-reset
286
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 56 -m mark --mark 3 -j REJECT --reject-with tcp-reset
290
 
287
 
291
# autorisation des connexion légitime à DNSMASQ (avec blacklist)
288
# autorisation des connexion légitime à DNSMASQ (avec blacklist)
292
# Allow connections for DNSMASQ (with blacklist)
289
# Allow connections for DNSMASQ (with blacklist)
293
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 54 -j ACCEPT
290
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 54 -j ACCEPT
294
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 54 -j ACCEPT
291
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 54 -j ACCEPT
295
 
292
 
296
# autorisation des connexion légitime à DNSMASQ (avec whitelist)
293
# autorisation des connexion légitime à DNSMASQ (avec whitelist)
297
# Allow connections for DNSMASQ (with whitelist)
294
# Allow connections for DNSMASQ (with whitelist)
298
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 55 -j ACCEPT
295
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 55 -j ACCEPT
299
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 55 -j ACCEPT
296
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 55 -j ACCEPT
300
 
297
 
301
# autorisation des connexion légitime à DNSMASQ (mode blackhole)
298
# autorisation des connexion légitime à DNSMASQ (mode blackhole)
302
# Allow connections for DNSMASQ (blackhole mode)
299
# Allow connections for DNSMASQ (blackhole mode)
303
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 56 -j ACCEPT
300
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 56 -j ACCEPT
304
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 56 -j ACCEPT
301
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 56 -j ACCEPT
305
 
302
 
306
# Accès direct aux services internes
303
# Accès direct aux services internes
307
# Internal services access
304
# Internal services access
308
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport domain -j ACCEPT	# DNS
305
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport domain -j ACCEPT	# DNS
309
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport domain -j ACCEPT	# DNS
306
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport domain -j ACCEPT	# DNS
310
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 8 -j ACCEPT	# Réponse ping # ping responce
307
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 8 -j ACCEPT	# Réponse ping # ping responce
311
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 0 -j ACCEPT	# Requête  ping # ping request
308
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 0 -j ACCEPT	# Requête  ping # ping request
312
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport https -j ACCEPT	# Pages d'authentification et MCC # authentication pages and MCC
309
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport https -j ACCEPT	# Pages d'authentification et MCC # authentication pages and MCC
313
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport http -j ACCEPT	# Page d'avertissement filtrage # Filtering warning pages
310
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport http -j ACCEPT	# Page d'avertissement filtrage # Filtering warning pages
314
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 3990:3991 -j ACCEPT	# Requêtes de deconnexion usagers # Users logout requests
311
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 3990:3991 -j ACCEPT	# Requêtes de deconnexion usagers # Users logout requests
315
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport ntp -j ACCEPT	# Serveur local de temps # local time server
312
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport ntp -j ACCEPT	# Serveur local de temps # local time server
316
 
313
 
-
 
314
# Accès au serveur SSHD si activé
317
# SSHD rules if activate
315
# SSHD server access if enabled
318
if [ $SSH = on ]
316
if [ $SSH = on ]
319
	then
317
	then
320
	$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -m conntrack --ctstate NEW -j NFLOG --nflog-group 2 --nflog-prefix "RULE ssh-from-LAN -- ACCEPT"
318
	$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -m conntrack --ctstate NEW -j NFLOG --nflog-group 2 --nflog-prefix "RULE ssh-from-LAN -- ACCEPT"
321
	$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -j ACCEPT
319
	$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -j ACCEPT
322
	$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m conntrack --ctstate NEW --syn -j NFLOG --nflog-group 2 --nflog-prefix "RULE ssh-from-WAN -- ACCEPT"
320
	$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m conntrack --ctstate NEW --syn -j NFLOG --nflog-group 2 --nflog-prefix "RULE ssh-from-WAN -- ACCEPT"
323
	$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m conntrack --ctstate NEW -j ACCEPT
321
	$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m conntrack --ctstate NEW -j ACCEPT
324
fi
322
fi
325
 
323
 
326
# Insertion de règles locales
324
# Insertion de règles locales
327
# Here, we add local rules (i.e. VPN from Internet)
325
# Here, we add local rules (i.e. VPN from Internet)
328
if [ -f /usr/local/etc/alcasar-iptables-local.sh ]; then
326
if [ -f /usr/local/etc/alcasar-iptables-local.sh ]; then
329
	. /usr/local/etc/alcasar-iptables-local.sh
327
	. /usr/local/etc/alcasar-iptables-local.sh
330
fi
328
fi
331
 
329
 
332
# Journalisation et rejet des connexions (autres que celles autorisées) effectuées depuis le LAN
330
# Journalisation et rejet des connexions (autres que celles autorisées) effectuées depuis le LAN
333
# Deny and log on INPUT from the LAN
331
# Deny and log on INPUT from the LAN
334
$IPTABLES -A INPUT -i $TUNIF -m conntrack --ctstate NEW -j NFLOG --nflog-group 1 --nflog-prefix "RULE rej-int -- REJECT "
332
$IPTABLES -A INPUT -i $TUNIF -m conntrack --ctstate NEW -j NFLOG --nflog-group 1 --nflog-prefix "RULE rej-int -- REJECT "
335
$IPTABLES -A INPUT -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
333
$IPTABLES -A INPUT -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
336
$IPTABLES -A INPUT -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
334
$IPTABLES -A INPUT -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
337
 
335
 
338
# Interdiction d'accès à INTIF (n'est utile que lorsque chilli est arrêté).
336
# Interdiction d'accès à INTIF (n'est utile que lorsque chilli est arrêté).
339
# Reject INTIF access (only when chilli is down)
337
# Reject INTIF access (only when chilli is down)
340
$IPTABLES -A INPUT -i $INTIF -j NFLOG --nflog-group 1 --nflog-prefix "RULE Protect1 -- REJECT "
338
$IPTABLES -A INPUT -i $INTIF -j NFLOG --nflog-group 1 --nflog-prefix "RULE Protect1 -- REJECT "
341
$IPTABLES -A INPUT -i $INTIF -j REJECT
339
$IPTABLES -A INPUT -i $INTIF -j REJECT
342
 
340
 
343
# Journalisation et rejet des connexions initiées depuis le réseau extérieur (test des effets du paramètre --limit en cours)
341
# Journalisation et rejet des connexions initiées depuis le réseau extérieur (test des effets du paramètre --limit en cours)
344
# On EXTIF, the access attempts are log in channel 2 (we should test --limit option to avoid deny of service)
342
# On EXTIF, the access attempts are log in channel 2 (we should test --limit option to avoid deny of service)
345
$IPTABLES -A INPUT -i $EXTIF -m conntrack --ctstate NEW -j NFLOG --nflog-group 3 --nflog-threshold 10 --nflog-prefix "RULE rej-ext -- DROP"
343
$IPTABLES -A INPUT -i $EXTIF -m conntrack --ctstate NEW -j NFLOG --nflog-group 3 --nflog-threshold 10 --nflog-prefix "RULE rej-ext -- DROP"
346
 
344
 
347
#############################
345
#############################
348
#        FORWARD            #
346
#        FORWARD            #
349
#############################
347
#############################
350
 
348
 
351
# Blocage des IPs du SET bl_ip_blocked pour le SET havp_bl
349
# Blocage des IPs du SET bl_ip_blocked pour le SET havp_bl
352
# Deny IPs of the SET bl_ip_blocked for the set havp_bl
350
# Deny IPs of the SET bl_ip_blocked for the set havp_bl
353
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p icmp -j REJECT --reject-with icmp-host-prohibited
351
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p icmp -j REJECT --reject-with icmp-host-prohibited
354
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p udp -j REJECT --reject-with icmp-host-prohibited
352
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p udp -j REJECT --reject-with icmp-host-prohibited
355
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p tcp -j REJECT --reject-with tcp-reset
353
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl src -m set --match-set bl_ip_blocked dst -p tcp -j REJECT --reject-with tcp-reset
356
 
354
 
357
# Active le suivi de session
355
# Active le suivi de session
358
# Allow Conntrack
356
# Allow Conntrack
359
$IPTABLES -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
357
$IPTABLES -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
360
 
358
 
361
# Compute uamallowed IP (IP address of equipments connected between ALCASAR and Internet (DMZ, own servers, ...)
359
# Compute uamallowed IP (ie : IP address of equipments connected between ALCASAR and router like DMZ, own servers, etc.)
362
nb_uamallowed=`wc -l /usr/local/etc/alcasar-uamallowed | cut -d" "  -f1`
360
nb_uamallowed=`wc -l /usr/local/etc/alcasar-uamallowed | cut -d" "  -f1`
363
if [ $nb_uamallowed != "0" ]
361
if [ $nb_uamallowed != "0" ]
364
then
362
then
365
	while read ip_allowed_line
363
	while read ip_allowed_line
366
	do
364
	do
367
		ip_allowed=`echo $ip_allowed_line|cut -d"\"" -f2`
365
		ip_allowed=`echo $ip_allowed_line|cut -d"\"" -f2`
368
		$IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m conntrack --ctstate NEW -j NETFLOW
366
		$IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m conntrack --ctstate NEW -j NETFLOW
369
		$IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m conntrack --ctstate NEW -j ACCEPT
367
		$IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m conntrack --ctstate NEW -j ACCEPT
370
	done < /usr/local/etc/alcasar-uamallowed
368
	done < /usr/local/etc/alcasar-uamallowed
371
fi
369
fi
372
 
370
 
373
# filtrage protocole par utilisateur (profile 1 : http, https)
371
# filtrage protocole par utilisateur (profile 1 : http, https)
374
# protocols filtering for users (profil 1 : http, https)
372
# protocols filtering for users (profil 1 : http, https)
375
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_1 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports http,https -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
373
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_1 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports http,https -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
376
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_1 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports http,https -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
374
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_1 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports http,https -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
377
 
375
 
378
# filtrage protocole par utilisateur (profile 2 : http https pop3 pop3s imap imaps ftp sftp ssh)
376
# filtrage protocole par utilisateur (profile 2 : http https pop3 pop3s imap imaps ftp sftp ssh)
379
# protocols filtering for users (profil 2 : http https pop3 pop3s imap imaps ftp sftp ssh)
377
# protocols filtering for users (profil 2 : http https pop3 pop3s imap imaps ftp sftp ssh)
380
 
378
 
381
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_2 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports http,https,pop3,pop3s,imap,imaps,ftp,ftp-data,sftp,ssh -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
379
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_2 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports http,https,pop3,pop3s,imap,imaps,ftp,ftp-data,sftp,ssh -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
382
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_2 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports http,https,pop3,pop3s,imap,imaps,ssh -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
380
	$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_2 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports http,https,pop3,pop3s,imap,imaps,ssh -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
383
 
381
 
384
# filtrage protocole par utilisateur (profile 3 : personnalisable via l'ACC)
382
# filtrage protocole par utilisateur (profile 3 : personnalisable via l'ACC)
385
# protocols filtering for users (profil 3 : customized with ACC)
383
# protocols filtering for users (profil 3 : customized with ACC)
386
#profile 3 personalisables via l'ACC
-
 
387
custom_tcp_protocols_list='';custom_udp_protocols_list=''
384
custom_tcp_protocols_list='';custom_udp_protocols_list=''
388
while read svc_line
385
while read svc_line
389
do
386
do
390
	svc_on=`echo $svc_line|cut -b1`
387
	svc_on=`echo $svc_line|cut -b1`
391
	if [ $svc_on != "#" ]
388
	if [ $svc_on != "#" ]
392
	then	
389
	then	
393
		svc_name=`echo $svc_line|cut -d" " -f1`
390
		svc_name=`echo $svc_line|cut -d" " -f1`
394
		svc_port=`echo $svc_line|cut -d" " -f2`
391
		svc_port=`echo $svc_line|cut -d" " -f2`
395
		if [ $svc_name = "icmp" ]
392
		if [ $svc_name = "icmp" ]
396
		then
393
		then
397
			svc_icmp="on"
394
			svc_icmp="on"
398
		else
395
		else
399
			if [ "$custom_tcp_protocols_list" == "" ]
396
			if [ "$custom_tcp_protocols_list" == "" ]
400
			then
397
			then
401
				custom_tcp_protocols_list=$svc_port
398
				custom_tcp_protocols_list=$svc_port
402
			else
399
			else
403
				custom_tcp_protocols_list=`echo $custom_tcp_protocols_list","$svc_port`
400
				custom_tcp_protocols_list=`echo $custom_tcp_protocols_list","$svc_port`
404
			fi
401
			fi
405
			udp_svc=`egrep "[[:space:]]$svc_port/udp" /etc/services|wc -l`
402
			udp_svc=`egrep "[[:space:]]$svc_port/udp" /etc/services|wc -l`
406
			if [ $udp_svc = "1" ] # udp service exist
403
			if [ $udp_svc = "1" ] # udp service exist
407
			then
404
			then
408
				if [ "$custom_udp_protocols_list" == "" ]
405
				if [ "$custom_udp_protocols_list" == "" ]
409
				then
406
				then
410
					custom_udp_protocols_list=$svc_port
407
					custom_udp_protocols_list=$svc_port
411
				else
408
				else
412
					custom_udp_protocols_list=`echo $custom_udp_protocols_list","$svc_port`
409
					custom_udp_protocols_list=`echo $custom_udp_protocols_list","$svc_port`
413
				fi
410
				fi
414
			fi
411
			fi
415
		fi
412
		fi
416
	fi
413
	fi
417
done < /usr/local/etc/alcasar-services
414
done < /usr/local/etc/alcasar-services
418
	if [ "$custom_tcp_protocols_list" == "" ]
415
	if [ "$custom_tcp_protocols_list" == "" ]
419
	then
416
	then
420
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -j REJECT
417
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -j REJECT
421
	else
418
	else
422
		if [ "$svc_icmp" != "on" ]
419
		if [ "$svc_icmp" != "on" ]
423
		then
420
		then
424
			$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p icmp -j REJECT --reject-with icmp-proto-unreachable
421
			$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p icmp -j REJECT --reject-with icmp-proto-unreachable
425
		fi
422
		fi
426
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports $custom_tcp_protocols_list -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
423
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p tcp -m multiport ! --dports $custom_tcp_protocols_list -m conntrack --ctstate NEW -j REJECT --reject-with tcp-reset
427
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports $custom_udp_protocols_list -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
424
		$IPTABLES -A FORWARD -i $TUNIF -m set --match-set proto_3 src -s $PRIVATE_NETWORK_MASK -p udp -m multiport ! --dports $custom_udp_protocols_list -m conntrack --ctstate NEW -j REJECT --reject-with icmp-port-unreachable
428
	fi
425
	fi
429
 
426
 
430
# journalisation et autorisation des connections sortant du LAN
427
# journalisation et autorisation des connections sortant du LAN
431
# Allow forward connections with log
428
# Allow forward connections with log
432
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m conntrack --ctstate NEW -j NETFLOW
429
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m conntrack --ctstate NEW -j NETFLOW
433
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m conntrack --ctstate NEW -j ACCEPT
430
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m conntrack --ctstate NEW -j ACCEPT
434
 
431
 
435
#############################
432
#############################
436
#         OUTPUT            #
433
#         OUTPUT            #
437
#############################
434
#############################
438
# On laisse tout sortir à l'exception de la carte externe (cf ci-dessous)
435
# On laisse tout sortir à l'exception de la carte externe (cf ci-dessous)
439
# Everything is allowed apart from outside network interface (see bellow)
436
# Everything is allowed apart from outside network interface (see bellow)
440
$IPTABLES -A OUTPUT ! -o $EXTIF -j ACCEPT
437
$IPTABLES -A OUTPUT ! -o $EXTIF -j ACCEPT
441
 
438
 
442
# Si configuré, on autorise les requêtes DHCP
439
# Si configuré, on autorise les requêtes DHCP
443
# Allow DHCP requests if configured
440
# Allow DHCP requests if configured
444
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
441
public_ip_mask=`grep ^PUBLIC_IP= $CONF_FILE|cut -d"=" -f2`		# ALCASAR WAN IP address
445
if [[ "$public_ip_mask" == "dhcp" ]]
442
if [[ "$public_ip_mask" == "dhcp" ]]
446
then
443
then
447
	$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport 67 -j ACCEPT
444
	$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport 67 -j ACCEPT
448
	$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport 67 -j ACCEPT
445
	$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport 67 -j ACCEPT
449
fi
446
fi
450
 
447
 
451
# On autorise les requêtes DNS vers les serveurs DNS identifiés
448
# On autorise les requêtes DNS vers les serveurs DNS identifiés
452
# Allow DNS requests to identified DNS servers
449
# Allow DNS requests to identified DNS servers
453
$IPTABLES -A OUTPUT -o $EXTIF -d $DNSSERVERS -p udp --dport domain -m conntrack --ctstate NEW -j ACCEPT
450
$IPTABLES -A OUTPUT -o $EXTIF -d $DNSSERVERS -p udp --dport domain -m conntrack --ctstate NEW -j ACCEPT
454
 
451
 
455
# On autorise les requêtes HTTP avec log Netflow (en provenance de E2guardian)
452
# On autorise les requêtes HTTP avec log Netflow (en provenance de E2guardian)
456
# HTTPS requests are allowed with netflow log (from E2guardian)
453
# HTTP requests are allowed with netflow log (from E2guardian)
457
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j NETFLOW
454
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j NETFLOW
458
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j ACCEPT
455
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j ACCEPT
459
 
456
 
460
# On autorise les requêtes HTTPS sortantes
457
# On autorise les requêtes HTTPS sortantes
461
# HTTPS requests are allowed
458
# HTTPS requests are allowed
462
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport https -j ACCEPT
459
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport https -j ACCEPT
463
 
460
 
464
# On autorise les requêtes RSYNC sortantes (maj BL de Toulouse)
461
# On autorise les requêtes RSYNC sortantes (maj BL de Toulouse)
465
# RSYNC requests are allowed (update of Toulouse BL)
462
# RSYNC requests are allowed (update of Toulouse BL)
466
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport rsync -j ACCEPT
463
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport rsync -j ACCEPT
467
 
464
 
468
# On autorise les requêtes FTP
465
# On autorise les requêtes FTP
469
# FTP requests are allowed
466
# FTP requests are allowed
470
modprobe nf_conntrack_ftp
467
modprobe nf_conntrack_ftp
471
$IPTABLES -t raw -A OUTPUT -p tcp --dport ftp -j CT --helper ftp
468
$IPTABLES -t raw -A OUTPUT -p tcp --dport ftp -j CT --helper ftp
472
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport ftp -j ACCEPT
469
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport ftp -j ACCEPT
473
$IPTABLES -A OUTPUT -o $EXTIF -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
470
$IPTABLES -A OUTPUT -o $EXTIF -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
474
 
471
 
475
# On autorise les requêtes NTP
472
# On autorise les requêtes NTP
476
# NTP requests are allowed
473
# NTP requests are allowed
477
$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport ntp -j ACCEPT
474
$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport ntp -j ACCEPT
478
 
475
 
479
# On autorise les requêtes ICMP (ping)
476
# On autorise les requêtes ICMP (ping)
480
# ICMP (ping) requests are allowed
477
# ICMP (ping) requests are allowed
481
$IPTABLES -A OUTPUT -o $EXTIF -p icmp --icmp-type 8 -j ACCEPT
478
$IPTABLES -A OUTPUT -o $EXTIF -p icmp --icmp-type 8 -j ACCEPT
482
 
479
 
483
# On autorise les requêtes LDAP
480
# On autorise les requêtes LDAP
484
# LDAP requests are allowed
481
# LDAP requests are allowed
485
$IPTABLES -A OUTPUT -o $EXTIF -p tcp -m multiport --dports ldap,ldaps -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
482
$IPTABLES -A OUTPUT -o $EXTIF -p tcp -m multiport --dports ldap,ldaps -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
486
$IPTABLES -A OUTPUT -o $EXTIF -p udp -m multiport --dports ldap,ldaps -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
483
$IPTABLES -A OUTPUT -o $EXTIF -p udp -m multiport --dports ldap,ldaps -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
487
 
484
 
488
#############################
485
#############################
489
#       POSTROUTING         #
486
#       POSTROUTING         #
490
#############################
487
#############################
491
# Traduction dynamique d'adresse en sortie
488
# Traduction dynamique d'adresse en sortie
492
# Dynamic NAT on EXTIF
489
# Dynamic NAT on EXTIF
493
$IPTABLES -A POSTROUTING -t nat -o $EXTIF -j MASQUERADE
490
$IPTABLES -A POSTROUTING -t nat -o $EXTIF -j MASQUERADE
494
 
491
 
495
 
492
 
496
#############################
493
#############################
497
#          FAIL2BAN         #
494
#          FAIL2BAN         #
498
#############################
495
#############################
499
# Reload Fail2Ban
496
# Reload Fail2Ban
500
if systemctl -q is-active fail2ban; then
497
if systemctl -q is-active fail2ban; then
501
	/usr/bin/fail2ban-client ping &>/dev/null && /usr/bin/fail2ban-client -q reload
498
	/usr/bin/fail2ban-client ping &>/dev/null && /usr/bin/fail2ban-client -q reload
502
fi
499
fi
503
 
500