]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/system/firewall
firewall: Align chain name to Collectd configuration
[ipfire-2.x.git] / src / initscripts / system / firewall
CommitLineData
3a1019f6
MT
1#!/bin/sh
2
0f5c5ce7
MT
3. /etc/sysconfig/rc
4. ${rc_functions}
5
3a1019f6
MT
6eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
7eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
fe0cd647 8eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings)
3a1019f6
MT
9IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d '\012'`
10
11if [ -f /var/ipfire/red/device ]; then
12 DEVICE=`/bin/cat /var/ipfire/red/device 2> /dev/null | /usr/bin/tr -d '\012'`
13fi
14
ce31144c
MT
15NAT_MASK="0x0f000000"
16
3fa8300e
MT
17IPS_REPEAT_MARK="0x80000000"
18IPS_REPEAT_MASK="0x80000000"
19IPS_BYPASS_MARK="0x40000000"
20IPS_BYPASS_MASK="0x40000000"
21
c581b670
MT
22function iptables() {
23 /sbin/iptables --wait "$@"
24}
25
3a1019f6
MT
26iptables_init() {
27 # Flush all rules and delete all custom chains
c581b670
MT
28 iptables -F
29 iptables -t nat -F
30 iptables -t mangle -F
b1109b8a 31 iptables -t raw -F
c581b670
MT
32 iptables -X
33 iptables -t nat -X
34 iptables -t mangle -X
b1109b8a 35 iptables -t raw -X
3a1019f6
MT
36
37 # Set up policies
c581b670
MT
38 iptables -P INPUT DROP
39 iptables -P FORWARD DROP
40 iptables -P OUTPUT ACCEPT
3a1019f6 41
78b65ea7
MT
42 # Enable TRACE logging to syslog
43 modprobe nf_log_ipv4
44 sysctl -q -w net.netfilter.nf_log.2=nf_log_ipv4
45
3fa8300e
MT
46 # IPS Bypass Chain which stores the BYPASS bit in connection tracking
47 iptables -N IPSBYPASS
19357bc5 48 iptables -A IPSBYPASS -j CONNMARK --save-mark --mask "$(( ~IPS_REPEAT_MASK & 0xffffffff ))"
3fa8300e
MT
49
50 # Jump into bypass chain when the BYPASS bit is set
51 for chain in INPUT FORWARD OUTPUT; do
52 iptables -A "${chain}" -m mark \
53 --mark "$(( IPS_REPEAT_MARK | IPS_BYPASS_MARK ))/$(( IPS_REPEAT_MASK | IPS_BYPASS_MASK ))" -j IPSBYPASS
54 done
55
3a1019f6 56 # Empty LOG_DROP and LOG_REJECT chains
c581b670 57 iptables -N LOG_DROP
8ee3a135 58 iptables -A LOG_DROP -m limit --limit 10/second -j LOG
c581b670
MT
59 iptables -A LOG_DROP -j DROP
60 iptables -N LOG_REJECT
8ee3a135 61 iptables -A LOG_REJECT -m limit --limit 10/second -j LOG
c581b670 62 iptables -A LOG_REJECT -j REJECT
3a1019f6
MT
63
64 # This chain will log, then DROPs packets with certain bad combinations
ef7e9e52 65 # of flags might indicate a port-scan attempt (xmas, null, etc.)
c581b670 66 iptables -N PSCAN
5595bc03 67 if [ "$DROPPORTSCAN" == "on" ]; then
ef7e9e52
PM
68 iptables -A PSCAN -p tcp -m limit --limit 10/second -j LOG --log-prefix "DROP_TCP Scan " -m comment --comment "DROP_TCP PScan"
69 iptables -A PSCAN -p udp -m limit --limit 10/second -j LOG --log-prefix "DROP_UDP Scan " -m comment --comment "DROP_UDP PScan"
8ee3a135
PM
70 iptables -A PSCAN -p icmp -m limit --limit 10/second -j LOG --log-prefix "DROP_ICMP Scan " -m comment --comment "DROP_ICMP PScan"
71 iptables -A PSCAN -f -m limit --limit 10/second -j LOG --log-prefix "DROP_FRAG Scan " -m comment --comment "DROP_FRAG PScan"
5595bc03 72 fi
c581b670 73 iptables -A PSCAN -j DROP -m comment --comment "DROP_PScan"
3a1019f6
MT
74
75 # New tcp packets without SYN set - could well be an obscure type of port scan
ef7e9e52 76 # that's not covered above, may just be a broken Windows machine
c581b670 77 iptables -N NEWNOTSYN
5595bc03 78 if [ "$DROPNEWNOTSYN" == "on" ]; then
8ee3a135 79 iptables -A NEWNOTSYN -m limit --limit 10/second -j LOG --log-prefix "DROP_NEWNOTSYN "
5595bc03 80 fi
c581b670 81 iptables -A NEWNOTSYN -j DROP -m comment --comment "DROP_NEWNOTSYN"
3a1019f6 82
a36cd34e
PM
83 # Log and subsequently drop spoofed packets or "martians", arriving from sources
84 # on interfaces where we don't expect them
85 iptables -N SPOOFED_MARTIAN
86 if [ "$DROPSPOOFEDMARTIAN" == "on" ]; then
87 iptables -A SPOOFED_MARTIAN -m limit --limit 10/second -j LOG --log-prefix "DROP_SPOOFED_MARTIAN "
88 fi
89 iptables -A SPOOFED_MARTIAN -j DROP -m comment --comment "DROP_SPOOFED_MARTIAN"
90
3a1019f6 91 # Chain to contain all the rules relating to bad TCP flags
c581b670 92 iptables -N BADTCP
3a1019f6 93
c581b670
MT
94 # Don't check loopback
95 iptables -A BADTCP -i lo -j RETURN
d8158ca6 96
3a1019f6 97 # Disallow packets frequently used by port-scanners
dccbf1bf
AF
98 # NMAP FIN/URG/PSH (XMAS scan)
99 iptables -A BADTCP -p tcp --tcp-flags ALL FIN,URG,PSH -j PSCAN
100 # SYN/RST/ACK/FIN/URG
101 iptables -A BADTCP -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j PSCAN
102 # ALL/ALL
103 iptables -A BADTCP -p tcp --tcp-flags ALL ALL -j PSCAN
104 # FIN Stealth
c581b670 105 iptables -A BADTCP -p tcp --tcp-flags ALL FIN -j PSCAN
3a1019f6 106 # SYN/RST (also catches xmas variants that set SYN+RST+...)
c581b670 107 iptables -A BADTCP -p tcp --tcp-flags SYN,RST SYN,RST -j PSCAN
3a1019f6 108 # SYN/FIN (QueSO or nmap OS probe)
c581b670 109 iptables -A BADTCP -p tcp --tcp-flags SYN,FIN SYN,FIN -j PSCAN
dccbf1bf
AF
110 # Null
111 iptables -A BADTCP -p tcp --tcp-flags ALL NONE -j PSCAN
3a1019f6 112 # NEW TCP without SYN
c581b670 113 iptables -A BADTCP -p tcp ! --syn -m conntrack --ctstate NEW -j NEWNOTSYN
b85d2a98 114
c581b670
MT
115 iptables -A INPUT -p tcp -j BADTCP
116 iptables -A FORWARD -p tcp -j BADTCP
c0359d6d 117
b1109b8a 118 # Connection tracking chains
c581b670 119 iptables -N CONNTRACK
b1109b8a 120 iptables -A CONNTRACK -m conntrack --ctstate ESTABLISHED -j ACCEPT
0e7bfb13 121 iptables -A CONNTRACK -m conntrack --ctstate INVALID -j LOG_DROP
0f535060 122 iptables -A CONNTRACK -p icmp -m conntrack --ctstate RELATED -j ACCEPT
b1109b8a 123
c825fcef
MT
124 # Restore any connection marks
125 iptables -t mangle -A PREROUTING -j CONNMARK --restore-mark
126
ef7e9e52 127 # Fix for braindead ISPs
c581b670 128 iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
3a1019f6
MT
129
130 # CUSTOM chains, can be used by the users themselves
c581b670
MT
131 iptables -N CUSTOMINPUT
132 iptables -A INPUT -j CUSTOMINPUT
133 iptables -N CUSTOMFORWARD
134 iptables -A FORWARD -j CUSTOMFORWARD
135 iptables -N CUSTOMOUTPUT
136 iptables -A OUTPUT -j CUSTOMOUTPUT
137 iptables -t nat -N CUSTOMPREROUTING
138 iptables -t nat -A PREROUTING -j CUSTOMPREROUTING
139 iptables -t nat -N CUSTOMPOSTROUTING
140 iptables -t nat -A POSTROUTING -j CUSTOMPOSTROUTING
3a1019f6 141
97154d05
PM
142 # Log and drop any traffic from and to networks known as being hostile, posing
143 # a technical threat to our users (i. e. listed at Spamhaus DROP et al.)
37a9a0ba 144 iptables -N HOSTILE
97154d05 145 if [ "$DROPHOSTILE" == "on" ]; then
37a9a0ba
PM
146 iptables -A HOSTILE -m limit --limit 10/second -j LOG --log-prefix "DROP_HOSTILE "
147 iptables -A INPUT -i $IFACE -m geoip --src-cc XD -j HOSTILE
148 iptables -A FORWARD -i $IFACE -m geoip --src-cc XD -j HOSTILE
149 iptables -A FORWARD -o $IFACE -m geoip --dst-cc XD -j HOSTILE
150 iptables -A OUTPUT -o $IFACE -m geoip --src-cc XD -j HOSTILE
97154d05 151 fi
37a9a0ba 152 iptables -A HOSTILE -j DROP -m comment --comment "DROP_HOSTILE"
97154d05 153
2a5b19c5
AF
154 # P2PBLOCK
155 iptables -N P2PBLOCK
156 iptables -A INPUT -j P2PBLOCK
157 iptables -A FORWARD -j P2PBLOCK
158 iptables -A OUTPUT -j P2PBLOCK
0e7bfb13 159
ef7e9e52 160 # IPS (Guardian) chains
c581b670
MT
161 iptables -N GUARDIAN
162 iptables -A INPUT -j GUARDIAN
163 iptables -A FORWARD -j GUARDIAN
815eaff4 164
80fbd899
MT
165 # Block non-established IPsec networks
166 iptables -N IPSECBLOCK
167 iptables -A FORWARD -m policy --dir out --pol none -j IPSECBLOCK
168 iptables -A OUTPUT -m policy --dir out --pol none -j IPSECBLOCK
169
1e555330 170 # Block OpenVPN transfer networks
c581b670 171 iptables -N OVPNBLOCK
a0a5c14f 172 iptables -A INPUT -i tun+ -j OVPNBLOCK
a0a5c14f
MT
173 iptables -A FORWARD -i tun+ -j OVPNBLOCK
174 iptables -A FORWARD -o tun+ -j OVPNBLOCK
1e555330 175
ef7e9e52 176 # IPS (Suricata) chains
5dba8382
PM
177 iptables -N IPS_INPUT
178 iptables -N IPS_FORWARD
179 iptables -N IPS_OUTPUT
3fa8300e
MT
180
181 for chain in INPUT FORWARD OUTPUT; do
182 iptables -A "${chain}" -m mark --mark "0x0/$(( IPS_REPEAT_MASK | IPS_BYPASS_MASK ))" -j "IPS_${chain}"
183 done
5dba8382 184
51ab1de1 185 # OpenVPN transfer network translation
c581b670
MT
186 iptables -t nat -N OVPNNAT
187 iptables -t nat -A POSTROUTING -j OVPNNAT
51ab1de1 188
daa1ceba 189 # IPTV chains for IGMPPROXY
c581b670
MT
190 iptables -N IPTVINPUT
191 iptables -A INPUT -j IPTVINPUT
192 iptables -N IPTVFORWARD
193 iptables -A FORWARD -j IPTVFORWARD
daa1ceba 194
8e59a602
MT
195 # Allow to ping the firewall.
196 iptables -N ICMPINPUT
197 iptables -A INPUT -j ICMPINPUT
198 iptables -A ICMPINPUT -p icmp --icmp-type 8 -j ACCEPT
3a1019f6 199
a36cd34e 200 # Accept everything on loopback if source/destination is loopback space...
c581b670 201 iptables -N LOOPBACK
a36cd34e
PM
202 iptables -A LOOPBACK -i lo -s 127.0.0.0/8 -j ACCEPT
203 iptables -A LOOPBACK -o lo -d 127.0.0.0/8 -j ACCEPT
204
205 # ... and drop everything else on the loopback interface, since no other traffic should appear there
206 iptables -A LOOPBACK -i lo -j SPOOFED_MARTIAN
207 iptables -A LOOPBACK -o lo -j SPOOFED_MARTIAN
afc611d4 208
a36cd34e
PM
209 # Filter all packets with loopback addresses on non-loopback interfaces (spoofed)
210 iptables -A LOOPBACK -s 127.0.0.0/8 -j SPOOFED_MARTIAN
211 iptables -A LOOPBACK -d 127.0.0.0/8 -j SPOOFED_MARTIAN
3b9a23ce
MT
212
213 for i in INPUT FORWARD OUTPUT; do
c581b670 214 iptables -A ${i} -j LOOPBACK
3b9a23ce 215 done
afc611d4 216
bbaa3613
AM
217 # Captive portal
218 iptables -N CAPTIVE_PORTAL
219 iptables -N CAPTIVE_PORTAL_CLIENTS
220 for i in INPUT FORWARD; do
221 iptables -A ${i} -j CAPTIVE_PORTAL
222 done
223
3a1019f6 224 # Accept everything connected
b85d2a98 225 for i in INPUT FORWARD OUTPUT; do
c581b670 226 iptables -A ${i} -j CONNTRACK
b85d2a98
MT
227 done
228
8490e496
MT
229 # Allow DHCP
230 iptables -N DHCPINPUT
231 iptables -A DHCPINPUT -p udp --sport 68 --dport 67 -j ACCEPT
232 iptables -A DHCPINPUT -p tcp --sport 68 --dport 67 -j ACCEPT
233
234 iptables -N DHCPOUTPUT
235 iptables -A DHCPOUTPUT -p udp --sport 67 --dport 68 -j ACCEPT
236 iptables -A DHCPOUTPUT -p tcp --sport 67 --dport 68 -j ACCEPT
237
238 # Allow DHCP on GREEN
239 iptables -N DHCPGREENINPUT
240 iptables -N DHCPGREENOUTPUT
241 if [ -n "${GREEN_DEV}" ]; then
242 iptables -A INPUT -i "${GREEN_DEV}" -j DHCPGREENINPUT
243 iptables -A OUTPUT -o "${GREEN_DEV}" -j DHCPGREENOUTPUT
244 fi
245
ef7e9e52 246 # Allow DHCP on BLUE to be turned on/off
8490e496
MT
247 iptables -N DHCPBLUEINPUT
248 iptables -N DHCPBLUEOUTPUT
249 if [ -n "${BLUE_DEV}" ]; then
250 iptables -A INPUT -i "${BLUE_DEV}" -j DHCPBLUEINPUT
251 iptables -A OUTPUT -o "${BLUE_DEV}" -j DHCPBLUEOUTPUT
252 fi
253
4d25c1f3
PM
254 # Tor (inbound)
255 iptables -N TOR_INPUT
256 iptables -A INPUT -j TOR_INPUT
257
0e6eca78
MT
258 # Location Block
259 iptables -N LOCATIONBLOCK
260 iptables -A INPUT -j LOCATIONBLOCK
261 iptables -A FORWARD -j LOCATIONBLOCK
cab02e2a 262
5fd30232 263 # trafic from ipsecX/TUN/TAP interfaces, before "-i GREEN_DEV" accept everything
c581b670
MT
264 iptables -N IPSECINPUT
265 iptables -N IPSECFORWARD
266 iptables -N IPSECOUTPUT
267 iptables -A INPUT -j IPSECINPUT
268 iptables -A FORWARD -j IPSECFORWARD
269 iptables -A OUTPUT -j IPSECOUTPUT
270 iptables -t nat -N IPSECNAT
271 iptables -t nat -A POSTROUTING -j IPSECNAT
b68e5c14 272
3a1019f6 273 # localhost and ethernet.
c0e0848f
MT
274 # Always allow accessing the web GUI from GREEN.
275 iptables -N GUIINPUT
276 iptables -A INPUT -j GUIINPUT
48a7737f
MT
277 if [ -n "${GREEN_DEV}" ]; then
278 iptables -A GUIINPUT -i "${GREEN_DEV}" -p tcp --dport 444 -j ACCEPT
279 fi
8490e496 280
81393987 281 # WIRELESS chains
c581b670
MT
282 iptables -N WIRELESSINPUT
283 iptables -A INPUT -m conntrack --ctstate NEW -j WIRELESSINPUT
284 iptables -N WIRELESSFORWARD
285 iptables -A FORWARD -m conntrack --ctstate NEW -j WIRELESSFORWARD
987b75bc 286
ab4876ad 287 # OpenVPN
c581b670
MT
288 iptables -N OVPNINPUT
289 iptables -A INPUT -j OVPNINPUT
ab4876ad 290
4d25c1f3 291 # Tor (outbound)
5fc5f703
PM
292 iptables -N TOR_OUTPUT
293 iptables -A OUTPUT -j TOR_OUTPUT
0e7bfb13 294
d5f1422d 295 # Jump into the actual firewall ruleset.
c581b670
MT
296 iptables -N INPUTFW
297 iptables -A INPUT -j INPUTFW
d5f1422d 298
c581b670
MT
299 iptables -N OUTGOINGFW
300 iptables -A OUTPUT -j OUTGOINGFW
d5f1422d 301
c581b670
MT
302 iptables -N FORWARDFW
303 iptables -A FORWARD -j FORWARDFW
d5f1422d 304
fac38614 305 # SNAT rules
c581b670
MT
306 iptables -t nat -N NAT_SOURCE
307 iptables -t nat -A POSTROUTING -j NAT_SOURCE
fac38614 308
9bb40553
MT
309 # Captive Portal
310 iptables -t nat -N CAPTIVE_PORTAL
311 iptables -t nat -A PREROUTING -j CAPTIVE_PORTAL
312
bb12dd7b 313 # Custom prerouting chains (for transparent proxy)
c581b670
MT
314 iptables -t nat -N SQUID
315 iptables -t nat -A PREROUTING -j SQUID
bb12dd7b
MT
316
317 # DNAT rules
c581b670
MT
318 iptables -t nat -N NAT_DESTINATION
319 iptables -t nat -A PREROUTING -j NAT_DESTINATION
99f11a16 320 iptables -t nat -A OUTPUT -j NAT_DESTINATION
bb12dd7b 321
6e87f0aa
MT
322 iptables -t mangle -N NAT_DESTINATION
323 iptables -t mangle -A PREROUTING -j NAT_DESTINATION
324
325 iptables -t nat -N NAT_DESTINATION_FIX
326 iptables -t nat -A POSTROUTING -j NAT_DESTINATION_FIX
327
48a7737f
MT
328 if [ -n "${GREEN_ADDRESS}" ]; then
329 iptables -t nat -A NAT_DESTINATION_FIX \
ce31144c 330 -m mark --mark "0x01000000/${NAT_MASK}" -j SNAT --to-source "${GREEN_ADDRESS}"
48a7737f 331 fi
6e87f0aa
MT
332
333 if [ -n "${BLUE_ADDRESS}" ]; then
334 iptables -t nat -A NAT_DESTINATION_FIX \
ce31144c 335 -m mark --mark "0x02000000/${NAT_MASK}" -j SNAT --to-source "${BLUE_ADDRESS}"
6e87f0aa
MT
336 fi
337
338 if [ -n "${ORANGE_ADDRESS}" ]; then
339 iptables -t nat -A NAT_DESTINATION_FIX \
ce31144c 340 -m mark --mark "0x04000000/${NAT_MASK}" -j SNAT --to-source "${ORANGE_ADDRESS}"
6e87f0aa
MT
341 fi
342
6e87f0aa
MT
343 # RED chain, used for the red interface
344 iptables -N REDINPUT
345 iptables -A INPUT -j REDINPUT
346 iptables -N REDFORWARD
347 iptables -A FORWARD -j REDFORWARD
348 iptables -t nat -N REDNAT
349 iptables -t nat -A POSTROUTING -j REDNAT
350
6c920b19
MT
351 # Populate IPsec chains
352 /usr/lib/firewall/ipsec-policy
80fbd899 353
ab4876ad
MT
354 # Apply OpenVPN firewall rules
355 /usr/local/bin/openvpnctrl --firewall-rules
ff4770c7
AM
356
357 # run wirelessctrl
358 /usr/local/bin/wirelessctrl
359
1722701a
AM
360 # run captivectrl
361 /usr/local/bin/captivectrl
362
c581b670
MT
363 # POLICY CHAIN
364 iptables -N POLICYIN
365 iptables -A INPUT -j POLICYIN
366 iptables -N POLICYFWD
367 iptables -A FORWARD -j POLICYFWD
368 iptables -N POLICYOUT
369 iptables -A OUTPUT -j POLICYOUT
b324de14 370
bb383423 371 # Initialize firewall policies.
5d7faa45 372 /usr/sbin/firewall-policy
690b0bd7 373
bb383423 374 # Install firewall rules for the red interface.
4b12aa41
TE
375 iptables_red_up
376
377 # If red has not been brought up yet, we will
378 # add the blocking rules for MASQUERADE
379 if [ ! -e "/var/ipfire/red/active" ]; then
380 iptables_red_down
381 fi
ff4770c7 382}
3a1019f6 383
4b12aa41 384iptables_red_up() {
c581b670
MT
385 iptables -F REDINPUT
386 iptables -F REDFORWARD
387 iptables -t nat -F REDNAT
3a1019f6 388
e83ae0d4
PM
389 # Prohibit spoofing our own IP address on RED
390 if [ -f /var/ipfire/red/active ]; then
391 REDIP="$( cat /var/ipfire/red/local-ipaddress )";
392
393 if [ "$IFACE" != "" ]; then
394 iptables -A REDINPUT -s $REDIP -i $IFACE -j SPOOFED_MARTIAN
395 elif [ "$DEVICE" != "" ]; then
396 iptables -A REDINPUT -s $REDIP -i $DEVICE -j SPOOFED_MARTIAN
397 fi
398 fi
399
ff4770c7
AM
400 # PPPoE / PPTP Device
401 if [ "$IFACE" != "" ]; then
402 # PPPoE / PPTP
403 if [ "$DEVICE" != "" ]; then
c581b670 404 iptables -A REDINPUT -i $DEVICE -j ACCEPT
ff4770c7
AM
405 fi
406 if [ "$RED_TYPE" == "PPTP" -o "$RED_TYPE" == "PPPOE" ]; then
407 if [ "$RED_DEV" != "" ]; then
c581b670 408 iptables -A REDINPUT -i $RED_DEV -j ACCEPT
ff4770c7
AM
409 fi
410 fi
3a1019f6 411 fi
ff4770c7
AM
412
413 # PPTP over DHCP
414 if [ "$DEVICE" != "" -a "$TYPE" == "PPTP" -a "$METHOD" == "DHCP" ]; then
c581b670
MT
415 iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $DEVICE -j ACCEPT
416 iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $DEVICE -j ACCEPT
3a1019f6
MT
417 fi
418
ff4770c7
AM
419 if [ "$IFACE" != "" -a -f /var/ipfire/red/active ]; then
420 # DHCP
421 if [ "$RED_DEV" != "" -a "$RED_TYPE" == "DHCP" ]; then
c581b670
MT
422 iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
423 iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
ff4770c7
AM
424 fi
425 if [ "$METHOD" == "DHCP" -a "$PROTOCOL" == "RFC1483" ]; then
c581b670
MT
426 iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
427 iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
ff4770c7
AM
428 fi
429
51c4b73f 430 # Outgoing masquerading (don't masqerade IPsec)
e850a614 431 iptables -t nat -A REDNAT -m policy --pol ipsec --dir=out -o "${IFACE}" -j RETURN
c926c637 432
60fcb241
AF
433 if [ "${IFACE}" = "${GREEN_DEV}" ]; then
434 iptables -t nat -A REDNAT -i "${GREEN_DEV}" -o "${IFACE}" -j RETURN
c926c637 435 fi
c400fe4c 436
983d471f 437 local NO_MASQ_NETWORKS
83ef9c40
MT
438
439 if [ "${MASQUERADE_GREEN}" = "off" ]; then
983d471f 440 NO_MASQ_NETWORKS="${NO_MASQ_NETWORKS} ${GREEN_NETADDRESS}/${GREEN_NETMASK}"
83ef9c40
MT
441 fi
442
443 if [ "${MASQUERADE_BLUE}" = "off" ]; then
983d471f 444 NO_MASQ_NETWORKS="${NO_MASQ_NETWORKS} ${BLUE_NETADDRESS}/${BLUE_NETMASK}"
83ef9c40
MT
445 fi
446
447 if [ "${MASQUERADE_ORANGE}" = "off" ]; then
983d471f 448 NO_MASQ_NETWORKS="${NO_MASQ_NETWORKS} ${ORANGE_NETADDRESS}/${ORANGE_NETMASK}"
83ef9c40
MT
449 fi
450
983d471f
MT
451 local network
452 for network in ${NO_MASQ_NETWORKS}; do
453 iptables -t nat -A REDNAT -s "${network}" -o "${IFACE}" -j RETURN
83ef9c40
MT
454 done
455
456 # Masquerade everything else
457 iptables -t nat -A REDNAT -o $IFACE -j MASQUERADE
6be0579b 458 fi
66f6b279
MT
459
460 # Reload all rules.
55a5bcae 461 /usr/local/bin/firewallctrl
ff4770c7
AM
462}
463
4b12aa41
TE
464iptables_red_down() {
465 # Prohibit packets to reach the masquerading rule
e01e07ec 466 # while the WAN interface is down - this is required to
4b12aa41
TE
467 # circumvent udp related NAT issues
468 # http://forum.ipfire.org/index.php?topic=11127.0
e7204c2d
MT
469 if [ -n "${IFACE}" ]; then
470 iptables -F REDFORWARD
471 iptables -A REDFORWARD -o "${IFACE}" -j DROP
472 fi
4b12aa41
TE
473
474 # Reload all rules.
475 /usr/local/bin/firewallctrl
476}
477
ff4770c7
AM
478# See how we were called.
479case "$1" in
480 start)
7d7740a4 481 boot_mesg "Setting up firewall"
ff4770c7 482 iptables_init
7d7740a4 483 evaluate_retval
6be0579b 484 ;;
4b12aa41 485 reload|up)
7d7740a4 486 boot_mesg "Reloading firewall"
4b12aa41 487 iptables_red_up
7d7740a4 488 evaluate_retval
3a1019f6 489 ;;
4b12aa41
TE
490 down)
491 boot_mesg "Disabling firewall access to RED"
492 iptables_red_down
493 evaluate_retval
494 ;;
3a1019f6 495 restart)
3a1019f6
MT
496 $0 start
497 ;;
498 *)
ff4770c7 499 echo "Usage: $0 {start|reload|restart}"
3a1019f6
MT
500 exit 1
501 ;;
502esac
503
504exit 0