diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-31 18:49:18 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-31 18:49:18 +0200 |
commit | 6aa1aeba607e59fb45af961fb74e9c1844694851 (patch) | |
tree | f00732ce14c8d85cf8c1e392605cee551c60e42c /pkg/osx/bitmask.pf.conf | |
parent | 9b889f8789a77a1457e5cb5724aed908ba42af67 (diff) |
[pkg] copy over osx boilerplate from legacy repo
Diffstat (limited to 'pkg/osx/bitmask.pf.conf')
-rw-r--r-- | pkg/osx/bitmask.pf.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/osx/bitmask.pf.conf b/pkg/osx/bitmask.pf.conf new file mode 100644 index 00000000..eb0e858f --- /dev/null +++ b/pkg/osx/bitmask.pf.conf @@ -0,0 +1,17 @@ +default_device = "en99" + +set block-policy drop +set skip on lo0 + +# block all traffic on default device +block out on $default_device all + +# allow traffic to gateways +pass out on $default_device to <bitmask_gateways> + +# allow traffic to local networks over the default device +pass out on $default_device to $default_device:network + +# block all DNS, except to the gateways +block out proto udp to any port 53 +pass out proto udp to <bitmask_gateways> port 53 |