Subversion Repositories ALCASAR

Rev

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

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