mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
23 lines
808 B
HTML
23 lines
808 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src="/ports.js"></script>
|
|
<script src="/main.js"></script>
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>FreeSwitchOS Port Statistics</title>
|
|
</head>
|
|
<body>
|
|
<ul> <li><a href="index.html">Overview</a></li> <li><a href="stat.html">Port Statisitcs</a></li>
|
|
<li><a href="vlan.html">VLAN</a></li> <li><a href="mirror.html">Mirroring</a></li>
|
|
<li><a href="trunk.html">Port Aggregation</a></li></ul>
|
|
<div style="margin-left:16%;padding:1px 16px;height:1000px;">
|
|
<div id="ports"></div>
|
|
<h1>Port Statistics</h1>
|
|
<table id="statstable">
|
|
<tr> <th>Port</th> <th>link</th> <th>TX Good</th> <th>TX Bad</th> <th>RX Good</th> <th>RX Bad</th> </tr>
|
|
<script src="/stat.js"></script>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|