To be able to connect to a Windows based PPTP VPN through a OpenBSD firewall you’ll need to make a couple of changes to allow GRE traffic through.
first add the following to /etc/sysctl.conf
:
net.inet.gre.allow=1
net.inet.gre.wccp=1
net.inet.mobileip.allow=1
then add the following to the filter section in your /etc/pf.conf
:
pass in on $ext_if proto gre all keep state
pass out on $ext_if proto gre all keep state
To make the changes effective without having to reboot issue the following as root:
sysctl net.inet.gre.allow=1
sysctl net.inet.gre.wccp=1
sysctl net.inet.mobileip.allow=1
pfctl -f /etc/pf.conf