1 | #
|
---|
2 | # Wireless Leiden PF firewall configuration for iLeiden Node.
|
---|
3 | #
|
---|
4 | # N.B: The features points are shared between all firewall configurations to
|
---|
5 | # make comparisions more easy to do
|
---|
6 | #
|
---|
7 | # 5) The Wireless Leiden facing interfaces are not firewalled.
|
---|
8 | # 6) WL Captive Portal Support for interfaces who needs it.
|
---|
9 | # 9) Protect the Wireless Network from junk traffic.
|
---|
10 | #
|
---|
11 | # Rick van der Zwet <rick@wirelessleiden.nl>
|
---|
12 | #
|
---|
13 |
|
---|
14 | # Global standards. NOT to be edited.
|
---|
15 | wl_net="172.16.0.0/12"
|
---|
16 | private="{ 10.0.0.0/8, 172.16.0.0/12 192.168.0.0/16 }"
|
---|
17 | ileiden_ports="http,https"
|
---|
18 |
|
---|
19 |
|
---|
20 | # Default configuration for ALIX2 with ue0 as public interface and wlan0 as
|
---|
21 | # the public accesspoint in iLeiden setup.
|
---|
22 | captive_portal_interfaces="ue0, wlan0"
|
---|
23 |
|
---|
24 | # Table used to authorized hosts (6)
|
---|
25 | table <wlportal> persist counters
|
---|
26 |
|
---|
27 | # Always be nice, and return the fact we are blocking the packets
|
---|
28 | set block-policy return
|
---|
29 |
|
---|
30 | # Nat to the internet for packets which are orginating from itself for proxy functionality (8)
|
---|
31 | nat on !$ext_if inet proto tcp from $wl_net to any port { $ileiden_ports } -> ($ext_if)
|
---|
32 |
|
---|
33 | # Redirect user to captive portal they have not clicked OK yet (6)
|
---|
34 | no rdr on { $captive_portal_interfaces } proto tcp from <wlportal> to !$wl_net port 80
|
---|
35 | rdr on { $captive_portal_interfaces } proto tcp from $wl_net to !$wl_net port 80 -> 172.31.255.1 port 8081
|
---|
36 |
|
---|
37 | # Localhost is considered safe (5)
|
---|
38 | pass quick on lo0 all
|
---|
39 |
|
---|
40 | # By default all interfaces are open (5)
|
---|
41 | pass all
|
---|
42 |
|
---|
43 | # By default deny all outgoing traffic to avoid systems spamming the network (9)
|
---|
44 | block out on { $captive_portal_interfaces } from any to !$wl_net
|
---|
45 |
|
---|
46 | # Note: not even HTTPS traffic allowed for those who has not clicked OK yet (6)
|
---|
47 | pass out on { $captive_portal_interfaces } proto tcp from <wlportal> to !$wl_net port { $ileiden_ports } keep state
|
---|