lmc/nodebalancers/node/index.shtml

88 lines
3.1 KiB
Plaintext
Raw Normal View History

2024-08-08 19:46:58 -04:00
<!--
This file is part of Linode Manager Classic.
Linode Manager Classic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Linode Manager Classic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Linode Manager Classic. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LMC - NodeBalancers</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="node.css" />
<script src="node.js" type="module"></script>
</head>
<body>
<!--#include virtual="/include/header.html"-->
<div id="main-content" class="wrapper">
<div id="top-links"><a href="/nodebalancers">NodeBalancers</a> » <span id="nodebalancer-tag"><a id="nodebalancer-tag-link" href=""></a> » </span><a id="nodebalancer-label" href="/nodebalancers/balancer?nbid=0"></a> » <a id="config-label" href="/nodebalancers/config?nbid=0&nbcid=0">Port</a> » <span class="top-links-title">Edit Node</span></div>
<div id="node">
<table class="lmc-table">
<thead>
<tr>
<td colspan="3">Edit Node</td>
</tr>
<tr>
<td colspan="3">Node Settings</td>
</tr>
</thead>
<tbody>
<tr class="lmc-tr3">
<td>Label</td>
<td><input id="label" type="text" size="30" /></td>
<td class="info">This backend node's label</td>
</tr>
<tr class="lmc-tr3">
<td>Address</td>
<td>
<select id="address">
<option selected disabled value="0">Select A Linode</option>
</select>
</td>
<td class="info">The private IP address of the backend Linode instance</td>
</tr>
<tr class="lmc-tr3">
<td>Port</td>
<td><input id="port" type="number" min="1" max="65535" size="4" /></td>
<td class="info">The backend port for this node</td>
</tr>
<tr class="lmc-tr3">
<td>Weight</td>
<td><input id="weight" type="number" min="1" max="255" value="100" size="4" /></td>
<td class="info">Load balancing weight, 1-255. Higher means more connections.</td>
</tr>
<tr class="lmc-tr3">
<td>Mode</td>
<td>
<select id="mode">
<option value="accept">Accept</option>
<option value="reject">Reject</option>
<option value="backup">Backup</option>
<option value="drain">Drain</option>
</select>
</td>
<td class="info">The connections mode for this node</td>
</tr>
<tr class="lmc-tr3">
<td></td>
<td><button disabled id="save-button" type="button">Save Changes</button></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>