Files
librenms-librenms/html/pages/interface.php
T

76 lines
2.2 KiB
PHP
Raw Normal View History

2007-04-03 14:10:23 +00:00
<?
2007-04-09 01:01:48 +00:00
$interface_query = mysql_query("select * from interfaces WHERE interface_id = '$_GET[id]'");
2007-04-03 14:10:23 +00:00
$interface = mysql_fetch_array($interface_query);
2007-04-09 01:58:25 +00:00
$device_query = mysql_query("SELECT * FROM `devices` WHERE `device_id` = '" . $interface['device_id'] . "'");
2007-04-03 14:10:23 +00:00
$device = mysql_fetch_array($device_query);
$hostname = $device['hostname'];
2007-04-09 01:01:48 +00:00
$hostid = $device['interface_id'];
$ifname = $interface['ifDescr'];
2007-04-03 14:10:23 +00:00
$ifIndex = $interface['ifIndex'];
$speed = humanspeed($interface['ifSpeed']);
$ifalias = $interface['name'];
if($interface['ifPhysAddress']) { $mac = "$interface[ifPhysAddress]"; }
$color = "black";
2007-04-09 01:01:48 +00:00
if ($interface['ifAdminStatus'] == "down") { $status = "<span class='grey'>Disabled</span>"; }
if ($interface['ifAdminStatus'] == "up" && $interface['ifOperStatus'] == "down") { $status = "<span class='red'>Enabled / Disconnected</span>"; }
if ($interface['ifAdminStatus'] == "up" && $interface['ifOperStatus'] == "up") { $status = "<span class='green'>Enabled / Connected</span>"; }
2007-04-03 14:10:23 +00:00
$i = 1;
$inf = fixifName($ifname);
2007-04-09 01:58:25 +00:00
$bg="#ffffff";
2007-04-03 14:10:23 +00:00
echo("<table cellpadding=7 cellspacing=0 class=devicetable width=100%>");
include("includes/device-header.inc");
echo("</table>");
$show_all = 1;
echo("<div class=ifcell style='margin: 5px;'><table width=100% cellpadding=10 border=0 cellspacing=0>");
include("includes/print-interface.inc");
echo("</table></div>");
$pos = strpos(strtolower($ifname), "vlan");
if( $pos !== false ) {
$broke = yes;
}
$pos = strpos(strtolower($ifname), "loopback");
if( $pos !== false ) {
$broke = yes;
}
if( !$broke)
{ }
echo("<div style='clear: both;'>");
2008-03-14 12:11:17 +00:00
if(file_exists("rrd/" . $hostname . "/". $ifIndex . ".rrd")) {
2007-04-03 14:10:23 +00:00
$iid = $id;
echo("<div class=graphhead>Interface Traffic</div>");
$graph_type = "bits";
include("includes/print-interface-graphs.php");
echo("<div class=graphhead>Interface Packets</div>");
$graph_type = "pkts";
include("includes/print-interface-graphs.php");
echo("<div class=graphhead>Interface Non Unicast</div>");
$graph_type = "nupkts";
include("includes/print-interface-graphs.php");
echo("<div class=graphhead>Interface Errors</div>");
$graph_type = "errors";
include("includes/print-interface-graphs.php");
}
?>