machine_setup/ansible/roles/firewall/files/odofreebsd_pf.conf

39 lines
1.2 KiB
Plaintext
Raw Normal View History

ext_if = "{ wlan0 }"
not_ext_if = "{ !wlan0 }"
jail_nat_v4 = "{ 10.193.223.0/24 10.213.177.0/24 10.215.1.0/24 }"
not_jail_nat_v4 = "{ any, !10.193.223.0/24 !10.213.177.0/24 !10.215.1.0/24 }"
dns_redirect = "{ 10.193.223.1 10.213.177.1 10.215.1.1 }"
2022-10-15 04:54:11 +00:00
dhcp = "{ bootpc, bootps }"
allow = "{ wgf wgh drmario colo }"
2022-10-15 04:54:11 +00:00
tcp_pass_in = "{ 22 }"
udp_pass_in = "{ 53 51820 }"
# Rules must be in order: options, normalization, queueing, translation, filtering
# options
set skip on lo
# redirections
nat pass on $ext_if inet from $jail_nat_v4 to $not_jail_nat_v4 -> (wlan0)
rdr pass on $not_ext_if proto {tcp, udp} from any to 10.215.1.1 port 53 -> 1.1.1.1 port 53
2022-10-30 00:36:13 +00:00
2022-10-15 04:54:11 +00:00
# filtering
block log all
pass out on $ext_if
pass in on jail_nat
2022-10-15 04:54:11 +00:00
# We pass on the interfaces listed in allow rather than skipping on
# them because changes to pass rules will update when running a
# `service pf reload` but interfaces that we `skip` will not update (I
# forget if its from adding, removing, or both. TODO: test to figure
# it out)
2022-12-04 07:12:10 +00:00
pass quick on $allow
2022-10-15 04:54:11 +00:00
pass on $ext_if proto icmp all
pass on $ext_if proto icmp6 all
pass in on $ext_if proto tcp to any port $tcp_pass_in
pass in on $ext_if proto udp to any port $udp_pass_in