Subversion Repositories ALCASAR

Rev

Rev 1582 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
841 richard 1
<tr><td colspan=2 align="center">
2
<?
3
echo "$l_static_dhcp_title</td></tr>";
4
echo "<tr><td align='center' valign='middle'>";
5
echo "<FORM action='network.php' method='POST'>";
6
echo "<table cellspacing=2 cellpadding=3 border=1>";
1959 richard 7
echo "<tr><th>$l_mac_address<th>$l_ip_address<th>$l_del</tr>";
841 richard 8
// Read the "ether" file
1582 richard 9
$intif = $conf["INTIF"];
10
exec ("sudo /sbin/ip link show $intif", $output);
11
$detail = explode (" " , $output[1]);
12
$intif_mac_addr=strtoupper(str_replace(":","-",$detail[5]));
13
unset ($output);unset ($detail);
841 richard 14
$line_exist=False;
15
$tab=file(ETHERS_FILE);
16
if ($tab)  # le fichier n'est pas vide
17
	{
18
	$line_exist=True;
19
	foreach ($tab as $line)
20
		{
21
		$field=explode(" ", $line);
22
		$mac_addr=$field[0];
23
		$ip_addr=$field[1];
24
		echo "<tr><td>$mac_addr";
25
		echo "<td>$ip_addr";
1582 richard 26
		if ($mac_addr != $intif_mac_addr)
27
			echo "<td><input type='checkbox' name='$mac_addr'>";
28
		else echo "<td>";
841 richard 29
		echo "</tr>";
30
		}
31
	}
32
echo "</table>";
33
if ($line_exist)
34
	{
35
	echo "<input type='hidden' name='choix' value='del_mac'>";
861 richard 36
	echo "<input type='submit' value='$l_apply'>";
841 richard 37
	}	
38
echo "</form></td><td valign='middle' align='center'>";
1578 richard 39
echo "<FORM name='new_mac' action='network.php' method='POST'>";
841 richard 40
echo "<table cellspacing=2 cellpadding=3 border=1>";
41
echo "<tr><th>$l_mac_address<th>$l_ip_address";
42
?>
43
<td></td></tr>
1578 richard 44
<tr><td>exemple : 12-2F-36-A4-DF-43</td><td>exemple : 192.168.182.10</td><td></td></tr>
841 richard 45
<tr><td><input type='text' name='add_mac' size='17'></td>
1578 richard 46
<td><input type='text' name='add_ip' size='10'><input type='hidden' name='choix' value='new_mac'></td>
47
<td><? echo "<input type=submit class=button value=\"$l_add_to_list\" OnClick=\"return MAC_Control('new_mac');\">"?></td>
841 richard 48
</tr></table>
49
</form>
50
</td></tr>
51
</table>