summaryrefslogtreecommitdiffstats
path: root/etc/inc/pfsense-utils.inc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2012-05-29 10:50:46 -0400
committerjim-p <jimp@pfsense.org>2012-05-29 10:51:14 -0400
commit84aea6061722bb3a4de8a024144650e2a55df3d3 (patch)
tree373a2a8f3c0f50a33ec852a33545872408fa88c5 /etc/inc/pfsense-utils.inc
parent454ea767609ea3e679e0de4ec795532e66c7ce47 (diff)
downloadpfsense-84aea6061722bb3a4de8a024144650e2a55df3d3.zip
pfsense-84aea6061722bb3a4de8a024144650e2a55df3d3.tar.gz
Add a knob to tune the maximum number of tables that can be defined, the pf default of 1000 is too low for systems with >500 aliases.
Conflicts: etc/inc/filter.inc
Diffstat (limited to 'etc/inc/pfsense-utils.inc')
-rw-r--r--etc/inc/pfsense-utils.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 7ac1f4b..a9c2f1f 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -1434,6 +1434,11 @@ function pfsense_default_state_size() {
return $max_states;
}
+function pfsense_default_tables_size() {
+ $current = `pfctl -sm | grep ^tables | awk '{print $4};'`;
+ return $current;
+}
+
function pfsense_default_table_entries_size() {
$current = `pfctl -sm | grep table-entries | awk '{print $4};'`;
return $current;
OpenPOWER on IntegriCloud