2007-04-03 14:10:23 +00:00
<? php
2009-10-28 13:49:37 +00:00
#echo("<pre>");
#print_r($interface);
#echo("</pre>");
2007-04-03 14:10:23 +00:00
# This file prints a table row for each interface
2007-06-24 14:56:47 +00:00
$interface [ 'device_id' ] = $device [ 'device_id' ];
$interface [ 'hostname' ] = $device [ 'hostname' ];
2007-04-07 21:15:23 +00:00
$if_id = $interface [ 'interface_id' ];
2008-11-05 15:24:44 +00:00
2010-02-02 19:24:12 +00:00
$interface = ifLabel ( $interface );
2009-07-31 10:53:54 +00:00
if ( ! is_integer ( $i / 2 )) { $row_colour = $list_colour_a ; } else { $row_colour = $list_colour_b ; }
2007-04-07 21:15:23 +00:00
2010-07-18 11:38:38 +00:00
$port_adsl_query = mysql_query ( "SELECT * FROM `ports_adsl` WHERE `interface_id` = '" . $interface [ 'interface_id' ] . "'" );
$port_adsl = mysql_fetch_assoc ( $port_adsl_query );
2009-10-28 13:49:37 +00:00
if ( $interface [ 'ifInErrors_delta' ] > 0 || $interface [ 'ifOutErrors_delta' ] > 0 ) {
$error_img = generateiflink ( $interface , "<img src='images/16/chart_curve_error.png' alt='Interface Errors' border=0>" , "port_errors" );
2007-06-24 14:56:47 +00:00
} else { $error_img = "" ; }
2009-09-24 14:38:17 +00:00
if ( mysql_result ( mysql_query ( "SELECT count(*) FROM mac_accounting WHERE interface_id = '" . $interface [ 'interface_id' ] . "'" ), 0 )){
$mac = "<a href='device/" . $interface [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "/macaccounting/'><img src='/images/16/chart_curve.png' align='absmiddle'></a>" ;
} else { $mac = "" ; }
2009-07-31 10:53:54 +00:00
echo ( "<tr style= \" background-color: $row_colour ; padding: 5px; \" valign=top onmouseover= \" this.style.backgroundColor=' $list_highlight '; \" onmouseout= \" this.style.backgroundColor=' $row_colour '; \" onclick= \" location.href='/device/" . $device [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "/' \" style='cursor: hand;'>
2010-02-13 07:40:43 +00:00
<td valign=top width=350>" );
2008-10-28 18:25:53 +00:00
echo ( " <span class=list-large>
2010-02-02 19:24:12 +00:00
" . generateiflink ( $interface , $interface [ 'ifIndex' ] . ". " . $interface [ 'label' ]) . " $error_img $mac
2008-11-05 15:24:44 +00:00
2009-04-23 21:13:56 +00:00
</span><br /><span class=interface-desc>" . $interface [ 'ifAlias' ] . "</span>" );
2008-03-31 13:08:17 +00:00
2009-04-23 21:13:56 +00:00
if ( $interface [ 'ifAlias' ]) { echo ( "<br />" ); }
2008-03-31 13:08:17 +00:00
2007-04-03 14:10:23 +00:00
unset ( $break );
2009-04-23 21:13:56 +00:00
if ( $port_details ) {
2009-04-13 19:16:22 +00:00
$ipdata = mysql_query ( "SELECT * FROM `ipv4_addresses` WHERE `interface_id` = '" . $interface [ 'interface_id' ] . "'" );
2007-04-03 14:10:23 +00:00
while ( $ip = mysql_fetch_Array ( $ipdata )) {
2009-04-13 19:16:22 +00:00
echo ( " $break <a class=interface-desc href= \" javascript:popUp('/netcmd.php?cmd=whois&query= $ip[ipv4_address] ') \" > $ip[ipv4_address] / $ip[ipv4_prefixlen] </a>" );
2008-03-31 13:08:17 +00:00
$break = "<br />" ;
2008-04-13 16:27:05 +00:00
}
2009-04-13 19:16:22 +00:00
$ip6data = mysql_query ( "SELECT * FROM `ipv6_addresses` WHERE `interface_id` = '" . $interface [ 'interface_id' ] . "'" );
2008-04-13 16:27:05 +00:00
while ( $ip6 = mysql_fetch_Array ( $ip6data )) {
2009-04-13 19:16:22 +00:00
echo ( " $break <a class=interface-desc href= \" javascript:popUp('/netcmd.php?cmd=whois&query=" . $ip6 [ 'ipv6_address' ] . "') \" >" . Net_IPv6 :: compress ( $ip6 [ 'ipv6_address' ]) . "/" . $ip6 [ 'ipv6_prefixlen' ] . "</a>" );
2008-04-13 16:27:05 +00:00
$break = "<br />" ;
}
2009-04-23 21:13:56 +00:00
}
2007-04-03 14:10:23 +00:00
echo ( "</span>" );
2009-02-02 15:38:34 +00:00
echo ( "</td><td width=100>" );
2009-09-24 14:38:17 +00:00
if ( $port_details ) {
2009-10-28 13:49:37 +00:00
$interface [ 'graph_type' ] = "port_bits" ;
2010-08-01 00:38:01 +00:00
echo ( generateiflink ( $interface , "<img src='graph.php?type=port_bits&id=" . $interface [ 'interface_id' ] . "&from=" . $day . "&to=" . $now . "&width=100&height=20&legend=no&bg=" . str_replace ( "#" , "" , $row_colour ) . "'>" , $interface [ 'graph_type' ]));
2009-10-28 13:49:37 +00:00
$interface [ 'graph_type' ] = "port_upkts" ;
2010-08-01 00:38:01 +00:00
echo ( generateiflink ( $interface , "<img src='graph.php?type=port_upkts&id=" . $interface [ 'interface_id' ] . "&from=" . $day . "&to=" . $now . "&width=100&height=20&legend=no&bg=" . str_replace ( "#" , "" , $row_colour ) . "'>" , $interface [ 'graph_type' ]));
2009-10-28 13:49:37 +00:00
$interface [ 'graph_type' ] = "port_errors" ;
2010-08-01 00:38:01 +00:00
echo ( generateiflink ( $interface , "<img src='graph.php?type=port_errors&id=" . $interface [ 'interface_id' ] . "&from=" . $day . "&to=" . $now . "&width=100&height=20&legend=no&bg=" . str_replace ( "#" , "" , $row_colour ) . "'>" , $interface [ 'graph_type' ]));
2009-02-02 15:38:34 +00:00
}
2008-09-25 13:54:58 +00:00
echo ( "</td><td width=120>" );
2007-06-24 14:56:47 +00:00
if ( $interface [ 'ifOperStatus' ] == "up" ) {
2009-10-28 13:49:37 +00:00
$interface [ 'in_rate' ] = $interface [ 'ifInOctets_rate' ] * 8 ;
$interface [ 'out_rate' ] = $interface [ 'ifOutOctets_rate' ] * 8 ;
2007-06-24 16:45:18 +00:00
$in_perc = @ round ( $interface [ 'in_rate' ] / $interface [ 'ifSpeed' ] * 100 );
$out_perc = @ round ( $interface [ 'in_rate' ] / $interface [ 'ifSpeed' ] * 100 );
2010-02-13 07:40:43 +00:00
echo ( "<img src='images/16/arrow_left.png' align=absmiddle> <span style='color: " . percent_colour ( $in_perc ) . "'>" . formatRates ( $interface [ 'in_rate' ]) . "<br />
<img align=absmiddle src='images/16/arrow_out.png'> <span style='color: " . percent_colour ( $out_perc ) . "'>" . formatRates ( $interface [ 'out_rate' ]) . "<br />
<img src='images/icons/arrow_pps_in.png' align=absmiddle> " . format_bi ( $interface [ 'ifInUcastPkts_rate' ]) . "pps</span><br />
<img src='images/icons/arrow_pps_out.png' align=absmiddle> " . format_bi ( $interface [ 'ifOutUcastPkts_rate' ]) . "pps</span>" );
2007-06-24 14:56:47 +00:00
}
2009-04-23 21:13:56 +00:00
echo ( "</td><td width=75>" );
2010-07-28 17:37:11 +00:00
if ( $interface [ 'ifSpeed' ]) { echo ( "<span class=box-desc>" . humanspeed ( $interface [ 'ifSpeed' ]) . "</span>" ); }
2007-04-09 01:01:48 +00:00
echo ( "<br />" );
2009-04-23 21:13:56 +00:00
2010-07-28 17:37:11 +00:00
if ( $interface [ ifDuplex ] != "unknown" ) { echo ( "<span class=box-desc>" . $interface [ 'ifDuplex' ] . "</span>" ); } else { echo ( "-" ); }
2007-04-15 14:38:26 +00:00
2009-11-28 09:48:23 +00:00
if ( $device [ 'os' ] == "ios" || $device [ 'os' ] == "iosxe" ) {
2009-03-02 18:12:09 +00:00
if ( $interface [ 'ifTrunk' ]) {
echo ( "<span class=box-desc><span class=red>" . $interface [ 'ifTrunk' ] . "</span></span>" );
} elseif ( $interface [ 'ifVlan' ]) {
echo ( "<span class=box-desc><span class=blue>VLAN " . $interface [ 'ifVlan' ] . "</span></span>" );
2008-10-28 22:06:00 +00:00
} elseif ( $interface [ 'ifVrf' ]) {
$vrf = mysql_fetch_array ( mysql_query ( "SELECT * FROM vrfs WHERE vrf_id = '" . $interface [ 'ifVrf' ] . "'" ));
echo ( "<span style='color: green;'>" . $vrf [ 'vrf_name' ] . "</span>" );
2009-03-02 18:12:09 +00:00
}
2007-04-15 14:38:26 +00:00
}
2010-07-18 11:38:38 +00:00
2010-07-28 17:37:11 +00:00
if ( $port_adsl [ 'adslLineCoding' ]) {
2010-07-18 11:38:38 +00:00
echo ( "</td><td width=150>" );
echo ( $port_adsl [ 'adslLineCoding' ] . "/" . $port_adsl [ 'adslLineType' ]);
echo ( "<br />" );
echo ( "Sync:" . formatRates ( $port_adsl [ 'adslAtucChanCurrTxRate' ]) . "/" . formatRates ( $port_adsl [ 'adslAturChanCurrTxRate' ]));
echo ( "<br />" );
echo ( "Max:" . formatRates ( $port_adsl [ 'adslAtucCurrAttainableRate' ]) . "/" . formatRates ( $port_adsl [ 'adslAturCurrAttainableRate' ]));
echo ( "</td><td width=150>" );
echo ( "Atten:" . $port_adsl [ 'adslAtucCurrAtn' ] . "dB/" . $port_adsl [ 'adslAturCurrAtn' ] . "dB" );
echo ( "<br />" );
echo ( "SNR:" . $port_adsl [ 'adslAtucCurrSnrMgn' ] . "dB/" . $port_adsl [ 'adslAturCurrSnrMgn' ] . "dB" );
} else {
echo ( "</td><td width=150>" );
if ( $interface [ 'ifType' ] && $interface [ 'ifType' ] != "" ) { echo ( "<span class=box-desc>" . fixiftype ( $interface [ 'ifType' ]) . "</span>" ); } else { echo ( "-" ); }
echo ( "<br />" );
if ( $ifHardType && $ifHardType != "" ) { echo ( "<span class=box-desc>" . $ifHardType . "</span>" ); } else { echo ( "-" ); }
echo ( "</td><td width=150>" );
if ( $interface [ 'ifPhysAddress' ] && $interface [ 'ifPhysAddress' ] != "" ) { echo ( "<span class=box-desc>" . $interface [ 'ifPhysAddress' ] . "</span>" ); } else { echo ( "-" ); }
echo ( "<br />" );
if ( $interface [ 'ifMtu' ] && $interface [ 'ifMtu' ] != "" ) { echo ( "<span class=box-desc>MTU " . $interface [ 'ifMtu' ] . "</span>" ); } else { echo ( "-" ); }
}
2009-04-23 21:13:56 +00:00
#}
2007-04-03 14:10:23 +00:00
echo ( "</td>" );
2008-03-22 13:30:33 +00:00
echo ( "<td width=375 valign=top class=interface-desc>" );
2009-09-18 09:11:52 +00:00
if ( strpos ( $interface [ 'label' ], "oopback" ) === false && ! $graph_type ) {
2010-02-20 17:22:22 +00:00
$link_query = mysql_query ( "select * from links AS L, ports AS I, devices AS D WHERE L.local_interface_id = ' $if_id ' AND L.remote_interface_id = 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 )) {
2009-09-18 09:11:52 +00:00
# echo("<img src='images/16/connect.png' align=absmiddle alt='Directly Connected' /> " . generateiflink($link, makeshortif($link['label'])) . " on " . generatedevicelink($link, shorthost($link['hostname'])) . "</a><br />");
2008-04-13 16:27:05 +00:00
# $br = "<br />";
$int_links [ $link [ 'interface_id' ]] = $link [ 'interface_id' ];
$int_links_phys [ $link [ 'interface_id' ]] = 1 ;
2007-04-03 14:10:23 +00:00
}
2008-04-13 16:27:05 +00:00
2007-04-03 14:10:23 +00:00
unset ( $br );
2008-04-13 16:27:05 +00:00
2009-04-23 21:13:56 +00:00
if ( $port_details ) { ## Show which other devices are on the same subnet as this interface
2009-04-13 19:16:22 +00:00
$sql = "SELECT `ipv4_network_id` FROM `ipv4_addresses` WHERE `interface_id` = '" . $interface [ 'interface_id' ] . "' AND `ipv4_address` NOT LIKE '127.%'" ;
$nets_query = mysql_query ( $sql );
while ( $net = mysql_fetch_array ( $nets_query )) {
$ipv4_network_id = $net [ 'ipv4_network_id' ];
2010-02-20 17:22:22 +00:00
$sql = "SELECT I.interface_id FROM ipv4_addresses AS A, ports AS I, devices AS D
2009-04-13 19:16:22 +00:00
WHERE A.interface_id = I.interface_id
AND A.ipv4_network_id = '" . $net [ 'ipv4_network_id' ] . "' AND D.device_id = I.device_id
AND D.device_id != '" . $device [ 'device_id' ] . "'" ;
$new_query = mysql_query ( $sql );
while ( $new = mysql_fetch_array ( $new_query )) {
echo ( $new [ 'ipv4_network_id' ]);
2007-04-09 01:05:37 +00:00
$this_ifid = $new [ 'interface_id' ];
$this_hostid = $new [ 'device_id' ];
2007-04-03 14:10:23 +00:00
$this_hostname = $new [ 'hostname' ];
2009-09-18 09:11:52 +00:00
$this_ifname = fixifName ( $new [ 'label' ]);
2009-04-13 19:16:22 +00:00
$int_links [ $this_ifid ] = $this_ifid ;
2008-04-13 16:27:05 +00:00
$int_links_v4 [ $this_ifid ] = 1 ;
2007-04-03 14:10:23 +00:00
}
}
2008-04-13 16:27:05 +00:00
2009-04-13 19:16:22 +00:00
$sql = "SELECT ipv6_network_id FROM ipv6_addresses WHERE interface_id = '" . $interface [ 'interface_id' ] . "'" ;
2008-04-13 16:27:05 +00:00
$nets_query = mysql_query ( $sql );
while ( $net = mysql_fetch_array ( $nets_query )) {
2009-04-13 19:16:22 +00:00
$ipv6_network_id = $net [ 'ipv6_network_id' ];
2010-02-20 17:22:22 +00:00
$sql = "SELECT I.interface_id FROM ipv6_addresses AS A, ports AS I, devices AS D
2009-04-13 19:16:22 +00:00
WHERE A.interface_id = I.interface_id
AND A.ipv6_network_id = '" . $net [ 'ipv6_network_id' ] . "' AND D.device_id = I.device_id
AND D.device_id != '" . $device [ 'device_id' ] . "' AND A.ipv6_origin != 'linklayer' AND A.ipv6_origin != 'wellknown'" ;
2008-04-13 16:27:05 +00:00
$new_query = mysql_query ( $sql );
2009-04-13 19:16:22 +00:00
while ( $new = mysql_fetch_array ( $new_query )) {
echo ( $new [ 'ipv6_network_id' ]);
2008-04-13 16:27:05 +00:00
$this_ifid = $new [ 'interface_id' ];
$this_hostid = $new [ 'device_id' ];
$this_hostname = $new [ 'hostname' ];
2009-09-18 09:11:52 +00:00
$this_ifname = fixifName ( $new [ 'label' ]);
2008-04-13 16:27:05 +00:00
$int_links [ $this_ifid ] = $this_ifid ;
$int_links_v6 [ $this_ifid ] = 1 ;
}
}
2009-04-23 21:13:56 +00:00
}
2008-04-13 16:27:05 +00:00
foreach ( $int_links as $int_link ) {
2010-02-20 17:22:22 +00:00
$link_if = mysql_fetch_array ( mysql_query ( "SELECT * from ports AS I, devices AS D WHERE I.device_id = D.device_id and I.interface_id = '" . $int_link . "'" ));
2008-04-13 16:27:05 +00:00
echo ( " $br " );
if ( $int_links_phys [ $int_link ]) { echo ( "<img align=absmiddle src='images/16/connect.png'> " ); } else {
echo ( "<img align=absmiddle src='images/16/bullet_go.png'> " ); }
2009-09-18 09:11:52 +00:00
echo ( "<b>" . generateiflink ( $link_if , makeshortif ( $link_if [ 'label' ])) . " on " . generatedevicelink ( $link_if , shorthost ( $link_if [ 'hostname' ])) );
2008-04-13 16:27:05 +00:00
if ( $int_links_v6 [ $int_link ]) { echo ( " <b style='color: #a10000;'>v6</b>" ); }
if ( $int_links_v4 [ $int_link ]) { echo ( " <b style='color: #00a100'>v4</b>" ); }
$br = "<br />" ;
}
2009-10-13 20:07:31 +00:00
# unset($int_links, $int_links_v6, $int_links_v4, $int_links_phys, $br);
2008-04-13 16:27:05 +00:00
2008-04-14 09:32:54 +00:00
}
2008-10-28 18:25:53 +00:00
$pseudowires = mysql_query ( "SELECT * FROM `pseudowires` WHERE `interface_id` = '" . $interface [ 'interface_id' ] . "'" );
while ( $pseudowire = mysql_fetch_array ( $pseudowires )) {
#`interface_id`,`peer_device_id`,`peer_ldp_id`,`cpwVcID`,`cpwOid`
$pw_peer_dev = mysql_fetch_array ( mysql_query ( "SELECT * from `devices` WHERE `device_id` = '" . $pseudowire [ 'peer_device_id' ] . "'" ));
2010-02-20 17:22:22 +00:00
$pw_peer_int = mysql_fetch_array ( mysql_query ( "SELECT * from `ports` AS I, pseudowires AS P WHERE I.device_id = '" . $pseudowire [ 'peer_device_id' ] . "' AND
2008-10-28 18:25:53 +00:00
P.cpwVcID = '" . $pseudowire [ 'cpwVcID' ] . "' AND
P.interface_id = I.interface_id" ));
2009-09-18 09:11:52 +00:00
$pw_peer_int = ifNameDescr ( $pw_peer_int );
2009-10-13 20:07:31 +00:00
echo ( " $br <img src='images/16/arrow_switch.png' align=absmiddle><b> " . generateiflink ( $pw_peer_int , makeshortif ( $pw_peer_int [ 'label' ])) . " on " . generatedevicelink ( $pw_peer_dev , shorthost ( $pw_peer_dev [ 'hostname' ])) . "</b>" );
$br = "<br />" ;
2008-10-28 18:25:53 +00:00
}
2010-02-20 17:22:22 +00:00
$members = mysql_query ( "SELECT * FROM `ports` WHERE `pagpGroupIfIndex` = '" . $interface [ 'ifIndex' ] . "' and `device_id` = '" . $device [ 'device_id' ] . "'" );
2009-10-13 20:07:31 +00:00
while ( $member = mysql_fetch_array ( $members )) {
echo ( " $br <img src='images/16/brick_link.png' align=absmiddle> <strong>" . generateiflink ( $member ) . " (PAgP)</strong>" );
$br = "<br />" ;
}
if ( $interface [ 'pagpGroupIfIndex' ] && $interface [ 'pagpGroupIfIndex' ] != $interface [ 'ifIndex' ]) {
2010-02-20 17:22:22 +00:00
$parent = mysql_fetch_array ( mysql_query ( "SELECT * FROM `ports` WHERE `ifIndex` = '" . $interface [ 'pagpGroupIfIndex' ] . "' and `device_id` = '" . $device [ 'device_id' ] . "'" ));
2009-10-13 20:07:31 +00:00
echo ( " $br <img src='images/16/bricks.png' align=absmiddle> <strong>" . generateiflink ( $parent ) . " (PAgP)</strong>" );
$br = "<br />" ;
}
unset ( $int_links , $int_links_v6 , $int_links_v4 , $int_links_phys , $br );
2007-04-03 14:10:23 +00:00
echo ( "</td></tr>" );
// If we're showing graphs, generate the graph and print the img tags
2010-02-25 01:30:07 +00:00
if ( $graph_type == "etherlike" )
{
$graph_file = $config [ 'rrd_dir' ] . "/" . $device [ 'hostname' ] . "/etherlike-" . safename ( $interface [ 'ifIndex' ]) . ".rrd" ;
} else {
$graph_file = $config [ 'rrd_dir' ] . "/" . $device [ 'hostname' ] . "/" . safename ( $interface [ 'ifIndex' ]) . ".rrd" ;
}
if ( $graph_type && is_file ( $graph_file )) {
2007-06-24 14:56:47 +00:00
2009-03-25 15:29:47 +00:00
$type = $graph_type ;
2007-06-24 14:56:47 +00:00
2009-10-28 13:49:37 +00:00
$daily_traffic = "graph.php?port= $if_id &type=" . $graph_type . "&from= $day &to= $now &width=210&height=100" ;
$daily_url = "graph.php?port= $if_id &type=" . $graph_type . "&from= $day &to= $now &width=500&height=150" ;
2007-06-24 14:56:47 +00:00
2009-10-28 13:49:37 +00:00
$weekly_traffic = "graph.php?port= $if_id &type=" . $graph_type . "&from= $week &to= $now &width=210&height=100" ;
$weekly_url = "graph.php?port= $if_id &type=" . $graph_type . "&from= $week &to= $now &width=500&height=150" ;
2007-06-24 14:56:47 +00:00
2009-10-28 13:49:37 +00:00
$monthly_traffic = "graph.php?port= $if_id &type=" . $graph_type . "&from= $month &to= $now &width=210&height=100" ;
$monthly_url = "graph.php?port= $if_id &type=" . $graph_type . "&from= $month &to= $now &width=500&height=150" ;
2007-06-24 14:56:47 +00:00
2009-10-28 13:49:37 +00:00
$yearly_traffic = "graph.php?port= $if_id &type=" . $graph_type . "&from= $year &to= $now &width=210&height=100" ;
$yearly_url = "graph.php?port= $if_id &type=" . $graph_type . "&from= $year &to= $now &width=500&height=150" ;
2007-06-24 14:56:47 +00:00
2009-04-23 21:13:56 +00:00
echo ( "<tr style='background-color: $bg ; padding: 5px;'><td colspan=7>" );
2007-06-24 14:56:47 +00:00
2010-03-23 10:55:23 +00:00
echo ( "<a href='device/" . $interface [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "' onmouseover= \" return overlib('<img src=\' $daily_url \'>', LEFT" . $config [ 'overlib_defaults' ] . "); \"
2007-06-24 14:56:47 +00:00
onmouseout= \" return nd(); \" > <img src=' $daily_traffic ' border=0></a>" );
2010-03-23 10:55:23 +00:00
echo ( "<a href='device/" . $interface [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "' onmouseover= \" return overlib('<img src=\' $weekly_url \'>', LEFT" . $config [ 'overlib_defaults' ] . "); \"
2007-06-24 14:56:47 +00:00
onmouseout= \" return nd(); \" > <img src=' $weekly_traffic ' border=0></a>" );
2010-03-23 10:55:23 +00:00
echo ( "<a href='device/" . $interface [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "' onmouseover= \" return overlib('<img src=\' $monthly_url \'>', LEFT, WIDTH, 350" . $config [ 'overlib_defaults' ] . "); \"
2007-06-24 14:56:47 +00:00
onmouseout= \" return nd(); \" > <img src=' $monthly_traffic ' border=0></a>" );
2010-03-23 10:55:23 +00:00
echo ( "<a href='device/" . $interface [ 'device_id' ] . "/interface/" . $interface [ 'interface_id' ] . "' onmouseover= \" return overlib('<img src=\' $yearly_url \'>', LEFT, WIDTH, 350" . $config [ 'overlib_defaults' ] . "); \"
2007-06-24 14:56:47 +00:00
onmouseout= \" return nd(); \" > <img src=' $yearly_traffic ' border=0></a>" );
echo ( "</td></tr>" );
2007-04-03 14:10:23 +00:00
}
2009-07-31 10:53:54 +00:00
?>