-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexample.php
80 lines (65 loc) · 2.22 KB
/
example.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
68
69
70
71
72
73
74
75
76
77
78
79
<?php
$router_address = '192.168.1.1';
$router_user = 'api';
$router_pass = 'api';
require('routeros_api.class.php');
$API = new routeros_api();
$API->debug = false;
if ($API->connect($router_address, $router_user, $router_pass)) {
function ping($address, $rm)
{
global $API;
$PING = $API->comm("/ping", array(
"address" => "$address",
"count" => "2",
"routing-table" => "$rm"
));
$response = $PING['0']['avg-rtt'] ." ms";
echo ltrim($response, 0);
}
function queue($rm)
{
global $API;
$QUEUE = $API->comm("/queue/simple/print");
$MANGLE = $API->comm("/ip/firewall/mangle/print");
foreach ($QUEUE as $row) {
if ($row['rate'] == '0bps/0bps') { continue; }
foreach($MANGLE as $row1) {
if (isset($row['target']) && isset($row1['src-address']) && isset($row1['new-connection-mark'])) {
$target = $row['target'];
$srcaddress = $row1['src-address'];
if (strtok("$target", '/') == strtok("$srcaddress", '/') && $row1['new-connection-mark'] == $rm) {
echo "
<tr>
<td>" . $row['name'] . "</td>
<td>" . $row['target'] . "</td>
<td>" . $row['rate'] . "</td>
<td>" . $row['max-limit'] . "</td>
</tr>";
}}
}
}
#print_r($QUEUE);
#print_r($MANGLE);
}
# Actions
if (isset($_GET['action'])) {
switch ($_GET['action']) {
case "ping":
if ($_GET['action'] === 'ping' && isset($_GET['address']) && isset($_GET['rm'])) {
ping($_GET['address'], $_GET['rm']);
}
break;
case "queue":
if ($_GET['action'] === 'queue' && isset($_GET['rm'])) {
queue($_GET['rm']);
}
break;
}
}
$API->disconnect();
# ROS Connect
} else {
echo 'Unable to connect to RouterOS';
}
?>