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