Skip to content

Commit

Permalink
use (self) instead of any for web lockout
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Buechler committed Oct 4, 2013
1 parent b762e3d commit c3b9bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/inc/filter.inc
Expand Up @@ -2598,7 +2598,7 @@ EOD;
$webConfiguratorlockoutport = $config['system']['webgui']['port']; $webConfiguratorlockoutport = $config['system']['webgui']['port'];
} }
if($webConfiguratorlockoutport) if($webConfiguratorlockoutport)
$ipfrules .= "block in log quick proto tcp from <webConfiguratorlockout> to any port {$webConfiguratorlockoutport} label \"webConfiguratorlockout\"\n"; $ipfrules .= "block in log quick proto tcp from <webConfiguratorlockout> to (self) port {$webConfiguratorlockoutport} label \"webConfiguratorlockout\"\n";


/* /*
* Support for allow limiting of TCP connections by establishment rate * Support for allow limiting of TCP connections by establishment rate
Expand Down

0 comments on commit c3b9bcb

Please sign in to comment.