]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/firewall
Skip checkfstab if root is set by UUID.
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / firewall
1 #!/bin/sh
2
3 eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings)
4 eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
5 eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings)
6 IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d '\012'`
7
8 if [ -f /var/ipfire/red/device ]; then
9 DEVICE=`/bin/cat /var/ipfire/red/device 2> /dev/null | /usr/bin/tr -d '\012'`
10 fi
11
12 iptables_init() {
13 # Flush all rules and delete all custom chains
14 /sbin/iptables -F
15 /sbin/iptables -t nat -F
16 /sbin/iptables -t mangle -F
17 /sbin/iptables -X
18 /sbin/iptables -t nat -X
19 /sbin/iptables -t mangle -X
20
21 # Set up policies
22 /sbin/iptables -P INPUT DROP
23 /sbin/iptables -P FORWARD DROP
24 /sbin/iptables -P OUTPUT ACCEPT
25
26 # Empty LOG_DROP and LOG_REJECT chains
27 /sbin/iptables -N LOG_DROP
28 /sbin/iptables -A LOG_DROP -m limit --limit 10/minute -j LOG
29 /sbin/iptables -A LOG_DROP -j DROP
30 /sbin/iptables -N LOG_REJECT
31 /sbin/iptables -A LOG_REJECT -m limit --limit 10/minute -j LOG
32 /sbin/iptables -A LOG_REJECT -j REJECT
33
34 # This chain will log, then DROPs packets with certain bad combinations
35 # of flags might indicate a port-scan attempt (xmas, null, etc)
36 /sbin/iptables -N PSCAN
37 if [ "$DROPPORTSCAN" == "on" ]; then
38 /sbin/iptables -A PSCAN -p tcp -m limit --limit 10/minute -j LOG --log-prefix "DROP_TCP Scan " -m comment --comment "DROP_TCP PScan"
39 /sbin/iptables -A PSCAN -p udp -m limit --limit 10/minute -j LOG --log-prefix "DROP_UDP Scan " -m comment --comment "DROP_UDP PScan"
40 /sbin/iptables -A PSCAN -p icmp -m limit --limit 10/minute -j LOG --log-prefix "DROP_ICMP Scan " -m comment --comment "DROP_ICMP PScan"
41 /sbin/iptables -A PSCAN -f -m limit --limit 10/minute -j LOG --log-prefix "DROP_FRAG Scan " -m comment --comment "DROP_FRAG PScan"
42 fi
43 /sbin/iptables -A PSCAN -j DROP -m comment --comment "DROP_PScan"
44
45 # New tcp packets without SYN set - could well be an obscure type of port scan
46 # that's not covered above, may just be a broken windows machine
47 /sbin/iptables -N NEWNOTSYN
48 if [ "$DROPNEWNOTSYN" == "on" ]; then
49 /sbin/iptables -A NEWNOTSYN -m limit --limit 10/minute -j LOG --log-prefix "DROP_NEWNOTSYN "
50 fi
51 /sbin/iptables -A NEWNOTSYN -j DROP -m comment --comment "DROP_NEWNOTSYN"
52
53 # Chain to contain all the rules relating to bad TCP flags
54 /sbin/iptables -N BADTCP
55
56 # Disallow packets frequently used by port-scanners
57 # nmap xmas
58 /sbin/iptables -A BADTCP -p tcp --tcp-flags ALL FIN,URG,PSH -j PSCAN
59 # Null
60 /sbin/iptables -A BADTCP -p tcp --tcp-flags ALL NONE -j PSCAN
61 # FIN
62 /sbin/iptables -A BADTCP -p tcp --tcp-flags ALL FIN -j PSCAN
63 # SYN/RST (also catches xmas variants that set SYN+RST+...)
64 /sbin/iptables -A BADTCP -p tcp --tcp-flags SYN,RST SYN,RST -j PSCAN
65 # SYN/FIN (QueSO or nmap OS probe)
66 /sbin/iptables -A BADTCP -p tcp --tcp-flags SYN,FIN SYN,FIN -j PSCAN
67 # NEW TCP without SYN
68 /sbin/iptables -A BADTCP -p tcp ! --syn -m state --state NEW -j NEWNOTSYN
69
70 /sbin/iptables -A INPUT -j BADTCP
71 /sbin/iptables -A FORWARD -j BADTCP
72
73 }
74
75 iptables_red() {
76 /sbin/iptables -F REDINPUT
77 /sbin/iptables -F REDFORWARD
78 /sbin/iptables -t nat -F REDNAT
79
80 # PPPoE / PPTP Device
81 if [ "$IFACE" != "" ]; then
82 # PPPoE / PPTP
83 if [ "$DEVICE" != "" ]; then
84 /sbin/iptables -A REDINPUT -i $DEVICE -j ACCEPT
85 fi
86 if [ "$RED_TYPE" == "PPTP" -o "$RED_TYPE" == "PPPOE" ]; then
87 if [ "$RED_DEV" != "" ]; then
88 /sbin/iptables -A REDINPUT -i $RED_DEV -j ACCEPT
89 fi
90 fi
91 fi
92
93 # PPTP over DHCP
94 if [ "$DEVICE" != "" -a "$TYPE" == "PPTP" -a "$METHOD" == "DHCP" ]; then
95 /sbin/iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $DEVICE -j ACCEPT
96 /sbin/iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $DEVICE -j ACCEPT
97 fi
98
99 # Orange pinholes
100 if [ "$ORANGE_DEV" != "" ]; then
101 # This rule enables a host on ORANGE network to connect to the outside
102 # (only if we have a red connection)
103 if [ "$IFACE" != "" ]; then
104 /sbin/iptables -A REDFORWARD -i $ORANGE_DEV -o $IFACE -j ACCEPT
105 fi
106 fi
107
108 if [ "$IFACE" != "" -a -f /var/ipfire/red/active ]; then
109 # DHCP
110 if [ "$RED_DEV" != "" -a "$RED_TYPE" == "DHCP" ]; then
111 /sbin/iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
112 /sbin/iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
113 fi
114 if [ "$METHOD" == "DHCP" -a "$PROTOCOL" == "RFC1483" ]; then
115 /sbin/iptables -A REDINPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
116 /sbin/iptables -A REDINPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
117 fi
118
119 # Outgoing masquerading (don't masqerade IPSEC (mark 50))
120 /sbin/iptables -t nat -A REDNAT -m mark --mark 50 -o $IFACE -j RETURN
121 /sbin/iptables -t nat -A REDNAT -o $IFACE -j MASQUERADE
122
123 fi
124 }
125
126 # See how we were called.
127 case "$1" in
128 start)
129 iptables_init
130
131 # Limit Packets- helps reduce dos/syn attacks
132 # original do nothing line
133 #/sbin/iptables -A INPUT -p tcp -m tcp --tcp-flags SYN,RST,ACK SYN -m limit --limit 10/sec
134 # the correct one, but the negative '!' do nothing...
135 #/sbin/iptables -A INPUT -p tcp -m tcp --tcp-flags SYN,RST,ACK SYN ! -m limit --limit 10/sec -j DROP
136
137 # Fix for braindead ISP's
138 /sbin/iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
139
140 # CUSTOM chains, can be used by the users themselves
141 /sbin/iptables -N CUSTOMINPUT
142 /sbin/iptables -A INPUT -j CUSTOMINPUT
143 /sbin/iptables -N CUSTOMFORWARD
144 /sbin/iptables -A FORWARD -j CUSTOMFORWARD
145 /sbin/iptables -N CUSTOMOUTPUT
146 /sbin/iptables -A OUTPUT -j CUSTOMOUTPUT
147 /sbin/iptables -N OUTGOINGFW
148 /sbin/iptables -A OUTPUT -j OUTGOINGFW
149 /sbin/iptables -t nat -N CUSTOMPREROUTING
150 /sbin/iptables -t nat -A PREROUTING -j CUSTOMPREROUTING
151 /sbin/iptables -t nat -N CUSTOMPOSTROUTING
152 /sbin/iptables -t nat -A POSTROUTING -j CUSTOMPOSTROUTING
153
154 # IPTV chains for IGMPPROXY
155 /sbin/iptables -N IPTVINPUT
156 /sbin/iptables -A INPUT -j IPTVINPUT
157 /sbin/iptables -N IPTVFORWARD
158 /sbin/iptables -A FORWARD -j IPTVFORWARD
159
160 # filtering from GUI
161 /sbin/iptables -N GUIINPUT
162 /sbin/iptables -A INPUT -j GUIINPUT
163 /sbin/iptables -A GUIINPUT -p icmp --icmp-type 8 -j ACCEPT
164
165 # Accept everything connected
166 /sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
167 /sbin/iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
168
169 # trafic from ipsecX/TUN/TAP interfaces, before "-i GREEN_DEV" accept everything
170 /sbin/iptables -N IPSECINPUT
171 /sbin/iptables -N IPSECFORWARD
172 /sbin/iptables -N IPSECOUTPUT
173 /sbin/iptables -N OPENSSLVIRTUAL
174 /sbin/iptables -A INPUT -j IPSECINPUT
175 /sbin/iptables -A INPUT -j OPENSSLVIRTUAL -m comment --comment "OPENSSLVIRTUAL INPUT"
176 /sbin/iptables -A FORWARD -j IPSECFORWARD
177 /sbin/iptables -A FORWARD -j OPENSSLVIRTUAL -m comment --comment "OPENSSLVIRTUAL FORWARD"
178 /sbin/iptables -A OUTPUT -j IPSECOUTPUT
179 /sbin/iptables -t nat -N IPSECNAT
180 /sbin/iptables -t nat -A POSTROUTING -j IPSECNAT
181
182 # Outgoing Firewall
183 /sbin/iptables -A FORWARD -j OUTGOINGFW
184
185 # localhost and ethernet.
186 /sbin/iptables -A INPUT -i lo -m state --state NEW -j ACCEPT
187 /sbin/iptables -A INPUT -s 127.0.0.0/8 -m state --state NEW -j DROP # Loopback not on lo
188 /sbin/iptables -A INPUT -d 127.0.0.0/8 -m state --state NEW -j DROP
189 /sbin/iptables -A FORWARD -i lo -m state --state NEW -j ACCEPT
190 /sbin/iptables -A FORWARD -s 127.0.0.0/8 -m state --state NEW -j DROP
191 /sbin/iptables -A FORWARD -d 127.0.0.0/8 -m state --state NEW -j DROP
192 /sbin/iptables -A INPUT -i $GREEN_DEV -m state --state NEW -j ACCEPT ! -p icmp
193 /sbin/iptables -A FORWARD -i $GREEN_DEV -m state --state NEW -j ACCEPT
194
195 # If a host on orange tries to initiate a connection to IPFire's red IP and
196 # the connection gets DNATed back through a port forward to a server on orange
197 # we end up with orange -> orange traffic passing through IPFire
198 [ "$ORANGE_DEV" != "" ] && /sbin/iptables -A FORWARD -i $ORANGE_DEV -o $ORANGE_DEV -m state --state NEW -j ACCEPT
199
200 # allow DHCP on BLUE to be turned on/off
201 /sbin/iptables -N DHCPBLUEINPUT
202 /sbin/iptables -A INPUT -j DHCPBLUEINPUT
203
204 # OPenSSL
205 /sbin/iptables -N OPENSSLPHYSICAL
206 /sbin/iptables -A INPUT -j OPENSSLPHYSICAL
207
208 # WIRELESS chains
209 /sbin/iptables -N WIRELESSINPUT
210 /sbin/iptables -A INPUT -m state --state NEW -j WIRELESSINPUT
211 /sbin/iptables -N WIRELESSFORWARD
212 /sbin/iptables -A FORWARD -m state --state NEW -j WIRELESSFORWARD
213
214 # RED chain, used for the red interface
215 /sbin/iptables -N REDINPUT
216 /sbin/iptables -A INPUT -j REDINPUT
217 /sbin/iptables -N REDFORWARD
218 /sbin/iptables -A FORWARD -j REDFORWARD
219 /sbin/iptables -t nat -N REDNAT
220 /sbin/iptables -t nat -A POSTROUTING -j REDNAT
221
222 iptables_red
223
224 # DMZ pinhole chain. setdmzholes setuid prog adds rules here to allow
225 # ORANGE to talk to GREEN / BLUE.
226 /sbin/iptables -N DMZHOLES
227 if [ "$ORANGE_DEV" != "" ]; then
228 /sbin/iptables -A FORWARD -i $ORANGE_DEV -m state --state NEW -j DMZHOLES
229 fi
230
231 # XTACCESS chain, used for external access
232 /sbin/iptables -N XTACCESS
233 /sbin/iptables -A INPUT -m state --state NEW -j XTACCESS
234
235 # PORTFWACCESS chain, used for portforwarding
236 /sbin/iptables -N PORTFWACCESS
237 /sbin/iptables -A FORWARD -m state --state NEW -j PORTFWACCESS
238
239 # Custom prerouting chains (for transparent proxy and port forwarding)
240 /sbin/iptables -t nat -N SQUID
241 /sbin/iptables -t nat -A PREROUTING -j SQUID
242 /sbin/iptables -t nat -N PORTFW
243 /sbin/iptables -t nat -A PREROUTING -j PORTFW
244
245 # upnp chain for our upnp daemon
246 /sbin/iptables -t nat -N UPNPFW
247 /sbin/iptables -t nat -A PREROUTING -j UPNPFW
248
249
250 # Custom mangle chain (for port fowarding)
251 /sbin/iptables -t mangle -N PORTFWMANGLE
252 /sbin/iptables -t mangle -A PREROUTING -j PORTFWMANGLE
253
254 # Postrouting rules (for port forwarding)
255 /sbin/iptables -t nat -A POSTROUTING -m mark --mark 1 -j SNAT \
256 --to-source $GREEN_ADDRESS
257 if [ "$BLUE_DEV" != "" ]; then
258 /sbin/iptables -t nat -A POSTROUTING -m mark --mark 2 -j SNAT --to-source $BLUE_ADDRESS
259 fi
260 if [ "$ORANGE_DEV" != "" ]; then
261 /sbin/iptables -t nat -A POSTROUTING -m mark --mark 3 -j SNAT --to-source $ORANGE_ADDRESS
262 fi
263
264 # run local firewall configuration, if present
265 if [ -x /etc/sysconfig/firewall.local ]; then
266 /etc/sysconfig/firewall.local start
267 fi
268
269 # last rule in input and forward chain is for logging.
270
271 if [ "$DROPINPUT" == "on" ]; then
272 /sbin/iptables -A INPUT -m limit --limit 10/minute -j LOG --log-prefix "DROP_INPUT "
273 fi
274 /sbin/iptables -A INPUT -j DROP -m comment --comment "DROP_INPUT"
275 if [ "$DROPOUTPUT" == "on" ]; then
276 /sbin/iptables -A FORWARD -m limit --limit 10/minute -j LOG --log-prefix "DROP_OUTPUT "
277 fi
278 /sbin/iptables -A FORWARD -j DROP -m comment --comment "DROP_OUTPUT"
279 ;;
280 startovpn)
281 # run openvpn
282 /usr/local/bin/openvpnctrl --create-chains-and-rules
283 ;;
284 stop)
285 iptables_init
286 # Accept everyting connected
287 /sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
288
289 # localhost and ethernet.
290 /sbin/iptables -A INPUT -i lo -j ACCEPT
291 /sbin/iptables -A INPUT -i $GREEN_DEV -m state --state NEW -j ACCEPT
292
293 if [ "$RED_DEV" != "" -a "$RED_TYPE" == "DHCP" ]; then
294 /sbin/iptables -A INPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
295 /sbin/iptables -A INPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
296 fi
297 if [ "$PROTOCOL" == "RFC1483" -a "$METHOD" == "DHCP" ]; then
298 /sbin/iptables -A INPUT -p tcp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
299 /sbin/iptables -A INPUT -p udp --source-port 67 --destination-port 68 -i $IFACE -j ACCEPT
300 fi
301
302 # run local firewall configuration, if present
303 if [ -x /etc/sysconfig/firewall.local ]; then
304 /etc/sysconfig/firewall.local stop
305 fi
306
307 if [ "$DROPINPUT" == "on" ]; then
308 /sbin/iptables -A INPUT -m limit --limit 10/minute -j LOG --log-prefix "DROP_INPUT "
309 fi
310 /sbin/iptables -A INPUT -j DROP -m comment --comment "DROP_INPUT"
311 if [ "$DROPOUTPUT" == "on" ]; then
312 /sbin/iptables -A FORWARD -m limit --limit 10/minute -j LOG --log-prefix "DROP_OUTPUT "
313 fi
314 /sbin/iptables -A FORWARD -j DROP -m comment --comment "DROP_OUTPUT"
315 ;;
316 stopovpn)
317 # stop openvpn
318 /usr/local/bin/openvpnctrl --delete-chains-and-rules
319 ;;
320 reload)
321 iptables_red
322
323 # run local firewall configuration, if present
324 if [ -x /etc/sysconfig/firewall.local ]; then
325 /etc/sysconfig/firewall.local reload
326 fi
327 ;;
328 restart)
329 $0 stop
330 $0 start
331 ;;
332 *)
333 echo "Usage: $0 {start|stop|reload|restart}"
334 exit 1
335 ;;
336 esac
337
338 exit 0