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:34 -0500 |
commit | 243680e54daea3fa26134450f5be8277e25e091a (patch) | |
tree | 827fd69dc3d9844c6ee886412423e8e8e7164898 | |
parent | 497841f5d58b2c46cc6160e2da853a55277051e0 (diff) | |
download | pfsense-243680e54daea3fa26134450f5be8277e25e091a.zip pfsense-243680e54daea3fa26134450f5be8277e25e091a.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> |