--- filter.inc.orig Sun Dec 14 10:42:37 2003
+++ filter.inc Sun Dec 14 10:42:57 2003
@@ -308,13 +308,13 @@
$ipfrules .= <<<EOD
# WAN spoof check
-block in log quick on $wanif from $lansa/$lansn to any
+block in quick on $wanif from $lansa/$lansn to any
EOD;
foreach ($optcfg as $oc) {
if (!$oc['bridge'])
- $ipfrules .= "block in log quick on $wanif from {$oc['sa']}/{$oc['sn']} to any\n";
+ $ipfrules .= "block in quick on $wanif from {$oc['sa']}/{$oc['sn']} to any\n";
}
/* allow PPTP traffic if PPTP client is enabled on WAN */
@@ -336,7 +336,7 @@
# XXX - should be more restrictive
# (not possible at the moment - need 'me' like in ipfw)
pass out quick on $wanif proto udp from any port = 68 to any port = 67
-block in log quick on $wanif proto udp from any port = 67 to $lansa/$lansn port = 68
+block in quick on $wanif proto udp from any port = 67 to $lansa/$lansn port = 68
pass in quick on $wanif proto udp from any port = 67 to any port = 68
# LAN/OPT spoof check (needs to be after DHCP because of broadcast addresses)
@@ -380,7 +380,7 @@
#---------------------------------------------------------------------------
# group head 200/250 - WAN interface
#---------------------------------------------------------------------------
-block in log quick on $wanif all head 200
+block in quick on $wanif all head 200
block out quick on $wanif all head 250
EOD; |