Skip to content

Commit 5f9217f

Browse files
author
root
committed
Add PPTP to ignore for IPfw
1 parent 6278fc0 commit 5f9217f

File tree

1 file changed

+1
-1
lines changed
  • src/opnsense/service/templates/OPNsense/IPFW

1 file changed

+1
-1
lines changed

src/opnsense/service/templates/OPNsense/IPFW/ipfw.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ add 203 skipto 60000 ipv4 from any to 127.0.0.0/8
9898
# Allow traffic to this hosts static ip's
9999
#======================================================================================
100100
{% for intf_key,interface in interfaces.iteritems() %}
101-
{% if intf_key != "wan" and interface.ipaddr not in ["dhcp", "ppp", "pppoe", "l2tp"] and interface.ipaddr|default("") != "" %}
101+
{% if intf_key != "wan" and interface.ipaddr not in ["dhcp", "ppp", "pppoe", "l2tp", "pptp"] and interface.ipaddr|default("") != "" %}
102102
add {{loop.index + 1000}} skipto 60000 udp from any to {{ interface.ipaddr }} dst-port 53 keep-state
103103
add {{loop.index + 1000}} skipto 60000 ip from any to { 255.255.255.255 or {{interface.ipaddr}} } in
104104
add {{loop.index + 1000}} skipto 60000 ip from { 255.255.255.255 or {{interface.ipaddr}} } to any out

0 commit comments

Comments
 (0)