You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
<form method="POST" action="subnet.php">
|
|
<input type="hidden" name="id" value="{$subnet->id}">
|
|
|
|
<table class="title">
|
|
<tr>
|
|
<td class="header">
|
|
<img class="icon" src="images/plugin.png" alt="" />
|
|
{$lang_subnet_edit} : {$subnet->address}/{$subnet->mask}
|
|
</td>
|
|
<td align="right">
|
|
<a href="#" onClick="history.go(-1)"><img src="images/rewind.png" alt="{$lang_cancel}"{if $suser_tooltips} title="{$lang_cancel}"{/if}></a>
|
|
<input type="image" src="images/save.png" alt="{$lang_submit}"{if $suser_tooltips} title="{$lang_submit}"{/if}>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_subnet}
|
|
</td>
|
|
<td class="header_right">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_subnetaddress}
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="subnet_address" value="{$subnet->address}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_mask}
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="subnet_mask" size="2" value="{$subnet->mask}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_proto_vers}
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="subnet_proto_vers" size="2" value="{$subnet->proto_vers}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_dhcpstart}
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="dhcp_start" size="15" value="{$subnet->dhcp_start}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_dhcpend}
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="dhcp_end" size="15" value="{$subnet->dhcp_end}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
NTP Server
|
|
</td>
|
|
<td class="value">
|
|
<input type="text" name="ntp_server" size="45" value="{$subnet->ntp_server}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_info}
|
|
</td>
|
|
<td class="value">
|
|
<textarea name="subnet_info" cols="30" rows="10">{$subnet->info}</textarea>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
|