From 305a2ab0d79995d6214ad7eb5a7de3b662af0090 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 12 Jul 2009 00:55:08 -0400 Subject: Add enable/disable option for flow table support --- usr/local/www/system_advanced_network.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'usr/local/www') diff --git a/usr/local/www/system_advanced_network.php b/usr/local/www/system_advanced_network.php index 5c60eda..bf39994 100644 --- a/usr/local/www/system_advanced_network.php +++ b/usr/local/www/system_advanced_network.php @@ -49,6 +49,7 @@ $pconfig['ipv6allow'] = isset($config['system']['ipv6allow']); $pconfig['polling_enable'] = isset($config['system']['polling']); $pconfig['sharednet'] = $config['system']['sharednet']; $pconfig['disablechecksumoffloading'] = isset($config['system']['disablechecksumoffloading']); +$pconfig['flowtable'] = isset($config['system']['flowtable']); if ($_POST) { @@ -96,6 +97,12 @@ if ($_POST) { setup_polling(); } + if($_POST['flowtable'] == "yes") { + $config['system']['flowtable'] = $_POST['flowtable']; + } else { + unset($config['system']['flowtable']); + } + if($_POST['disablechecksumoffloading'] == "yes") { $config['system']['disablechecksumoffloading'] = $_POST['disablechecksumoffloading']; setup_microcode(); @@ -234,6 +241,21 @@ function enable_change(enable_over) {   + +   + + + Flowtable support + + + Enable Flowtable + + > + Enable flowtable support
+ Enables infrastructure for caching flows as a means of accelerating L3 and L2 lookups + as well as providing stateful load balancing when used with RADIX_MPATH. + + -- cgit v1.1