diff options
author | Chris Buechler <cmb@pfsense.org> | 2013-09-03 11:00:01 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2013-09-03 11:00:01 -0500 |
commit | 7050776a100b4dada4b0865c1bfe99906551e29f (patch) | |
tree | 40c3120ed25cd3d6a1adceadc729321770a86ac1 | |
parent | 6f8cf5539d90b1c7fbd333434bf053ed157f1fcc (diff) | |
download | pfsense-7050776a100b4dada4b0865c1bfe99906551e29f.zip pfsense-7050776a100b4dada4b0865c1bfe99906551e29f.tar.gz |
Disable state killing on gateway failure by default for new configs.
Clarify the text describing the option while here.
-rw-r--r-- | conf.default/config.xml | 1 | ||||
-rw-r--r-- | usr/local/www/system_advanced_misc.php | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/conf.default/config.xml b/conf.default/config.xml index fe622fe..0ba4e75 100644 --- a/conf.default/config.xml +++ b/conf.default/config.xml @@ -213,6 +213,7 @@ <bogons> <interval>monthly</interval> </bogons> + <kill_states/> </system> <interfaces> <wan> diff --git a/usr/local/www/system_advanced_misc.php b/usr/local/www/system_advanced_misc.php index d50c607..a69d35b 100644 --- a/usr/local/www/system_advanced_misc.php +++ b/usr/local/www/system_advanced_misc.php @@ -564,12 +564,11 @@ function tmpvar_checked(obj) { <td colspan="2" valign="top" class="listtopic"><?=gettext("Gateway Monitoring"); ?></td> </tr> <tr> - <td width="22%" valign="top" class="vncell"><?=gettext("States"); ?></td> + <td width="22%" valign="top" class="vncell"><?=gettext("State Killing on Gateway Failure"); ?></td> <td width="78%" class="vtable"> <input name="kill_states" type="checkbox" id="kill_states" value="yes" <?php if ($pconfig['kill_states']) echo "checked=\"checked\""; ?> /> <br /> - <?=gettext("By default the monitoring process will flush states for a gateway that goes down. ". - "This option overrides that behavior by not clearing states for existing connections."); ?> + <?=gettext("The monitoring process will flush states for a gateway that goes down if this box is not checked. Check this box to disable this behavior."); ?> </td> </tr> <tr> |