source: hybrid/branches/releng-11/nanobsd/files/etc/pf.node.conf@ 14262

Last change on this file since 14262 was 14139, checked in by huub, 7 years ago

publicnat gedefinieerd

File size: 1.8 KB
RevLine 
[10580]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#
[10610]13
14# Global standards. NOT to be edited.
[10580]15wl_net="172.16.0.0/12"
[10610]16private="{ 10.0.0.0/8, 172.16.0.0/12 192.168.0.0/16 }"
17ileiden_ports="http,https"
[14139]18publicnat="http,https"
[10580]19
20# Default configuration for ALIX2 with ue0 as public interface and wlan0 as
21# the public accesspoint in iLeiden setup.
22captive_portal_interfaces="ue0, wlan0"
23
24# Table used to authorized hosts (6)
[10419]25table <wlportal> persist counters
26
27# Always be nice, and return the fact we are blocking the packets
28set block-policy return
29
[10580]30# Redirect user to captive portal they have not clicked OK yet (6)
[10419]31no rdr on { $captive_portal_interfaces } proto tcp from <wlportal> to !$wl_net port 80
[10580]32rdr on { $captive_portal_interfaces } proto tcp from $wl_net to !$wl_net port 80 -> 172.31.255.1 port 8081
[10419]33
[10580]34# Localhost is considered safe (5)
35pass quick on lo0 all
36
37# By default all interfaces are open (5)
[10419]38pass all
[10580]39
40# By default deny all outgoing traffic to avoid systems spamming the network (9)
[13772]41block in on { $captive_portal_interfaces } from any to !$wl_net
[10580]42
[13772]43# Quickly drop out, with nice return value, avoiding endless connections on portal setup (6)
44block return in quick on { $captive_portal_interfaces } proto tcp from !<wlportal> to !$wl_net port { $publicnat }
45
[10580]46# Note: not even HTTPS traffic allowed for those who has not clicked OK yet (6)
[13772]47pass in on { $captive_portal_interfaces } proto tcp from <wlportal> to !$wl_net port { $ileiden_ports } keep state
Note: See TracBrowser for help on using the repository browser.