diff options
-rw-r--r-- | etc/rc.firewall | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/rc.firewall b/etc/rc.firewall index 0dd5ae6..24e4943 100644 --- a/etc/rc.firewall +++ b/etc/rc.firewall @@ -121,6 +121,9 @@ case ${firewall_type} in # Allow TCP through if setup succeeded ${fwcmd} add pass tcp from any to any established + # Allow IP fragments to pass through + ${fwcmd} add pass all from any to any frag + # Allow setup of incoming email ${fwcmd} add pass tcp from any to ${ip} 25 setup @@ -178,6 +181,9 @@ case ${firewall_type} in # Allow TCP through if setup succeeded ${fwcmd} add pass tcp from any to any established + # Allow IP fragments to pass through + ${fwcmd} add pass all from any to any frag + # Allow setup of incoming email ${fwcmd} add pass tcp from any to ${oip} 25 setup |