2007-04-03 14:10:23 +00:00
< ? php
# This file prints a table row for each interface
2007-04-07 21:15:23 +00:00
$if_id = $interface [ 'interface_id' ];
$ifDescr = fixifName ( $interface [ 'ifDescr' ]);
2007-04-03 14:10:23 +00:00
$ifIndex = $interface [ 'ifIndex' ];
2007-04-07 21:15:23 +00:00
$ifAlias = $interface [ 'ifAlias' ];
$ifSpeed = humanspeed ( $interface [ 'ifSpeed' ]);
$ifPhysAddress = $interface [ 'ifPhysAddress' ];
$ifType = fixiftype ( $interface [ 'ifType' ]);
2007-04-09 01:01:48 +00:00
$ifHardType = $interface [ 'ifHardType' ];
# echo($interface['ifHardType']);
2007-04-07 21:15:23 +00:00
if ( $ifAlias ) { $ifAlias = $ifAlias . " </br> " ;}
2007-04-03 14:10:23 +00:00
if ( $bg == " #ffffff " ) { $bg = " #e5e5e5 " ; } else { $bg = " #ffffff " ; }
2007-04-07 21:15:23 +00:00
2007-04-03 14:10:23 +00:00
$graph_url = " graph.php?if= $if_id &from= $twoday &to= $now &width=400&height=120&type=bits " ;
2007-04-07 21:15:23 +00:00
2007-04-03 14:10:23 +00:00
echo ( " <tr style= \" background-color: $bg ; padding: 5px; \" valign=top>
2007-04-04 22:05:52 +00:00
< td valign = top width = 300 >
2007-04-07 21:15:23 +00:00
< span class = list - large >
" . generateiflink( $interface , " $i . $ifDescr " ) . "
</ span >< br />< span class = interface - desc > $ifAlias </ span > " );
2007-04-03 14:10:23 +00:00
unset ( $break );
if ( ! $dographs ) {
2007-04-09 01:01:48 +00:00
$ipdata = mysql_query ( " SELECT * FROM `ipaddr` WHERE `interface_id` = ' " . $interface [ 'interface_id' ] . " ' " );
2007-04-03 14:10:23 +00:00
while ( $ip = mysql_fetch_Array ( $ipdata )) {
echo ( " $break <a class=interface-desc href= \" javascript:popUp('/netcmd.php?cmd=whois&query= $ip[addr] ') \" > $ip[addr] / $ip[cidr] </a> " );
$break = " " ;
}
echo ( " </span> " );
2007-04-04 22:05:52 +00:00
echo ( " </td><td width=70> " );
2007-04-07 21:15:23 +00:00
if ( $ifSpeed && $ifSpeed != " " ) { echo ( " <span class=box-desc> $ifSpeed </span> " ); }
2007-04-09 01:01:48 +00:00
echo ( " <br /> " );
if ( $interface [ ifDuplex ] != unknown ) { echo ( " <span class=box-desc>Duplex " . $interface [ 'ifDuplex' ] . " </span> " ); } else { echo ( " - " ); }
echo ( " </td><td width=150> " );
if ( $ifType && $ifType != " " ) { echo ( " <span class=box-desc> " . $ifType . " </span> " ); } else { echo ( " - " ); }
echo ( " <br /> " );
if ( $ifHardType && $ifHardType != " " ) { echo ( " <span class=box-desc> " . $ifHardType . " </span> " ); } else { echo ( " - " ); }
2007-04-07 19:25:55 +00:00
echo ( " </td><td width=150> " );
2007-04-07 21:15:23 +00:00
if ( $interface [ 'ifPhysAddress' ] && $interface [ 'ifPhysAddress' ] != " " ) { echo ( " <span class=box-desc> " . $interface [ 'ifPhysAddress' ] . " </span> " ); } else { echo ( " - " ); }
2007-04-09 01:01:48 +00:00
echo ( " <br /> " );
2007-04-07 21:15:23 +00:00
if ( $interface [ 'ifMtu' ] && $interface [ 'ifMtu' ] != " " ) { echo ( " <span class=box-desc>MTU " . $interface [ 'ifMtu' ] . " </span> " ); } else { echo ( " - " ); }
2007-04-03 14:10:23 +00:00
}
echo ( " </td> " );
echo ( " <td valign=top class=interface-desc> " );
2007-04-07 21:15:23 +00:00
if ( strpos ( $ifDescr , " oopback " ) === false && ! $dographs ) {
2007-04-09 01:01:48 +00:00
$link_query = mysql_query ( " select * from links AS L, interfaces AS I, devices AS D WHERE L.src_if = ' $if_id ' AND L.dst_if = I.interface_id AND I.device_id = D.device_id " );
2007-04-03 14:10:23 +00:00
while ( $link = mysql_fetch_array ( $link_query )) {
echo ( " <img src='images/16/connect.png' align=absmiddle alt='Directly Connected' /> " . generateiflink ( $link ) . " on " . generatedevicelink ( $link ) . " </a><br /> " );
$br = " <br /> " ;
}
unset ( $br );
$adj_sql = " SELECT * FROM networks AS N, interfaces AS I, adjacencies AS A " ;
2007-04-07 21:15:23 +00:00
$adj_sql = $adj_sql . " WHERE I.interface_id = A.interface_id AND A.network_id = N.id " ;
$adj_sql = $adj_sql . " AND I.interface_id = ' $if_id ' " ;
2007-04-03 14:10:23 +00:00
$adj_query = mysql_query ( " $adj_sql " );
while ( $adjs = mysql_fetch_array ( $adj_query )) {
$network_id = $adjs [ 'network_id' ];
2007-04-07 21:15:23 +00:00
$newsql = " SELECT *, I.interface_id AS iid, D.id AS did FROM adjacencies AS A, networks as N, interfaces as I, devices as D " ;
$newsql = $newsql . " WHERE N.id = ' $network_id ' AND A.network_id = N.id AND I.interface_id = A.interface_id AND D.id = I.device_id " ;
$newsql = $newsql . " AND D.id != ' $device[id] ' AND I.ifDescr NOT LIKE '%loopback%' GROUP BY D.id ORDER BY D.hostname " ;
2007-04-03 14:10:23 +00:00
$new_query = mysql_query ( $newsql );
while ( $new = mysql_fetch_array ( $new_query )) {
if ( $new [ 'status' ] == '0' ) { $class = " red " ; } else { $class = " blue " ; }
if ( $new [ 'ignore' ] == '1' ) {
$class = " grey " ;
if ( $new [ 'status' ] == '1' ) { $class = " green " ; }
}
$this_ifid = $new [ 'iid' ];
$this_hostid = $new [ 'did' ];
$this_hostname = $new [ 'hostname' ];
2007-04-07 21:15:23 +00:00
$this_ifname = fixifName ( $new [ 'ifDescr' ]);
2007-04-03 14:10:23 +00:00
$wq = mysql_query ( " select count(*) FROM links WHERE dst_if = ' $this_ifid ' AND src_if = $if_id ; " );
if ( @ mysql_result ( $wq , 0 ) == '0' && $this_hostname != $hostname ) {
$graph_url = " graph.php?if= $this_ifid &from= $twoday &to= $now &width=400&height=120&type=bits " ;
echo ( " $br <img src='images/16/bullet_go.png' alt='Same Subnet' align=absmiddle /> " . generateiflink ( $new ) . " on " . generatedevicelink ( $new ));
$br = " <br /> " ;
}
}
}
unset ( $br );
}
echo ( " </td></tr> " );
// If we're showing graphs, generate the graph and print the img tags
if ( $dographs && is_file ( " rrd/ " . $hostname . " . " . $ifIndex . " .rrd " )) {
$daily_traffic = " graph.php?if= $if_id &type=bits&from= $day &to= $now &width=210&height=100 " ;
$weekly_traffic = " graph.php?if= $if_id &type=bits&from= $week &to= $now &width=210&height=100 " ;
$monthly_traffic = " graph.php?if= $if_id &type=bits&from= $month &to= $now &width=210&height=100 " ;
$yearly_traffic = " graph.php?if= $if_id &type=bits&from= $year &to= $now &width=210&height=100 " ;
echo ( " <tr style='background-color: $bg ; padding: 5px;'><td colspan=3> " );
echo ( " <img src=' $daily_traffic '> <img src=' $weekly_traffic '> " );
echo ( " <img src=' $monthly_traffic '> <img src=' $yearly_traffic '> " );
echo ( " </td></tr> " );
}
$i ++ ;
?>