chiark / gitweb /
jaguar.m4: Allow Munin from distorted.org.uk and hstg.corp.good.com.
[firewall] / local.m4
1 ### -*-sh-*-
2 ###
3 ### Local firewall configuration
4 ###
5 ### (c) 2008 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
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.
14 ###
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.
19 ###
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.
23
24 ###--------------------------------------------------------------------------
25 ### Local configuration.
26
27 m4_divert(6)m4_dnl
28 ## Default NTP servers.
29 defconf(ntp_servers,
30         "158.152.1.76 158.152.1.204 194.159.253.2 195.173.57.232")
31
32 m4_divert(-1)
33 ###--------------------------------------------------------------------------
34 ### Packet classification.
35
36 ## Define the available network classes.
37 m4_divert(42)m4_dnl
38 defnetclass untrusted   untrusted mcast
39
40 defnetclass link
41 defnetclass mcast
42 m4_divert(-1)
43
44 m4_divert(26)m4_dnl
45 ###--------------------------------------------------------------------------
46 ### Network layout.
47
48 defnet default untrusted
49
50 ## Hosts.
51 defhost jaguar
52         iface eth0 default
53
54 m4_divert(80)m4_dnl
55 ###--------------------------------------------------------------------------
56 ### Connection tracking helper modules.
57
58 for i in ftp; do
59   modprobe nf_conntrack_$i
60 done
61
62 m4_divert(80)m4_dnl
63 ###--------------------------------------------------------------------------
64 ### Special forwarding exemptions.
65
66 case $forward in
67   1)
68
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
78
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
94
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
103
104     ;;
105 esac
106
107 m4_divert(80)m4_dnl
108 ###--------------------------------------------------------------------------
109 ### Kill things we don't understand properly.
110 ###
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.
113
114 errorchain poorly-understood REJECT
115
116 ## Ban multicast destination addresses in forwarding.
117 case $forward in
118   1)
119     run iptables -A FORWARD -g poorly-understood \
120             -d 224.0.0.0/4
121     run ip6tables -A FORWARD -g poorly-understood \
122             -d ff::/8
123     ;;
124 esac
125
126 m4_divert(84)m4_dnl
127 ###--------------------------------------------------------------------------
128 ### Locally-bound packet inspection.
129
130 clearchain inbound
131
132 ## Track connections.
133 commonrules inbound
134 conntrack inbound
135
136 ## Allow incoming bootp.  Bootp won't be forwarded, so this is obviously a
137 ## local request.
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 \
142         -s 172.29.198.0/23 \
143         -p udp --source-port $port_bootpc --destination-port $port_bootps
144
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
148
149 m4_divert(88)m4_dnl
150 ## Allow unusual things.
151 openports inbound
152
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
156
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
160 done
161
162 m4_divert(-1)
163 ###----- That's all, folks --------------------------------------------------