Subversion Repositories ALCASAR

Rev

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

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