diff options
author | Ermal <eri@pfsense.org> | 2013-11-21 13:58:38 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2013-11-21 13:58:38 +0000 |
commit | f7ec7bf9d1bb95f39f6b7ca8e83b82f76643f61d (patch) | |
tree | eb253f88d30aa65227b1a2a9caeefafdcfb8d5a9 /etc/inc | |
parent | e6000a9bc6fe5d75f35c8debbe70066d60cb2ccb (diff) | |
download | pfsense-f7ec7bf9d1bb95f39f6b7ca8e83b82f76643f61d.zip pfsense-f7ec7bf9d1bb95f39f6b7ca8e83b82f76643f61d.tar.gz |
FreeBSD 10 pf does not have a limit for table entries
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 1fcd2f1..21a5019 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -254,9 +254,6 @@ function filter_configure_sync($delete_states_if_needed = true) { } $limitrules = ""; - /* Define the maximum number of tables the system can handle (should be at least aliases*2+some spare) */ - $maxtables = is_numeric($config['system']['maximumtables']) ? $config['system']['maximumtables'] : "3000"; - $limitrules .= "set limit tables {$maxtables}\n"; /* User defined maximum table entries in Advanced menu. */ if ($config['system']['maximumtableentries'] <> "" && is_numeric($config['system']['maximumtableentries'])) $limitrules .= "set limit table-entries {$config['system']['maximumtableentries']}\n"; |