diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-08-08 11:55:10 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-08-08 15:05:22 -0300 |
commit | 47e26c6cb76587b1b77ef7438091de722c50f671 (patch) | |
tree | c77169b9d06d126da1bb8a2e2bb6d5f7cc31b77c | |
parent | f5013fea9a644ec6c99bfb8f9f435229caa13146 (diff) | |
download | pfsense-47e26c6cb76587b1b77ef7438091de722c50f671.zip pfsense-47e26c6cb76587b1b77ef7438091de722c50f671.tar.gz |
Warn user that change will not take effect immediately
-rw-r--r-- | usr/local/www/system_advanced_network.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/usr/local/www/system_advanced_network.php b/usr/local/www/system_advanced_network.php index 7c42ce6..2b6f476 100644 --- a/usr/local/www/system_advanced_network.php +++ b/usr/local/www/system_advanced_network.php @@ -247,6 +247,9 @@ function enable_change(enable_over) { <input name="disablechecksumoffloading" type="checkbox" id="disablechecksumoffloading" value="yes" <?php if (isset($config['system']['disablechecksumoffloading'])) echo "checked=\"checked\""; ?> /> <strong><?=gettext("Disable hardware checksum offload"); ?></strong><br /> <?=gettext("Checking this option will disable hardware checksum offloading. Checksum offloading is broken in some hardware, particularly some Realtek cards. Rarely, drivers may have problems with checksum offloading and some specific NICs."); ?> + <br/> + <span class="red"><strong><?=gettext("Note:");?> </strong></span> + <?=gettext("This will take effect after you reboot the machine or re-configure each interface.");?> </td> </tr> <tr> @@ -255,6 +258,9 @@ function enable_change(enable_over) { <input name="disablesegmentationoffloading" type="checkbox" id="disablesegmentationoffloading" value="yes" <?php if (isset($config['system']['disablesegmentationoffloading'])) echo "checked=\"checked\""; ?> /> <strong><?=gettext("Disable hardware TCP segmentation offload"); ?></strong><br /> <?=gettext("Checking this option will disable hardware TCP segmentation offloading (TSO, TSO4, TSO6). This offloading is broken in some hardware drivers, and may impact performance with some specific NICs."); ?> + <br/> + <span class="red"><strong><?=gettext("Note:");?> </strong></span> + <?=gettext("This will take effect after you reboot the machine or re-configure each interface.");?> </td> </tr> <tr> @@ -263,6 +269,9 @@ function enable_change(enable_over) { <input name="disablelargereceiveoffloading" type="checkbox" id="disablelargereceiveoffloading" value="yes" <?php if (isset($config['system']['disablelargereceiveoffloading'])) echo "checked=\"checked\""; ?> /> <strong><?=gettext("Disable hardware large receive offload"); ?></strong><br /> <?=gettext("Checking this option will disable hardware large receive offloading (LRO). This offloading is broken in some hardware drivers, and may impact performance with some specific NICs."); ?> + <br/> + <span class="red"><strong><?=gettext("Note:");?> </strong></span> + <?=gettext("This will take effect after you reboot the machine or re-configure each interface.");?> </td> </tr> <tr> |