Subversion Repositories ALCASAR

Rev

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

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

Generated by GNU Enscript 1.6.6.
495

Generated by GNU Enscript 1.6.6.
488
 
496
 
489
 
497
 
490
 
498