3 ### Local firewall configuration
5 ### (c) 2008 Mark Wooding
8 ###----- Licensing notice ---------------------------------------------------
10 ### This program is free software; you can redistribute it and/or modify
11 ### it under the terms of the GNU General Public License as published by
12 ### the Free Software Foundation; either version 2 of the License, or
13 ### (at your option) any later version.
15 ### This program is distributed in the hope that it will be useful,
16 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ### GNU General Public License for more details.
20 ### You should have received a copy of the GNU General Public License
21 ### along with this program; if not, write to the Free Software Foundation,
22 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 ###--------------------------------------------------------------------------
25 ### Local configuration.
28 ## Default NTP servers.
30 "158.152.1.76 158.152.1.204 194.159.253.2 195.173.57.232")
33 ###--------------------------------------------------------------------------
34 ### Packet classification.
36 ## Define the available network classes.
38 defnetclass untrusted untrusted mcast
45 ###--------------------------------------------------------------------------
48 defnet default untrusted
55 ###--------------------------------------------------------------------------
56 ### Connection tracking helper modules.
59 modprobe nf_conntrack_$i
63 ###--------------------------------------------------------------------------
64 ### Special forwarding exemptions.
69 ## Only allow these packets if they're not fragmented. (Don't trust safe
70 ## hosts's fragment reassembly to be robust against malicious fragments.)
71 ## There's a hideous bug in iptables 1.4.11.1 which botches the meaning
72 ## of `! -f', so we do the negation using early return from a subchain.
73 clearchain fwd-spec-nofrag
74 run iptables -A fwd-spec-nofrag -j RETURN --fragment
75 run ip6tables -A fwd-spec-nofrag -j RETURN \
76 -m ipv6header --soft --header frag
77 run ip46tables -A FORWARD -j fwd-spec-nofrag
79 ## Allow ping from safe/noloop to untrusted networks.
80 run iptables -A fwd-spec-nofrag -j ACCEPT \
81 -p icmp --icmp-type echo-request \
82 -m mark --mark $to_untrusted/$MASK_TO
83 run iptables -A fwd-spec-nofrag -j ACCEPT \
84 -p icmp --icmp-type echo-reply \
85 -m mark --mark $from_untrusted/$MASK_FROM \
86 -m state --state ESTABLISHED
87 run ip6tables -A fwd-spec-nofrag -j ACCEPT \
88 -p icmpv6 --icmpv6-type echo-request \
89 -m mark --mark $to_untrusted/$MASK_TO
90 run ip6tables -A fwd-spec-nofrag -j ACCEPT \
91 -p icmpv6 --icmpv6-type echo-reply \
92 -m mark --mark $from_untrusted/$MASK_FROM \
93 -m state --state ESTABLISHED
95 ## Allow SSH from safe/noloop to untrusted networks.
96 run ip46tables -A fwd-spec-nofrag -j ACCEPT \
97 -p tcp --destination-port $port_ssh \
98 -m mark --mark $to_untrusted/$MASK_TO
99 run ip46tables -A fwd-spec-nofrag -j ACCEPT \
100 -p tcp --source-port $port_ssh \
101 -m mark --mark $from_untrusted/$MASK_FROM \
102 -m state --state ESTABLISHED
108 ###--------------------------------------------------------------------------
109 ### Kill things we don't understand properly.
111 ### I don't like having to do this, but since I don't know how to do proper
112 ### multicast filtering, I'm just going to ban it from being forwarded.
114 errorchain poorly-understood REJECT
116 ## Ban multicast destination addresses in forwarding.
119 run iptables -A FORWARD -g poorly-understood \
121 run ip6tables -A FORWARD -g poorly-understood \
127 ###--------------------------------------------------------------------------
128 ### Locally-bound packet inspection.
132 ## Track connections.
136 ## Allow incoming bootp. Bootp won't be forwarded, so this is obviously a
138 run iptables -A inbound -j ACCEPT \
139 -s 0.0.0.0 -d 255.255.255.255 \
140 -p udp --source-port $port_bootpc --destination-port $port_bootps
141 run iptables -A inbound -j ACCEPT \
143 -p udp --source-port $port_bootpc --destination-port $port_bootps
145 ## Allow incoming ping. This is the only ICMP left.
146 run iptables -A inbound -j ACCEPT -p icmp
147 run ip6tables -A inbound -j ACCEPT -p icmpv6
150 ## Allow unusual things.
153 ## Inspect inbound packets from untrusted sources.
154 run ip46tables -A inbound -j forbidden
155 run ip46tables -A INPUT -m mark --mark $from_untrusted/$MASK_FROM -g inbound
157 ## Otherwise process as indicated by the mark.
158 for i in $inchains; do
159 run ip46tables -A $i -m mark ! --mark 0/$MASK_MASK -j ACCEPT
163 ###----- That's all, folks --------------------------------------------------