"; } ?>

Traffic Monitoring

Top Destination IPs

Busiest Internal IPs by number of inbound connections

YOU MUST SELECT A SERVICE TO VIEW DATA!

Data displayed here is from the last 30 minutes, and is updated every 5 minutes.

$id - $name"; } //Check Connection if ($conn->connect_error) { die("Connection Failed: " . $conn->connect_error); } $conn->close(); ?>

For which service would you like to see data?

(UNIX_TIMESTAMP() - 1800) GROUP BY dst_ip ORDER BY COUNT(DISTINCT(src_ip)) DESC LIMIT 50"; $result = $conn2->query($sql); //If there are results, display them in a table if ($result->num_rows >0) { echo "Now viewing data for Destination Port $varPort"; echo "
"; echo ""; while ($row = $result->fetch_assoc()) { echo ""; } echo "
Destination IP# of sources# of connectionsDestination NetblockSource IPs
".$row["dst_ip"]."".$row["COUNT(DISTINCT(src_ip))"]."".$row["COUNT(dst_ip)"]."NetblockList
"; } else { echo "No Results, something is likely broken."; } $conn2->close(); ?>