1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar-iptables.sh 1390 2014-06-17 12:37:37Z richard $
|
2 |
# $Id: alcasar-iptables.sh 1392 2014-06-18 22:23:02Z richard $
|
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/eth1 by coova
|
13 |
# The bootps/dhcp (67) port is always open on tun0/eth1 by coova
|
14 |
conf_file="/usr/local/etc/alcasar.conf"
|
14 |
conf_file="/usr/local/etc/alcasar.conf"
|
15 |
private_ip_mask=`grep PRIVATE_IP= $conf_file|cut -d"=" -f2`
|
15 |
private_ip_mask=`grep ^PRIVATE_IP= $conf_file|cut -d"=" -f2`
|
16 |
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
|
16 |
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
|
17 |
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1` # ALCASAR LAN IP address
|
17 |
PRIVATE_IP=`echo $private_ip_mask | cut -d"/" -f1` # ALCASAR LAN IP address
|
18 |
private_network=`/bin/ipcalc -n $private_ip_mask|cut -d"=" -f2` # LAN IP address (ie.: 192.168.182.0)
|
18 |
private_network=`/bin/ipcalc -n $private_ip_mask|cut -d"=" -f2` # LAN IP address (ie.: 192.168.182.0)
|
19 |
private_prefix=`/bin/ipcalc -p $private_ip_mask|cut -d"=" -f2` # LAN prefix (ie. 24)
|
19 |
private_prefix=`/bin/ipcalc -p $private_ip_mask|cut -d"=" -f2` # LAN prefix (ie. 24)
|
20 |
PRIVATE_NETWORK_MASK=$private_network/$private_prefix # Lan IP address + prefix (192.168.182.0/24)
|
20 |
PRIVATE_NETWORK_MASK=$private_network/$private_prefix # Lan IP address + prefix (192.168.182.0/24)
|
21 |
public_ip_mask=`grep PUBLIC_IP= $conf_file|cut -d"=" -f2` # ALCASAR WAN IP address
|
21 |
public_ip_mask=`grep ^PUBLIC_IP= $conf_file|cut -d"=" -f2` # ALCASAR WAN IP address
|
22 |
PUBLIC_IP=`echo $public_ip_mask | cut -d"/" -f1`
|
22 |
PUBLIC_IP=`echo $public_ip_mask | cut -d"/" -f1`
|
23 |
dns1=`grep DNS1= $conf_file|cut -d"=" -f2` # first public DNS server
|
23 |
dns1=`grep ^DNS1= $conf_file|cut -d"=" -f2` # first public DNS server
|
24 |
dns1=${dns1:=208.67.220.220}
|
24 |
dns1=${dns1:=208.67.220.220}
|
25 |
dns2=`grep DNS2= $conf_file|cut -d"=" -f2` # second public DNS server
|
25 |
dns2=`grep ^DNS2= $conf_file|cut -d"=" -f2` # second public DNS server
|
26 |
dns2=${dns2:=208.67.222.222}
|
26 |
dns2=${dns2:=208.67.222.222}
|
27 |
DNSSERVERS="$dns1,$dns2" # first and second DNS IP servers addresses
|
27 |
DNSSERVERS="$dns1,$dns2" # first and second DNS IP servers addresses
|
28 |
PROTOCOLS_FILTERING=`grep PROTOCOLS_FILTERING= $conf_file|cut -d"=" -f2` # Network protocols filter (on/off)
|
28 |
PROTOCOLS_FILTERING=`grep ^PROTOCOLS_FILTERING= $conf_file|cut -d"=" -f2` # Network protocols filter (on/off)
|
29 |
PROTOCOLS_FILTERING=${PROTOCOLS_FILTERING:=off}
|
29 |
PROTOCOLS_FILTERING=${PROTOCOLS_FILTERING:=off}
|
30 |
DNS_FILTERING=`grep DNS_FILTERING= $conf_file|cut -d"=" -f2` # DNS and URLs filter (on/off)
|
- |
|
31 |
DNS_FILTERING=${DNS_FILTERING:=off}
|
- |
|
32 |
BL_IP_CAT="/usr/local/share/iptables-bl-enabled" # categories files of the BlackListed IP
|
30 |
BL_IP_CAT="/usr/local/share/iptables-bl-enabled" # categories files of the BlackListed IP
|
33 |
BL_IP_OSSI="/usr/local/share/iptables-bl/ossi" # ossi categoty
|
31 |
BL_IP_OSSI="/usr/local/share/iptables-bl/ossi" # ossi categoty
|
34 |
WL_IP_OSSI="/usr/local/share/ossi-ip-wl" # ip of the whitelist
|
32 |
WL_IP_OSSI="/usr/local/share/ossi-ip-wl" # ip of the whitelist
|
35 |
TMP_users_set_save="/tmp/users_set_save" # tmp file for backup users set
|
33 |
TMP_users_set_save="/tmp/users_set_save" # tmp file for backup users set
|
36 |
TMP_set_save="/tmp/ipset_save" # tmp file for blacklist and whitelist creation
|
34 |
TMP_set_save="/tmp/ipset_save" # tmp file for blacklist and whitelist creation
|
37 |
QOS=`grep QOS= $conf_file|cut -d"=" -f2` # QOS (on/off)
|
35 |
QOS=`grep ^QOS= $conf_file|cut -d"=" -f2` # QOS (on/off)
|
38 |
QOS=${QOS:=off}
|
36 |
QOS=${QOS:=off}
|
39 |
SSH=`grep SSH= $conf_file|cut -d"=" -f2` # sshd active (on/off)
|
37 |
SSH=`grep ^SSH= $conf_file|cut -d"=" -f2` # sshd active (on/off)
|
40 |
SSH=${SSH:=off}
|
38 |
SSH=${SSH:=off}
|
41 |
SSH_ADMIN_FROM=`grep SSH_ADMIN_FROM= $conf_file|cut -d"=" -f2`
|
39 |
SSH_ADMIN_FROM=`grep ^SSH_ADMIN_FROM= $conf_file|cut -d"=" -f2`
|
42 |
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)
|
40 |
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 |
LDAP=`grep LDAP= $conf_file|cut -d"=" -f2` # LDAP external server active (on/off)
|
41 |
LDAP=`grep ^LDAP= $conf_file|cut -d"=" -f2` # LDAP external server active (on/off)
|
44 |
LDAP=${LDAP:=off}
|
42 |
LDAP=${LDAP:=off}
|
45 |
LDAP_IP=`grep LDAP_IP= $conf_file|cut -d"=" -f2` # WAN IP address to reduce LDAP WAN access (all ip allowed on LAN side)
|
43 |
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=${LDAP_IP:="0.0.0.0/0.0.0.0"}
|
44 |
LDAP_IP=${LDAP_IP:="0.0.0.0/0.0.0.0"}
|
47 |
EXTIF="enp1s0"
|
45 |
EXTIF="enp1s0"
|
48 |
INTIF="enp2s0"
|
46 |
INTIF="enp2s0"
|
49 |
TUNIF="tun0" # listen device for chilli daemon
|
47 |
TUNIF="tun0" # listen device for chilli daemon
|
50 |
IPTABLES="/sbin/iptables"
|
48 |
IPTABLES="/sbin/iptables"
|
51 |
IP_REHABILITEES="/etc/dansguardian/lists/exceptioniplist" # Rehabilitated IP
|
49 |
IP_REHABILITEES="/etc/dansguardian/lists/exceptioniplist" # Rehabilitated IP
|
52 |
SAVE_DIR="/etc/sysconfig" # Saving path
|
50 |
SAVE_DIR="/etc/sysconfig" # Saving path
|
53 |
|
51 |
|
54 |
# Sauvegarde des SET des utilisateurs connectés si ils existent
|
52 |
# Sauvegarde des SET des utilisateurs connectés si ils existent
|
55 |
# Saving SET of connected users if it exists
|
53 |
# Saving SET of connected users if it exists
|
56 |
ipset list no_filtering_set 1>/dev/null 2>&1
|
54 |
ipset list no_filtering_set 1>/dev/null 2>&1
|
57 |
if [ $? -eq 0 ];
|
55 |
if [ $? -eq 0 ];
|
58 |
then
|
56 |
then
|
59 |
ipset save no_filtering_set > $TMP_users_set_save
|
57 |
ipset save no_filtering_set > $TMP_users_set_save
|
60 |
ipset save havp_set >> $TMP_users_set_save
|
58 |
ipset save havp_set >> $TMP_users_set_save
|
61 |
ipset save havp_bl_set >> $TMP_users_set_save
|
59 |
ipset save havp_bl_set >> $TMP_users_set_save
|
62 |
ipset save havp_wl_set >> $TMP_users_set_save
|
60 |
ipset save havp_wl_set >> $TMP_users_set_save
|
63 |
fi
|
61 |
fi
|
64 |
|
62 |
|
65 |
# loading of NetFlow probe (ipt_NETFLOW kernel module)
|
63 |
# loading of NetFlow probe (ipt_NETFLOW kernel module)
|
66 |
modprobe ipt_NETFLOW destination=127.0.0.1:2055
|
64 |
modprobe ipt_NETFLOW destination=127.0.0.1:2055
|
67 |
|
65 |
|
68 |
# Effacement des règles existantes
|
66 |
# Effacement des règles existantes
|
69 |
# Flush all existing rules
|
67 |
# Flush all existing rules
|
70 |
$IPTABLES -F
|
68 |
$IPTABLES -F
|
71 |
$IPTABLES -t nat -F
|
69 |
$IPTABLES -t nat -F
|
72 |
$IPTABLES -t mangle -F
|
70 |
$IPTABLES -t mangle -F
|
73 |
$IPTABLES -F INPUT
|
71 |
$IPTABLES -F INPUT
|
74 |
$IPTABLES -F FORWARD
|
72 |
$IPTABLES -F FORWARD
|
75 |
$IPTABLES -F OUTPUT
|
73 |
$IPTABLES -F OUTPUT
|
76 |
|
74 |
|
77 |
# Suppression des chaines utilisateurs sur les tables filter et nat
|
75 |
# Suppression des chaines utilisateurs sur les tables filter et nat
|
78 |
# Flush non default rules on filter and nat tables
|
76 |
# Flush non default rules on filter and nat tables
|
79 |
$IPTABLES -X
|
77 |
$IPTABLES -X
|
80 |
$IPTABLES -t nat -X
|
78 |
$IPTABLES -t nat -X
|
81 |
|
79 |
|
82 |
# Stratégies par défaut
|
80 |
# Stratégies par défaut
|
83 |
# Default policies
|
81 |
# Default policies
|
84 |
$IPTABLES -P INPUT DROP
|
82 |
$IPTABLES -P INPUT DROP
|
85 |
$IPTABLES -P FORWARD DROP
|
83 |
$IPTABLES -P FORWARD DROP
|
86 |
$IPTABLES -P OUTPUT DROP
|
84 |
$IPTABLES -P OUTPUT DROP
|
87 |
$IPTABLES -t nat -P PREROUTING ACCEPT
|
85 |
$IPTABLES -t nat -P PREROUTING ACCEPT
|
88 |
$IPTABLES -t nat -P POSTROUTING ACCEPT
|
86 |
$IPTABLES -t nat -P POSTROUTING ACCEPT
|
89 |
$IPTABLES -t nat -P OUTPUT ACCEPT
|
87 |
$IPTABLES -t nat -P OUTPUT ACCEPT
|
90 |
|
88 |
|
91 |
# destruction de tous les SET
|
89 |
# destruction de tous les SET
|
92 |
# destroy all SET
|
90 |
# destroy all SET
|
93 |
ipset destroy
|
91 |
ipset destroy
|
94 |
|
92 |
|
95 |
# Calcul de la taille du set de la blacklist
|
93 |
# Calcul de la taille du set de la blacklist
|
96 |
# Compute the blacklist set length
|
94 |
# Compute the blacklist set length
|
97 |
cd $BL_IP_CAT
|
95 |
cd $BL_IP_CAT
|
98 |
set_bl_length=$(($(wc -l * | awk '{print $1}' | tail -n 1)+$(wc -l $BL_IP_OSSI | awk '{print $1}')))
|
96 |
set_bl_length=$(($(wc -l * | awk '{print $1}' | tail -n 1)+$(wc -l $BL_IP_OSSI | awk '{print $1}')))
|
99 |
|
97 |
|
100 |
# Création du fichier set temporaire, remplissage, chargement et suppression
|
98 |
# Création du fichier set temporaire, remplissage, chargement et suppression
|
101 |
# Creating the temporary set file, filling, loading and deleting
|
99 |
# Creating the temporary set file, filling, loading and deleting
|
102 |
echo "create blacklist_ip_blocked hash:net family inet hashsize 1024 maxelem $set_bl_length" > $TMP_set_save
|
100 |
echo "create blacklist_ip_blocked hash:net family inet hashsize 1024 maxelem $set_bl_length" > $TMP_set_save
|
103 |
for category in `ls -1 | cut -d '@' -f1`
|
101 |
for category in `ls -1 | cut -d '@' -f1`
|
104 |
do
|
102 |
do
|
105 |
cat $BL_IP_CAT/$category >> $TMP_set_save
|
103 |
cat $BL_IP_CAT/$category >> $TMP_set_save
|
106 |
done
|
104 |
done
|
107 |
cat $BL_IP_OSSI >> $TMP_set_save
|
105 |
cat $BL_IP_OSSI >> $TMP_set_save
|
108 |
ipset -! restore < $TMP_set_save
|
106 |
ipset -! restore < $TMP_set_save
|
109 |
rm -f $TMP_set_save
|
107 |
rm -f $TMP_set_save
|
110 |
|
108 |
|
111 |
# Extraction des ip réhabilitées
|
109 |
# Extraction des ip réhabilitées
|
112 |
# Extracting rehabilitated ip
|
110 |
# Extracting rehabilitated ip
|
113 |
for ip in $(cat $IP_REHABILITEES)
|
111 |
for ip in $(cat $IP_REHABILITEES)
|
114 |
do
|
112 |
do
|
115 |
ipset del blacklist_ip_blocked $ip
|
113 |
ipset del blacklist_ip_blocked $ip
|
116 |
done
|
114 |
done
|
117 |
|
115 |
|
118 |
# Création du fichier set temporaire, remplissage, chargement et suppression
|
116 |
# Création du fichier set temporaire, remplissage, chargement et suppression
|
119 |
# Creating the temporary set file, filling, loading and deleting
|
117 |
# Creating the temporary set file, filling, loading and deleting
|
120 |
echo "create whitelist_ip_allowed hash:net family inet hashsize 1024" > $TMP_set_save
|
118 |
echo "create whitelist_ip_allowed hash:net family inet hashsize 1024" > $TMP_set_save
|
121 |
cat $WL_IP_OSSI >> $TMP_set_save
|
119 |
cat $WL_IP_OSSI >> $TMP_set_save
|
122 |
ipset -! restore < $TMP_set_save
|
120 |
ipset -! restore < $TMP_set_save
|
123 |
rm -f $TMP_set_save
|
121 |
rm -f $TMP_set_save
|
124 |
|
122 |
|
125 |
# Restoration des SET des utilisateurs connectés si ils existent sinon création des SET
|
123 |
# Restoration des SET des utilisateurs connectés si ils existent sinon création des SET
|
126 |
# Restoring the connected users SETs if available, otherwise creating SETs
|
124 |
# Restoring the connected users SETs if available, otherwise creating SETs
|
127 |
if [ -e $TMP_users_set_save ];
|
125 |
if [ -e $TMP_users_set_save ];
|
128 |
then
|
126 |
then
|
129 |
ipset -! restore < $TMP_users_set_save
|
127 |
ipset -! restore < $TMP_users_set_save
|
130 |
rm -f $TMP_users_set_save
|
128 |
rm -f $TMP_users_set_save
|
131 |
else
|
129 |
else
|
132 |
ipset create no_filtering_set hash:net hashsize 1024
|
130 |
ipset create no_filtering_set hash:net hashsize 1024
|
133 |
ipset create havp_set hash:net hashsize 1024
|
131 |
ipset create havp_set hash:net hashsize 1024
|
134 |
ipset create havp_bl_set hash:net hashsize 1024
|
132 |
ipset create havp_bl_set hash:net hashsize 1024
|
135 |
ipset create havp_wl_set hash:net hashsize 1024
|
133 |
ipset create havp_wl_set hash:net hashsize 1024
|
136 |
fi
|
134 |
fi
|
137 |
|
135 |
|
138 |
#############################
|
136 |
#############################
|
139 |
# PREROUTING #
|
137 |
# PREROUTING #
|
140 |
#############################
|
138 |
#############################
|
141 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement à DansGuardian pour pouvoir les rejeter en INPUT
|
139 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement à DansGuardian pour pouvoir les rejeter en INPUT
|
142 |
# mark (and log) the dansguardian bypass attempts in order to DROP them in INPUT rules
|
140 |
# mark (and log) the dansguardian bypass attempts in order to DROP them in INPUT rules
|
143 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8080 -j ULOG --ulog-prefix "RULE direct-proxy -- DENY "
|
141 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -p tcp -d $PRIVATE_IP -m tcp --dport 8080 -j ULOG --ulog-prefix "RULE direct-proxy -- DENY "
|
144 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8080 -j MARK --set-mark 1
|
142 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8080 -j MARK --set-mark 1
|
145 |
|
143 |
|
146 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port udp 54 pour pouvoir les rejeter en INPUT
|
144 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port udp 54 pour pouvoir les rejeter en INPUT
|
147 |
# Mark (and log) the udp 54 direct attempts to REJECT them in INPUT rules
|
145 |
# Mark (and log) the udp 54 direct attempts to REJECT them in INPUT rules
|
148 |
# $IPTABLES -A PREROUTING -t nat -i $TUNIF -p udp -d $PRIVATE_IP -m udp --dport 54 -j ULOG --ulog-prefix "RULE DNS-proxy -- DENY "
|
146 |
# $IPTABLES -A PREROUTING -t nat -i $TUNIF -p udp -d $PRIVATE_IP -m udp --dport 54 -j ULOG --ulog-prefix "RULE DNS-proxy -- DENY "
|
149 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 54 -j MARK --set-mark 2
|
147 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 54 -j MARK --set-mark 2
|
150 |
|
148 |
|
151 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port udp 55 pour pouvoir les rejeter en INPUT
|
149 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port udp 55 pour pouvoir les rejeter en INPUT
|
152 |
# Mark (and log) the udp 55 direct attempts to REJECT them in INPUT rules
|
150 |
# Mark (and log) the udp 55 direct attempts to REJECT them in INPUT rules
|
153 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 55 -j MARK --set-mark 3
|
151 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp --dport 55 -j MARK --set-mark 3
|
154 |
|
152 |
|
155 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8090 pour pouvoir les rejeter en INPUT
|
153 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8090 pour pouvoir les rejeter en INPUT
|
156 |
# Mark (and log) the 8090 direct attempts to REJECT them in INPUT rules
|
154 |
# Mark (and log) the 8090 direct attempts to REJECT them in INPUT rules
|
157 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8090 -j MARK --set-mark 4
|
155 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8090 -j MARK --set-mark 4
|
158 |
|
156 |
|
159 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8091 pour pouvoir les rejeter en INPUT
|
157 |
# Marquage (et journalisation) des paquets qui tentent d'accéder directement au port 8091 pour pouvoir les rejeter en INPUT
|
160 |
# Mark (and log) the 8091 direct attempts to REJECT them in INPUT rules
|
158 |
# Mark (and log) the 8091 direct attempts to REJECT them in INPUT rules
|
161 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8091 -j MARK --set-mark 5
|
159 |
$IPTABLES -A PREROUTING -t mangle -i $TUNIF -d $PRIVATE_IP -p tcp -m tcp --dport 8091 -j MARK --set-mark 5
|
162 |
|
160 |
|
163 |
# Aiguillage des flux DNS
|
161 |
# Aiguillage des flux DNS
|
164 |
# Switching DNS streams
|
162 |
# Switching DNS streams
|
165 |
# havp_bl_set --> redirection vers le port 54
|
163 |
# havp_bl_set --> redirection vers le port 54
|
166 |
# havp_bl_set --> redirect to port 54
|
164 |
# havp_bl_set --> redirect to port 54
|
167 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 54
|
165 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 54
|
168 |
# havp_wl_set --> redirection vers le port 55
|
166 |
# havp_wl_set --> redirection vers le port 55
|
169 |
# havp_wl_set --> redirect to port 55
|
167 |
# havp_wl_set --> redirect to port 55
|
170 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl_set src -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 55
|
168 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl_set src -d $PRIVATE_IP -p udp --dport domain -j REDIRECT --to-port 55
|
171 |
|
169 |
|
172 |
# Redirection des requêtes HTTP des IP de la blacklist vers ALCASAR (page 'accès interdit') pour le set havp_bl_set
|
170 |
# Redirection des requêtes HTTP des IP de la blacklist vers ALCASAR (page 'accès interdit') pour le set havp_bl_set
|
173 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p tcp --dport http -j REDIRECT --to-port 80
|
171 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p tcp --dport http -j REDIRECT --to-port 80
|
174 |
|
172 |
|
175 |
# Journalisation des requètes HTTP vers Internet (seulement les paquets SYN) - Les autres protocoles sont journalisés en FORWARD par netflow
|
173 |
# Journalisation des requètes HTTP vers Internet (seulement les paquets SYN) - Les autres protocoles sont journalisés en FORWARD par netflow
|
176 |
## Log HTTP requests to Internet (only syn packets) - Other protocols are log in FORWARD by netflow
|
174 |
## Log HTTP requests to Internet (only syn packets) - Other protocols are log in FORWARD by netflow
|
177 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p tcp --dport http -m state --state NEW -j ULOG --ulog-prefix "RULE F_http -- ACCEPT "
|
175 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p tcp --dport http -m state --state NEW -j ULOG --ulog-prefix "RULE F_http -- ACCEPT "
|
178 |
|
176 |
|
179 |
# Redirection des requêtes HTTP sortantes vers HAVP (8091) pour le set havp_set
|
177 |
# Redirection des requêtes HTTP sortantes vers HAVP (8091) pour le set havp_set
|
180 |
# Redirect outbound HTTP requests to HAVP (8091) for the set havp_set
|
178 |
# Redirect outbound HTTP requests to HAVP (8091) for the set havp_set
|
181 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8091
|
179 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8091
|
182 |
|
180 |
|
183 |
# Redirection des requêtes HTTP sortantes vers DansGuardian (proxy transparent) pour le set havp_bl_set
|
181 |
# Redirection des requêtes HTTP sortantes vers DansGuardian (proxy transparent) pour le set havp_bl_set
|
184 |
# Redirect outbound HTTP requests to DansGuardian (transparent proxy) for the set havp_bl_set
|
182 |
# Redirect outbound HTTP requests to DansGuardian (transparent proxy) for the set havp_bl_set
|
185 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8080
|
183 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_bl_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8080
|
186 |
|
184 |
|
187 |
# Redirection des requêtes HTTP sortantes vers HAVP pour le set havp_wl_set
|
185 |
# Redirection des requêtes HTTP sortantes vers HAVP pour le set havp_wl_set
|
188 |
# Redirect outbound HTTP requests to HAVP for the set havp_wl_set
|
186 |
# Redirect outbound HTTP requests to HAVP for the set havp_wl_set
|
189 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8091
|
187 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -m set --match-set havp_wl_set src ! -d $PRIVATE_IP -p tcp --dport http -j REDIRECT --to-port 8091
|
190 |
|
188 |
|
191 |
# Redirection des requêtes NTP vers le serveur NTP local
|
189 |
# Redirection des requêtes NTP vers le serveur NTP local
|
192 |
# Redirect NTP request in local NTP server
|
190 |
# Redirect NTP request in local NTP server
|
193 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p udp --dport ntp -j REDIRECT --to-port 123
|
191 |
$IPTABLES -A PREROUTING -t nat -i $TUNIF -s $PRIVATE_NETWORK_MASK ! -d $PRIVATE_IP -p udp --dport ntp -j REDIRECT --to-port 123
|
194 |
|
192 |
|
195 |
#############################
|
193 |
#############################
|
196 |
# INPUT #
|
194 |
# INPUT #
|
197 |
#############################
|
195 |
#############################
|
198 |
|
196 |
|
199 |
# Tout passe sur loopback
|
197 |
# Tout passe sur loopback
|
200 |
# accept all on loopback
|
198 |
# accept all on loopback
|
201 |
$IPTABLES -A INPUT -i lo -j ACCEPT
|
199 |
$IPTABLES -A INPUT -i lo -j ACCEPT
|
202 |
$IPTABLES -A OUTPUT -o lo -j ACCEPT
|
200 |
$IPTABLES -A OUTPUT -o lo -j ACCEPT
|
203 |
|
201 |
|
204 |
# Rejet des demandes de connexions non conformes (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
|
202 |
# Rejet des demandes de connexions non conformes (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
|
205 |
# Drop non standard connexions (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
|
203 |
# Drop non standard connexions (FIN-URG-PUSH, XMAS, NullScan, SYN-RST et NEW not SYN)
|
206 |
$IPTABLES -A INPUT -p tcp --tcp-flags FIN,URG,PSH FIN,URG,PSH -j DROP
|
204 |
$IPTABLES -A INPUT -p tcp --tcp-flags FIN,URG,PSH FIN,URG,PSH -j DROP
|
207 |
$IPTABLES -A INPUT -p tcp --tcp-flags ALL ALL -j DROP
|
205 |
$IPTABLES -A INPUT -p tcp --tcp-flags ALL ALL -j DROP
|
208 |
$IPTABLES -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
|
206 |
$IPTABLES -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
|
209 |
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
|
207 |
$IPTABLES -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
|
210 |
$IPTABLES -A INPUT -p tcp -m tcp ! --syn -m state --state NEW -j DROP
|
208 |
$IPTABLES -A INPUT -p tcp -m tcp ! --syn -m state --state NEW -j DROP
|
211 |
|
209 |
|
212 |
# On rejette les trame en broadcast et en multicast sur EXTIF (évite leur journalisation)
|
210 |
# On rejette les trame en broadcast et en multicast sur EXTIF (évite leur journalisation)
|
213 |
# Drop broadcast & multicast on EXTIF to avoid log
|
211 |
# Drop broadcast & multicast on EXTIF to avoid log
|
214 |
$IPTABLES -A INPUT -i $EXTIF -m addrtype --dst-type BROADCAST,MULTICAST -j DROP
|
212 |
$IPTABLES -A INPUT -i $EXTIF -m addrtype --dst-type BROADCAST,MULTICAST -j DROP
|
215 |
|
213 |
|
216 |
# On autorise les retours de connexions légitimes par INPUT
|
214 |
# On autorise les retours de connexions légitimes par INPUT
|
217 |
# Conntrack on INPUT
|
215 |
# Conntrack on INPUT
|
218 |
$IPTABLES -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
216 |
$IPTABLES -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
219 |
|
217 |
|
220 |
# 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)
|
218 |
# 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)
|
221 |
# Deny direct connections on DansGuardian port (8080). The concerned paquets are marked and logged in mangle table (PREROUTING)
|
219 |
# Deny direct connections on DansGuardian port (8080). The concerned paquets are marked and logged in mangle table (PREROUTING)
|
222 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8080 -m mark --mark 1 -j REJECT --reject-with tcp-reset
|
220 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8080 -m mark --mark 1 -j REJECT --reject-with tcp-reset
|
223 |
|
221 |
|
224 |
# Autorisation des connexions légitimes à DansGuardian
|
222 |
# Autorisation des connexions légitimes à DansGuardian
|
225 |
# Allow connections for DansGuardian
|
223 |
# Allow connections for DansGuardian
|
226 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8080 -m state --state NEW --syn -j ACCEPT
|
224 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8080 -m state --state NEW --syn -j ACCEPT
|
227 |
|
225 |
|
228 |
# On interdit les connexions directes au port UDP 54. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
226 |
# On interdit les connexions directes au port UDP 54. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
229 |
# Deny direct connections on UDP 54. The concerned paquets are marked in mangle table (PREROUTING)
|
227 |
# Deny direct connections on UDP 54. The concerned paquets are marked in mangle table (PREROUTING)
|
230 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 54 -m mark --mark 2 -j REJECT --reject-with icmp-port-unreachable
|
228 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 54 -m mark --mark 2 -j REJECT --reject-with icmp-port-unreachable
|
231 |
|
229 |
|
232 |
# On interdit les connexions directes au port UDP 55. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
230 |
# On interdit les connexions directes au port UDP 55. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
233 |
# Deny direct connections on UDP 55. The concerned paquets are marked in mangle table (PREROUTING)
|
231 |
# Deny direct connections on UDP 55. The concerned paquets are marked in mangle table (PREROUTING)
|
234 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 55 -m mark --mark 3 -j REJECT --reject-with icmp-port-unreachable
|
232 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 55 -m mark --mark 3 -j REJECT --reject-with icmp-port-unreachable
|
235 |
|
233 |
|
236 |
# On interdit les connexions directes au port 8090. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
234 |
# On interdit les connexions directes au port 8090. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
237 |
# Deny direct connections on 8090. The concerned paquets are marked in mangle table (PREROUTING)
|
235 |
# Deny direct connections on 8090. The concerned paquets are marked in mangle table (PREROUTING)
|
238 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8090 -m mark --mark 4 -j REJECT --reject-with tcp-reset
|
236 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8090 -m mark --mark 4 -j REJECT --reject-with tcp-reset
|
239 |
|
237 |
|
240 |
# On interdit les connexions directes au port 8091. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
238 |
# On interdit les connexions directes au port 8091. Les packets concernés ont été marqués dans la table mangle (PREROUTING)
|
241 |
# Deny direct connections on 8091. The concerned paquets are marked in mangle table (PREROUTING)
|
239 |
# Deny direct connections on 8091. The concerned paquets are marked in mangle table (PREROUTING)
|
242 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8091 -m mark --mark 5 -j REJECT --reject-with tcp-reset
|
240 |
$IPTABLES -A INPUT -i $TUNIF -p tcp --dport 8091 -m mark --mark 5 -j REJECT --reject-with tcp-reset
|
243 |
|
241 |
|
244 |
# Autorisation des connexions légitimes à HAVP
|
242 |
# Autorisation des connexions légitimes à HAVP
|
245 |
# Allow connections for HAVP
|
243 |
# Allow connections for HAVP
|
246 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8090 -m state --state NEW --syn -j ACCEPT
|
244 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8090 -m state --state NEW --syn -j ACCEPT
|
247 |
|
245 |
|
248 |
# Autorisation des connexions légitimes à HAVP
|
246 |
# Autorisation des connexions légitimes à HAVP
|
249 |
# Allow connections for HAVP
|
247 |
# Allow connections for HAVP
|
250 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8091 -m state --state NEW --syn -j ACCEPT
|
248 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport 8091 -m state --state NEW --syn -j ACCEPT
|
251 |
|
249 |
|
252 |
# autorisation des connexion légitime à DNSMASQ (avec blacklist)
|
250 |
# autorisation des connexion légitime à DNSMASQ (avec blacklist)
|
253 |
# Allow connections for DNSMASQ (with blacklist)
|
251 |
# Allow connections for DNSMASQ (with blacklist)
|
254 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 54 -j ACCEPT
|
252 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 54 -j ACCEPT
|
255 |
|
253 |
|
256 |
# autorisation des connexion légitime à DNSMASQ (avec whitelist)
|
254 |
# autorisation des connexion légitime à DNSMASQ (avec whitelist)
|
257 |
# Allow connections for DNSMASQ (with whitelist)
|
255 |
# Allow connections for DNSMASQ (with whitelist)
|
258 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 55 -j ACCEPT
|
256 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport 55 -j ACCEPT
|
259 |
|
257 |
|
260 |
# Accès direct aux services internes
|
258 |
# Accès direct aux services internes
|
261 |
# Internal services access
|
259 |
# Internal services access
|
262 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport domain -j ACCEPT # DNS non filtré # DNS without blacklist
|
260 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p udp --dport domain -j ACCEPT # DNS non filtré # DNS without blacklist
|
263 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 8 -j ACCEPT # Réponse ping # ping responce
|
261 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 8 -j ACCEPT # Réponse ping # ping responce
|
264 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 0 -j ACCEPT # Requête ping # ping request
|
262 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p icmp --icmp-type 0 -j ACCEPT # Requête ping # ping request
|
265 |
$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
|
263 |
$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
|
266 |
$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
|
264 |
$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
|
267 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 3990 -j ACCEPT # Requêtes de deconnexion usagers # Users logout requests
|
265 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport 3990 -j ACCEPT # Requêtes de deconnexion usagers # Users logout requests
|
268 |
$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
|
266 |
$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
|
269 |
|
267 |
|
270 |
# SSHD rules if activate
|
268 |
# SSHD rules if activate
|
271 |
if [ $SSH = on ]
|
269 |
if [ $SSH = on ]
|
272 |
then
|
270 |
then
|
273 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -m state --state NEW -j ULOG --ulog-nlgroup 2 --ulog-prefix "RULE ssh-from-LAN -- ACCEPT"
|
271 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -m state --state NEW -j ULOG --ulog-nlgroup 2 --ulog-prefix "RULE ssh-from-LAN -- ACCEPT"
|
274 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -j ACCEPT
|
272 |
$IPTABLES -A INPUT -i $TUNIF -s $PRIVATE_NETWORK_MASK -d $PRIVATE_IP -p tcp --dport ssh -j ACCEPT
|
275 |
$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m state --state NEW --syn -j ULOG --ulog-nlgroup 2 --ulog-prefix "RULE ssh-from-WAN -- ACCEPT"
|
273 |
$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m state --state NEW --syn -j ULOG --ulog-nlgroup 2 --ulog-prefix "RULE ssh-from-WAN -- ACCEPT"
|
276 |
$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m state --state NEW -j ACCEPT
|
274 |
$IPTABLES -A INPUT -i $EXTIF -s $SSH_ADMIN_FROM -d $PUBLIC_IP -p tcp --dport ssh -m state --state NEW -j ACCEPT
|
277 |
fi
|
275 |
fi
|
278 |
|
276 |
|
279 |
# Insertion de règles locales
|
277 |
# Insertion de règles locales
|
280 |
# Here, we add local rules (i.e. VPN from Internet)
|
278 |
# Here, we add local rules (i.e. VPN from Internet)
|
281 |
if [ -f /usr/local/etc/alcasar-iptables-local.sh ]; then
|
279 |
if [ -f /usr/local/etc/alcasar-iptables-local.sh ]; then
|
282 |
. /usr/local/etc/alcasar-iptables-local.sh
|
280 |
. /usr/local/etc/alcasar-iptables-local.sh
|
283 |
fi
|
281 |
fi
|
284 |
|
282 |
|
285 |
# Journalisation et rejet des connexions (autres que celles autorisées) effectuées depuis le LAN
|
283 |
# Journalisation et rejet des connexions (autres que celles autorisées) effectuées depuis le LAN
|
286 |
# Deny and log on INPUT from the LAN
|
284 |
# Deny and log on INPUT from the LAN
|
287 |
$IPTABLES -A INPUT -i $TUNIF -m state --state NEW -j ULOG --ulog-prefix "RULE rej-int -- REJECT "
|
285 |
$IPTABLES -A INPUT -i $TUNIF -m state --state NEW -j ULOG --ulog-prefix "RULE rej-int -- REJECT "
|
288 |
$IPTABLES -A INPUT -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
|
286 |
$IPTABLES -A INPUT -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
|
289 |
$IPTABLES -A INPUT -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
|
287 |
$IPTABLES -A INPUT -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
|
290 |
|
288 |
|
291 |
# interdiction d'accès à INTIF (n'est utile que lorsque chilli est arrêté).
|
289 |
# interdiction d'accès à INTIF (n'est utile que lorsque chilli est arrêté).
|
292 |
# Reject INTIF access (only when chilli is down)
|
290 |
# Reject INTIF access (only when chilli is down)
|
293 |
$IPTABLES -A INPUT -i $INTIF -j ULOG --ulog-prefix "RULE Protect1 -- REJECT "
|
291 |
$IPTABLES -A INPUT -i $INTIF -j ULOG --ulog-prefix "RULE Protect1 -- REJECT "
|
294 |
$IPTABLES -A INPUT -i $INTIF -j REJECT
|
292 |
$IPTABLES -A INPUT -i $INTIF -j REJECT
|
295 |
|
293 |
|
296 |
# Journalisation et rejet des connexions initiées depuis le réseau extérieur (test des effets du paramètre --limit en cours)
|
294 |
# Journalisation et rejet des connexions initiées depuis le réseau extérieur (test des effets du paramètre --limit en cours)
|
297 |
# On EXTIF, the access attempts are log in channel 2 (we should test --limit option to avoid deny of service)
|
295 |
# On EXTIF, the access attempts are log in channel 2 (we should test --limit option to avoid deny of service)
|
298 |
$IPTABLES -A INPUT -i $EXTIF -m state --state NEW -j ULOG --ulog-nlgroup 3 --ulog-qthreshold 10 --ulog-prefix "RULE rej-ext -- DROP"
|
296 |
$IPTABLES -A INPUT -i $EXTIF -m state --state NEW -j ULOG --ulog-nlgroup 3 --ulog-qthreshold 10 --ulog-prefix "RULE rej-ext -- DROP"
|
299 |
|
297 |
|
300 |
#############################
|
298 |
#############################
|
301 |
# FORWARD #
|
299 |
# FORWARD #
|
302 |
#############################
|
300 |
#############################
|
303 |
|
301 |
|
304 |
# Blocage des IPs du SET blacklist_ip_blocked pour le SET havp_bl_set
|
302 |
# Blocage des IPs du SET blacklist_ip_blocked pour le SET havp_bl_set
|
305 |
# Deny IPs of the SET blacklist_ip_blocked for the set havp_bl_set
|
303 |
# Deny IPs of the SET blacklist_ip_blocked for the set havp_bl_set
|
306 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p icmp -j REJECT --reject-with icmp-port-unreachable
|
304 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p icmp -j REJECT --reject-with icmp-port-unreachable
|
307 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p udp -j REJECT --reject-with icmp-port-unreachable
|
305 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p udp -j REJECT --reject-with icmp-port-unreachable
|
308 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p tcp -j REJECT --reject-with tcp-reset
|
306 |
$IPTABLES -A FORWARD -i $TUNIF -m set --match-set havp_bl_set src -m set --match-set blacklist_ip_blocked dst -p tcp -j REJECT --reject-with tcp-reset
|
309 |
|
307 |
|
310 |
# Rejet des requêtes DNS vers Internet
|
308 |
# Rejet des requêtes DNS vers Internet
|
311 |
# Deny forward DNS
|
309 |
# Deny forward DNS
|
312 |
$IPTABLES -A FORWARD -i $TUNIF -p udp --dport domain -j REJECT --reject-with icmp-port-unreachable
|
310 |
$IPTABLES -A FORWARD -i $TUNIF -p udp --dport domain -j REJECT --reject-with icmp-port-unreachable
|
313 |
$IPTABLES -A FORWARD -i $TUNIF -p tcp --dport domain -j REJECT --reject-with tcp-reset
|
311 |
$IPTABLES -A FORWARD -i $TUNIF -p tcp --dport domain -j REJECT --reject-with tcp-reset
|
314 |
|
312 |
|
315 |
# Autorisation des retours de connexions légitimes
|
313 |
# Autorisation des retours de connexions légitimes
|
316 |
$IPTABLES -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
|
314 |
$IPTABLES -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
|
317 |
|
315 |
|
318 |
# If protocols filter is activate
|
316 |
# If protocols filter is activate
|
319 |
#if [ $PROTOCOLS_FILTERING = on ]; then
|
317 |
#if [ $PROTOCOLS_FILTERING = on ]; then
|
320 |
# # Compute uamallowed IP (IP address of equipments connected between ALCASAR and Internet (DMZ, own servers, ...)
|
318 |
# # Compute uamallowed IP (IP address of equipments connected between ALCASAR and Internet (DMZ, own servers, ...)
|
321 |
# nb_uamallowed=`wc -l /usr/local/etc/alcasar-uamallowed | cut -d" " -f1`
|
319 |
# nb_uamallowed=`wc -l /usr/local/etc/alcasar-uamallowed | cut -d" " -f1`
|
322 |
# if [ $nb_uamallowed != "0" ]
|
320 |
# if [ $nb_uamallowed != "0" ]
|
323 |
# then
|
321 |
# then
|
324 |
# while read ip_allowed_line
|
322 |
# while read ip_allowed_line
|
325 |
# do
|
323 |
# do
|
326 |
# ip_allowed=`echo $ip_allowed_line|cut -d"\"" -f2`
|
324 |
# ip_allowed=`echo $ip_allowed_line|cut -d"\"" -f2`
|
327 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j ULOG --ulog-prefix "RULE IP-allowed -- ACCEPT "
|
325 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j ULOG --ulog-prefix "RULE IP-allowed -- ACCEPT "
|
328 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j NETFLOW
|
326 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j NETFLOW
|
329 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j ACCEPT
|
327 |
# $IPTABLES -A FORWARD -i $TUNIF -d $ip_allowed -m state --state NEW -j ACCEPT
|
330 |
# done < /usr/local/etc/alcasar-uamallowed
|
328 |
# done < /usr/local/etc/alcasar-uamallowed
|
331 |
# fi
|
329 |
# fi
|
332 |
# # Autorisation des protocoles non commentés
|
330 |
# # Autorisation des protocoles non commentés
|
333 |
# # Allow non comment protocols
|
331 |
# # Allow non comment protocols
|
334 |
# while read svc_line
|
332 |
# while read svc_line
|
335 |
# do
|
333 |
# do
|
336 |
# svc_on=`echo $svc_line|cut -b1`
|
334 |
# svc_on=`echo $svc_line|cut -b1`
|
337 |
# if [ $svc_on != "#" ]
|
335 |
# if [ $svc_on != "#" ]
|
338 |
# then
|
336 |
# then
|
339 |
# svc_name=`echo $svc_line|cut -d" " -f1`
|
337 |
# svc_name=`echo $svc_line|cut -d" " -f1`
|
340 |
# svc_port=`echo $svc_line|cut -d" " -f2`
|
338 |
# svc_port=`echo $svc_line|cut -d" " -f2`
|
341 |
# if [ $svc_name = "icmp" ]
|
339 |
# if [ $svc_name = "icmp" ]
|
342 |
# then
|
340 |
# then
|
343 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p icmp -j NETFLOW
|
341 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p icmp -j NETFLOW
|
344 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p icmp -j ACCEPT
|
342 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p icmp -j ACCEPT
|
345 |
# else
|
343 |
# else
|
346 |
#
|
344 |
#
|
347 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j ULOG --ulog-prefix "RULE F_TCP-$svc_name -- ACCEPT "
|
345 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j ULOG --ulog-prefix "RULE F_TCP-$svc_name -- ACCEPT "
|
348 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j NETFLOW
|
346 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j NETFLOW
|
349 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j ACCEPT
|
347 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p tcp --dport $svc_port -m state --state NEW -j ACCEPT
|
350 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j ULOG --ulog-prefix "RULE F_UDP-$svc_name -- ACCEPT "
|
348 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j ULOG --ulog-prefix "RULE F_UDP-$svc_name -- ACCEPT "
|
351 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j NETFLOW
|
349 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j NETFLOW
|
352 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j ACCEPT
|
350 |
# $IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -p udp --dport $svc_port -m state --state NEW -j ACCEPT
|
353 |
# fi
|
351 |
# fi
|
354 |
# fi
|
352 |
# fi
|
355 |
# done < /usr/local/etc/alcasar-services
|
353 |
# done < /usr/local/etc/alcasar-services
|
356 |
# # Rejet explicite des autres protocoles
|
354 |
# # Rejet explicite des autres protocoles
|
357 |
# # reject the others protocols
|
355 |
# # reject the others protocols
|
358 |
# $IPTABLES -A FORWARD -i $TUNIF -j ULOG --ulog-prefix "RULE F_filter -- REJECT "
|
356 |
# $IPTABLES -A FORWARD -i $TUNIF -j ULOG --ulog-prefix "RULE F_filter -- REJECT "
|
359 |
# $IPTABLES -A FORWARD -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
|
357 |
# $IPTABLES -A FORWARD -i $TUNIF -p tcp -j REJECT --reject-with tcp-reset
|
360 |
# $IPTABLES -A FORWARD -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
|
358 |
# $IPTABLES -A FORWARD -i $TUNIF -p udp -j REJECT --reject-with icmp-port-unreachable
|
361 |
# $IPTABLES -A FORWARD -i $TUNIF -p icmp -j REJECT
|
359 |
# $IPTABLES -A FORWARD -i $TUNIF -p icmp -j REJECT
|
362 |
#fi
|
360 |
#fi
|
363 |
|
361 |
|
364 |
# If QOS is activate #
|
362 |
# If QOS is activate #
|
365 |
if [ $QOS = on ] && [ -e /usr/local/etc/alcasar-iptables-qos.sh ]; then
|
363 |
if [ $QOS = on ] && [ -e /usr/local/etc/alcasar-iptables-qos.sh ]; then
|
366 |
. /usr/local/etc/alcasar-iptables-qos.sh
|
364 |
. /usr/local/etc/alcasar-iptables-qos.sh
|
367 |
fi
|
365 |
fi
|
368 |
|
366 |
|
369 |
# Autorisation des connections sortant du LAN
|
367 |
# Autorisation des connections sortant du LAN
|
370 |
# Allow forward connections with log
|
368 |
# Allow forward connections with log
|
371 |
#$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j ULOG --ulog-prefix "RULE F_all -- ACCEPT "
|
369 |
#$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j ULOG --ulog-prefix "RULE F_all -- ACCEPT "
|
372 |
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j NETFLOW
|
370 |
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j NETFLOW
|
373 |
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j ACCEPT
|
371 |
$IPTABLES -A FORWARD -i $TUNIF -s $PRIVATE_NETWORK_MASK -m state --state NEW -j ACCEPT
|
374 |
|
372 |
|
375 |
#############################
|
373 |
#############################
|
376 |
# OUTPUT #
|
374 |
# OUTPUT #
|
377 |
#############################
|
375 |
#############################
|
378 |
# On laisse tout sortir sur toutes les cartes sauf celle qui est connectée sur l'extérieur
|
376 |
# On laisse tout sortir sur toutes les cartes sauf celle qui est connectée sur l'extérieur
|
379 |
# Everything is allowed but traffic through outside network interface
|
377 |
# Everything is allowed but traffic through outside network interface
|
380 |
$IPTABLES -A OUTPUT ! -o $EXTIF -j ACCEPT
|
378 |
$IPTABLES -A OUTPUT ! -o $EXTIF -j ACCEPT
|
381 |
|
379 |
|
382 |
# On autorise les requêtes DNS vers les serveurs DNS identifiés
|
380 |
# On autorise les requêtes DNS vers les serveurs DNS identifiés
|
383 |
# Allow DNS requests to identified DNS servers
|
381 |
# Allow DNS requests to identified DNS servers
|
384 |
$IPTABLES -A OUTPUT -o $EXTIF -d $DNSSERVERS -p udp --dport domain -m state --state NEW -j ACCEPT
|
382 |
$IPTABLES -A OUTPUT -o $EXTIF -d $DNSSERVERS -p udp --dport domain -m state --state NEW -j ACCEPT
|
385 |
|
383 |
|
386 |
# On autorise les requêtes HTTP sortantes
|
384 |
# On autorise les requêtes HTTP sortantes
|
387 |
# HTTP requests are allowed
|
385 |
# HTTP requests are allowed
|
388 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j NETFLOW
|
386 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j NETFLOW
|
389 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j ACCEPT
|
387 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport http -j ACCEPT
|
390 |
|
388 |
|
391 |
# On autorise les requêtes FTP
|
389 |
# On autorise les requêtes FTP
|
392 |
# FTP requests are allowed
|
390 |
# FTP requests are allowed
|
393 |
modprobe ip_conntrack_ftp
|
391 |
modprobe ip_conntrack_ftp
|
394 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport ftp -j ACCEPT
|
392 |
$IPTABLES -A OUTPUT -o $EXTIF -p tcp --dport ftp -j ACCEPT
|
395 |
$IPTABLES -A OUTPUT -o $EXTIF -m state --state ESTABLISHED,RELATED -j ACCEPT
|
393 |
$IPTABLES -A OUTPUT -o $EXTIF -m state --state ESTABLISHED,RELATED -j ACCEPT
|
396 |
|
394 |
|
397 |
# On autorise les requêtes NTP
|
395 |
# On autorise les requêtes NTP
|
398 |
# NTP requests are allowed
|
396 |
# NTP requests are allowed
|
399 |
$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport ntp -j ACCEPT
|
397 |
$IPTABLES -A OUTPUT -o $EXTIF -p udp --dport ntp -j ACCEPT
|
400 |
|
398 |
|
401 |
# On autorise les requêtes ICMP (ping)
|
399 |
# On autorise les requêtes ICMP (ping)
|
402 |
# ICMP (ping) requests are allowed
|
400 |
# ICMP (ping) requests are allowed
|
403 |
$IPTABLES -A OUTPUT -o $EXTIF -p icmp --icmp-type 8 -j ACCEPT
|
401 |
$IPTABLES -A OUTPUT -o $EXTIF -p icmp --icmp-type 8 -j ACCEPT
|
404 |
|
402 |
|
405 |
# On autorise les requêtes LDAP si un serveur externe est configué
|
403 |
# On autorise les requêtes LDAP si un serveur externe est configué
|
406 |
# LDAP requests are allowed if an external server is declared
|
404 |
# LDAP requests are allowed if an external server is declared
|
407 |
if [ $LDAP = on ]
|
405 |
if [ $LDAP = on ]
|
408 |
then
|
406 |
then
|
409 |
$IPTABLES -A OUTPUT -p tcp -d $LDAP_IP -m multiport --dports ldap,ldaps -m state --state NEW,ESTABLISHED -j ACCEPT
|
407 |
$IPTABLES -A OUTPUT -p tcp -d $LDAP_IP -m multiport --dports ldap,ldaps -m state --state NEW,ESTABLISHED -j ACCEPT
|
410 |
$IPTABLES -A OUTPUT -p udp -d $LDAP_IP -m multiport --dports ldap,ldaps -m state --state NEW,ESTABLISHED -j ACCEPT
|
408 |
$IPTABLES -A OUTPUT -p udp -d $LDAP_IP -m multiport --dports ldap,ldaps -m state --state NEW,ESTABLISHED -j ACCEPT
|
411 |
fi
|
409 |
fi
|
412 |
|
410 |
|
413 |
#############################
|
411 |
#############################
|
414 |
# POSTROUTING #
|
412 |
# POSTROUTING #
|
415 |
#############################
|
413 |
#############################
|
416 |
# Traduction dynamique d'adresse en sortie
|
414 |
# Traduction dynamique d'adresse en sortie
|
417 |
# Dynamic NAT on EXTIF
|
415 |
# Dynamic NAT on EXTIF
|
418 |
$IPTABLES -A POSTROUTING -t nat -o $EXTIF -j MASQUERADE
|
416 |
$IPTABLES -A POSTROUTING -t nat -o $EXTIF -j MASQUERADE
|
419 |
|
417 |
|
420 |
# End of script
|
418 |
# End of script
|
421 |
|
419 |
|
422 |
|
420 |
|