forked from techknowio/nvidiaoverclockscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (66 loc) · 1.74 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
//snmpset -v 3 -n "" -Dusm -u localadmin -a MD5 -A localadmin -l authPriv -x DES -X localadmin 192.168.99.156 1.3.6.1.4.1.850.100.1.10.2.1.4.2 integer 2
$db = new PDO('mysql:host=localhost;dbname=gpuMiners;charset=utf8mb4', 'x', 'x');
?>
<html>
<title>Miners</title>
<script>
function reboot(id) {
alert("Reboot is coming soon!");
}
</script>
<body>
<table border="1">
<tr>
<td>Mac Address</td>
<td>Address</td>
<td>Last Updated</td>
<td>Hashrate</td>
<td>Down Count</td>
<td>Switch Port</td>
<td>Actions</td>
</tr>
<?php
$th = 0;
$sql = "select * from currentHashes";
foreach($db->query($sql) as $row) {
if ($row['down'] == 0) {
echo "<tr>\n";
echo "<td>".$row['macAddress']."</td>";
echo "<td>".$row['ip']."</td>";
echo "<td>".$row['lastUpdated']."</td>";
echo "<td>".$row['hashrate']."</td>";
echo "<td>".$row['downCount']."</td>";
echo "<td>".$row['switchPort']."</td>";
echo "<td><input type=\"button\" value=\"Reboot\" onClick=\"reboot('".$row['id']."')\"></td>";
echo "</tr>\n";
$th += $row['hashrate'];
} else {
echo "<tr bgcolor=\"red\">\n";
echo "<td>".$row['macAddress']."</td>";
echo "<td>".$row['ip']."</td>";
echo "<td>".$row['lastUpdated']."</td>";
echo "<td>0</td>";
echo "<td>".$row['downCount']."</td>";
echo "<td>".$row['switchPort']."</td>";
echo "<td><input type=\"button\" value=\"Reboot\" onClick=\"reboot('".$row['id']."')\"></td>";
echo "</tr>\n";
}
}
if ($th >= 1000) {
$th = round($th/1000,2) ." GH/s";
} else {
$th = $th . " MH/s";
}
?>
<tr>
<td colspan="3">Total Hash Rate</td>
<td><?php echo $th ?></td>
<td colspan="3"></td>
</tr>
</table>
<br />
<br />
<a href="https://ethermine.org/miners/C352455DbA90d0520A7667f8aBfd270b2943DDf2" target="_blank">Ethmine.org Stats</a>
</body>
</html>