diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-08-31 22:08:54 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-08-31 22:08:54 +0000 |
commit | bdfa3e90bf7b3d6a295f8d4ee21701f7954eb949 (patch) | |
tree | 99d166e967342652b8312404f7e66190d145b196 | |
parent | d63bd62c9b2eb4e96801b9b986c4738facf15122 (diff) | |
download | pfsense-bdfa3e90bf7b3d6a295f8d4ee21701f7954eb949.zip pfsense-bdfa3e90bf7b3d6a295f8d4ee21701f7954eb949.tar.gz |
Add a number of NOTE helpers
-rwxr-xr-x | usr/local/www/load_balancer_virtual_server_edit.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/local/www/load_balancer_virtual_server_edit.php b/usr/local/www/load_balancer_virtual_server_edit.php index ec720af..1660c31 100755 --- a/usr/local/www/load_balancer_virtual_server_edit.php +++ b/usr/local/www/load_balancer_virtual_server_edit.php @@ -114,12 +114,14 @@ include("head.inc"); <td width="22%" valign="top" class="vncellreq">IP Address</td> <td width="78%" class="vtable" colspan="2"> <input name="ipaddr" type="text" <?if(isset($pconfig['ipaddr'])) echo "value=\"{$pconfig['ipaddr']}\"";?> size="16" maxlength="16"> + <br>NOTE: This is normally the WAN IP address that you would like the server to listen on. All connections to this IP/PORT will be forwarded to the pool cluster. </td> </tr> <tr align="left"> <td width="22%" valign="top" class="vncellreq">Port</td> <td width="78%" class="vtable" colspan="2"> <input name="port" type="text" <?if(isset($pconfig['port'])) echo "value=\"{$pconfig['port']}\"";?> size="16" maxlength="16"> + <br>NOTE: This is the PORT that the clients will connect to. All connections to this port will be forwarded to the pool cluster. </td> </tr> <tr align="left"> @@ -151,6 +153,7 @@ include("head.inc"); </tr> </table> </form> +<span class="red"><strong>Note:</strong></span> Don't forget to add a allow rule for the virtual server after your finished setting it up. <?php include("fend.inc"); ?> </body> </html> |