I want to set up a client wit BSD packet filtering that only allows outgoing 443 connections. Would this do the trick in my pf.conf?
block out
block in
pass out on eth0 inet proto tcp from (eth0) to any port 443 keep state
Is there any reason to allow incoming connections on 443 if the server is always on the "outside"?