Subversion Repositories ALCASAR

Rev

Rev 3194 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 3194 Rev 3254
Line 151... Line 151...
151
<head>
151
<head>
152
<meta HTTP-EQUIV="Refresh" CONTENT="30">
152
<meta HTTP-EQUIV="Refresh" CONTENT="30">
153
<meta http-equiv="Content-Type" content="text/html; charset=<?= $config['general_charset'] ?>">
153
<meta http-equiv="Content-Type" content="text/html; charset=<?= $config['general_charset'] ?>">
154
<title>Activity</title>
154
<title>Activity</title>
155
<link rel="stylesheet" type="text/css" href="/css/acc.css">
155
<link rel="stylesheet" type="text/css" href="/css/acc.css">
-
 
156
<link rel="stylesheet" href="/css/jquery.dataTables.css">
-
 
157
<script src="/js/jquery-3.6.min.js"></script>
-
 
158
<script src="/js/jquery.dataTables.js"></script>
-
 
159
<script type="text/javascript">
-
 
160
	$(document).ready(function() {
-
 
161
		$('#datatable_display').DataTable();
-
 
162
	});
-
 
163
	$.extend(true, $.fn.dataTable.defaults, {
-
 
164
       		language: {
-
 
165
			url: '/js/jquery.dataTables.<?= $Language ?>.json'
-
 
166
        		},
-
 
167
		});
-
 
168
</script>
156
</head>
169
</head>
157
<body>
170
<body>
158
<div id="ldoverlay" class="overlay">
171
<div id="ldoverlay" class="overlay">
159
	<div class="lds-spinner" id="spinner"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
172
	<div class="lds-spinner" id="spinner"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
160
</div>
173
</div>
Line 162... Line 175...
162
<tr><th><?= $l_activity ?></th></tr>
175
<tr><th><?= $l_activity ?></th></tr>
163
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
176
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
164
</table>
177
</table>
165
<table width="100%" border=1 cellspacing=0 cellpadding=1>
178
<table width="100%" border=1 cellspacing=0 cellpadding=1>
166
	<tr><td valign="middle" align="center"><?= $l_refresh ?><br>
179
	<tr><td valign="middle" align="center"><?= $l_refresh ?><br>
167
	<table border=1 width="80%" cellpadding=2 cellspacing=0>
180
	<table border=1  id="datatable_display" class="display" width="80%" cellpadding=2 cellspacing=0>
168
		<tr>
181
		<thead>
-
 
182
		<tr bgcolor="#686464">
169
			<th>#</th>
183
			<th>#</th>
170
			<th><?= $l_ip_adr ?></th>
184
			<th><?= $l_ip_adr ?></th>
171
			<th><?= $l_mac_adr ?></th>
185
			<th><?= $l_mac_adr ?></th>
172
			<th><?= $l_user ?></th>
186
			<th><?= $l_user ?></th>
173
			<th><?= $l_action ?></th>
187
			<th><?= $l_action ?></th>
174
			<?php
188
			<?php
175
			if ($conf['MULTIWAN'] !== 'off') {
189
			if ($conf['MULTIWAN'] !== 'off') {
176
				echo "<th>$l_gw</th>";
190
				echo "<th>$l_gw</th>";
177
			}
191
			}
178
		echo "</tr>";
192
		echo "</tr>";
-
 
193
		echo "</thead>";
179
		$IoT_capture = $conf["IOT_CAPTURE"];
194
		$IoT_capture = $conf["IOT_CAPTURE"];
180
		$output = array(); $detail = array(); $nb_ligne = 0;
195
		$output = array(); $detail = array(); $nb_ligne = 0;
181
		exec("sudo /sbin/ip link show ".escapeshellarg($intif), $output); // retrieve ALCASAR @MAC
196
		exec("sudo /sbin/ip link show ".escapeshellarg($intif), $output); // retrieve ALCASAR @MAC
182
		$detail = explode (" " , $output[1]);
197
		$detail = explode (" " , $output[1]);
183
		$intif_mac_addr=strtoupper(str_replace(":","-",$detail[5]));
198
		$intif_mac_addr=strtoupper(str_replace(":","-",$detail[5]));
184
		unset ($output);unset ($detail);
199
		unset ($output);unset ($detail);
185
		exec ('sudo /usr/sbin/chilli_query list|sort -k5 -r', $output); 
200
		exec ('sudo /usr/sbin/chilli_query list|sort -k5 -r', $output); 
-
 
201
		echo "<tbody>";
186
		foreach ($output as $ligne){
202
		foreach ($output as $ligne){
187
			$detail = explode (" ", $ligne);
203
			$detail = explode (" ", $ligne);
188
			$nb_ligne ++;
204
			$nb_ligne ++;
189
			echo "<tr valign=\"middle\">";
205
			echo "<tr valign=\"middle\">";
190
			echo "<td>".$nb_ligne."</td>";
206
			echo "<td>".$nb_ligne."</td>";
Line 303... Line 319...
303
			else echo "<td>&nbsp;</td>"; 
319
			else echo "<td>&nbsp;</td>"; 
304
			}
320
			}
305
			unset ($mac_in_ether_file);
321
			unset ($mac_in_ether_file);
306
			echo "</tr>";
322
			echo "</tr>";
307
		}
323
		}
-
 
324
		echo "</tbody>";
308
		?>
325
		?>
309
	</table>
326
	</table>
310
	</td></tr>
327
	</td></tr>
311
</table>
328
</table>
312
</html>
329
</html>