diff options
-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> |