From 20705a550df5b13a544dc0865c6aef16e64c99d9 Mon Sep 17 00:00:00 2001 From: ShevAbam Date: Wed, 18 Jun 2014 10:11:11 +0200 Subject: + First commit (version 2.0) --- libs/network.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libs/network.php (limited to 'libs/network.php') diff --git a/libs/network.php b/libs/network.php new file mode 100644 index 0000000..12521bf --- /dev/null +++ b/libs/network.php @@ -0,0 +1,32 @@ + 'N.A', 'ip' => 'N.A'); +} +else +{ + exec('/sbin/ifconfig | awk \'/inet / {print $2}\' | cut -d \':\' -f2', $getIps); + + foreach ($getInterfaces as $key => $interface) + { + // Get transmit and receive datas by interface + exec('cat /sys/class/net/'.$interface.'/statistics/tx_bytes', $getBandwidth_tx); + exec('cat /sys/class/net/'.$interface.'/statistics/rx_bytes', $getBandwidth_rx); + + $datas[] = array( + 'interface' => $interface, + 'ip' => $getIps[$key], + 'transmit' => Misc::getSize($getBandwidth_tx[0]), + 'receive' => Misc::getSize($getBandwidth_rx[0]), + ); + + unset($getBandwidth_tx, $getBandwidth_rx); + } +} + + +echo json_encode($datas); \ No newline at end of file -- cgit v1.3