2011-04-27 17:42:11 +00:00
< ? php
2007-04-03 14:10:23 +00:00
2015-07-13 20:10:26 +02:00
// This file prints a table row for each interface
2011-09-18 13:11:04 +00:00
$port [ 'device_id' ] = $device [ 'device_id' ];
2015-07-13 20:10:26 +02:00
$port [ 'hostname' ] = $device [ 'hostname' ];
2008-11-05 15:24:44 +00:00
2012-05-16 13:25:50 +00:00
$if_id = $port [ 'port_id' ];
2010-02-02 19:24:12 +00:00
2011-09-18 13:11:04 +00:00
$port = ifLabel ( $port );
2007-04-07 21:15:23 +00:00
2015-07-13 20:10:26 +02:00
if ( $int_colour ) {
$row_colour = $int_colour ;
}
else {
if ( ! is_integer ( $i / 2 )) {
$row_colour = $list_colour_a ;
}
else {
$row_colour = $list_colour_b ;
}
2011-05-01 12:37:43 +00:00
}
2010-07-18 11:38:38 +00:00
2015-07-13 20:10:26 +02:00
$port_adsl = dbFetchRow ( 'SELECT * FROM `ports_adsl` WHERE `port_id` = ?' , array ( $port [ 'port_id' ]));
if ( $port [ 'ifInErrors_delta' ] > 0 || $port [ 'ifOutErrors_delta' ] > 0 ) {
$error_img = generate_port_link ( $port , " <img src='images/16/chart_curve_error.png' alt='Interface Errors' border=0> " , 'port_errors' );
}
else {
$error_img = '' ;
2011-03-17 11:29:23 +00:00
}
2015-07-13 20:10:26 +02:00
if ( dbFetchCell ( 'SELECT COUNT(*) FROM `mac_accounting` WHERE `port_id` = ?' , array ( $port [ 'port_id' ]))) {
2015-08-11 14:54:05 -07:00
$mac = " <a href=' " . generate_port_url ( $port , array ( 'view' => 'macaccounting' )) . " '><img src='images/16/chart_curve.png' align='absmiddle'></a> " ;
2015-07-13 20:10:26 +02:00
}
else {
$mac = '' ;
}
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
echo " <tr style= \" background-color: $row_colour ; \" valign=top onmouseover= \" this.style.backgroundColor=' $list_highlight '; \" onmouseout= \" this.style.backgroundColor=' $row_colour '; \" onclick= \" location.href=' " . generate_port_url ( $port ) . " ' \" style='cursor: pointer;'>
< td valign = top width = 350 > " ;
echo ' < span class = list - large >
'.generate_port_link($port, $port[' ifIndex '].' . '.$port[' label ' ]) . " $error_img $mac
</ span >< br />< span class = interface - desc > " . $port['ifAlias'] .'</span>';
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
if ( $port [ 'ifAlias' ]) {
echo '<br />' ;
2011-03-17 11:29:23 +00:00
}
2015-07-13 20:10:26 +02:00
unset ( $break );
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
if ( $port_details ) {
foreach ( dbFetchRows ( 'SELECT * FROM `ipv4_addresses` WHERE `port_id` = ?' , array ( $port [ 'port_id' ])) as $ip ) {
echo " $break <a class=interface-desc href= \" javascript:popUp('/netcmd.php?cmd=whois&query= $ip[ipv4_address] ') \" > " . $ip [ 'ipv4_address' ] . '/' . $ip [ 'ipv4_prefixlen' ] . '</a>' ;
$break = '<br />' ;
}
foreach ( dbFetchRows ( 'SELECT * FROM `ipv6_addresses` WHERE `port_id` = ?' , array ( $port [ 'port_id' ])) as $ip6 ) {
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>' ;
$break = '<br />' ;
}
2011-03-17 11:29:23 +00:00
}
2015-07-13 20:10:26 +02:00
echo '</span>' ;
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
echo '</td><td width=100>' ;
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
if ( $port_details ) {
$port [ 'graph_type' ] = 'port_bits' ;
echo generate_port_link ( $port , " <img src='graph.php?type=port_bits&id= " . $port [ 'port_id' ] . '&from=' . $config [ 'time' ][ 'day' ] . '&to=' . $config [ 'time' ][ 'now' ] . '&width=100&height=20&legend=no&bg=' . str_replace ( '#' , '' , $row_colour ) . " '> " );
$port [ 'graph_type' ] = 'port_upkts' ;
echo generate_port_link ( $port , " <img src='graph.php?type=port_upkts&id= " . $port [ 'port_id' ] . '&from=' . $config [ 'time' ][ 'day' ] . '&to=' . $config [ 'time' ][ 'now' ] . '&width=100&height=20&legend=no&bg=' . str_replace ( '#' , '' , $row_colour ) . " '> " );
$port [ 'graph_type' ] = 'port_errors' ;
echo generate_port_link ( $port , " <img src='graph.php?type=port_errors&id= " . $port [ 'port_id' ] . '&from=' . $config [ 'time' ][ 'day' ] . '&to=' . $config [ 'time' ][ 'now' ] . '&width=100&height=20&legend=no&bg=' . str_replace ( '#' , '' , $row_colour ) . " '> " );
}
2011-12-15 23:32:06 +00:00
2015-07-13 20:10:26 +02:00
echo '</td><td width=120>' ;
if ( $port [ 'ifOperStatus' ] == 'up' ) {
$port [ 'in_rate' ] = ( $port [ 'ifInOctets_rate' ] * 8 );
$port [ 'out_rate' ] = ( $port [ 'ifOutOctets_rate' ] * 8 );
$in_perc = @ round (( $port [ 'in_rate' ] / $port [ 'ifSpeed' ] * 100 ));
$out_perc = @ round (( $port [ 'in_rate' ] / $port [ 'ifSpeed' ] * 100 ));
echo " <img src='images/16/arrow_left.png' align=absmiddle> <span style='color: " . percent_colour ( $in_perc ) . " '> " . formatRates ( $port [ 'in_rate' ]) . " <br />
< img align = absmiddle src = 'images/16/arrow_out.png' > < span style = 'color: ".percent_colour($out_perc)."' > " .formatRates( $port['out_rate'] ). " < br />
< img src = 'images/icons/arrow_pps_in.png' align = absmiddle > " .format_bi( $port['ifInUcastPkts_rate'] ). " pps </ span >< br />
< img src = 'images/icons/arrow_pps_out.png' align = absmiddle > " .format_bi( $port['ifOutUcastPkts_rate'] ).'pps</span>';
2011-03-17 11:29:23 +00:00
}
2009-04-23 21:13:56 +00:00
2015-07-13 20:10:26 +02:00
echo '</td><td width=75>' ;
if ( $port [ 'ifSpeed' ]) {
echo '<span class=box-desc>' . humanspeed ( $port [ 'ifSpeed' ]) . '</span>' ;
2011-03-17 11:29:23 +00:00
}
2007-04-03 14:10:23 +00:00
2015-07-13 20:10:26 +02:00
echo '<br />' ;
if ( $port [ ifDuplex ] != 'unknown' ) {
echo '<span class=box-desc>' . $port [ 'ifDuplex' ] . '</span>' ;
}
else {
echo '-' ;
}
if ( $device [ 'os' ] == 'ios' || $device [ 'os' ] == 'iosxe' ) {
if ( $port [ 'ifTrunk' ]) {
echo '<p class=box-desc><span class=purple><a title="' ;
$vlans = dbFetchRows ( " SELECT * FROM `ports_vlans` AS PV, vlans AS V WHERE PV.`port_id` =' " . $port [ 'port_id' ] . " ' and PV.`device_id` = ' " . $device [ 'device_id' ] . " ' AND V.`vlan_vlan` = PV.vlan AND V.device_id = PV.device_id " );
foreach ( $vlans as $vlan ) {
if ( $vlan [ 'state' ] == 'blocking' ) {
$class = 'red' ;
}
else if ( $vlan [ 'state' ] == 'forwarding' ) {
$class = 'green' ;
}
else {
$class = 'none' ;
}
echo '<b class=' . $class . '>' . $vlan [ 'vlan' ] . '</b> ' . $vlan [ 'vlan_descr' ] . '<br />' ;
}
echo '">' . $port [ 'ifTrunk' ] . '</a></span></p>' ;
}
else if ( $port [ 'ifVlan' ]) {
echo '<p class=box-desc><span class=blue>VLAN ' . $port [ 'ifVlan' ] . '</span></p>' ;
}
else if ( $port [ 'ifVrf' ]) {
$vrf = dbFetchRow ( 'SELECT * FROM vrfs WHERE vrf_id = ?' , array ( $port [ 'ifVrf' ]));
echo " <p style='color: green;'> " . $vrf [ 'vrf_name' ] . '</p>' ;
} //end if
} //end if
if ( $port_adsl [ 'adslLineCoding' ]) {
echo '</td><td width=150>' ;
echo $port_adsl [ 'adslLineCoding' ] . '/' . rewrite_adslLineType ( $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 ( $port [ 'ifType' ] && $port [ 'ifType' ] != '' ) {
echo '<span class=box-desc>' . fixiftype ( $port [ 'ifType' ]) . '</span>' ;
}
else {
echo '-' ;
}
echo '<br />' ;
if ( $ifHardType && $ifHardType != '' ) {
echo '<span class=box-desc>' . $ifHardType . '</span>' ;
}
else {
echo '-' ;
2011-03-17 11:29:23 +00:00
}
2010-02-25 01:30:07 +00:00
2015-07-13 20:10:26 +02:00
echo '</td><td width=150>' ;
if ( $port [ 'ifPhysAddress' ] && $port [ 'ifPhysAddress' ] != '' ) {
echo '<span class=box-desc>' . formatMac ( $port [ 'ifPhysAddress' ]) . '</span>' ;
}
else {
echo '-' ;
2010-02-25 01:30:07 +00:00
}
2015-07-13 20:10:26 +02:00
echo '<br />' ;
if ( $port [ 'ifMtu' ] && $port [ 'ifMtu' ] != '' ) {
echo '<span class=box-desc>MTU ' . $port [ 'ifMtu' ] . '</span>' ;
}
else {
echo '-' ;
}
} //end if
echo '</td>' ;
echo '<td width=375 valign=top class=interface-desc>' ;
if ( strpos ( $port [ 'label' ], 'oopback' ) === false && ! $graph_type ) {
foreach ( dbFetchRows ( 'SELECT * FROM `links` AS L, `ports` AS I, `devices` AS D WHERE L.local_port_id = ? AND L.remote_port_id = I.port_id AND I.device_id = D.device_id' , array ( $if_id )) as $link ) {
// echo("<img src='images/16/connect.png' align=absmiddle alt='Directly Connected' /> " . generate_port_link($link, makeshortif($link['label'])) . " on " . generate_device_link($link, shorthost($link['hostname'])) . "</a><br />");
// $br = "<br />";
$int_links [ $link [ 'port_id' ]] = $link [ 'port_id' ];
$int_links_phys [ $link [ 'port_id' ]] = 1 ;
}
2007-06-24 14:56:47 +00:00
2015-07-13 20:10:26 +02:00
unset ( $br );
if ( $port_details && $config [ 'enable_port_relationship' ] === true ) {
// Show which other devices are on the same subnet as this interface
foreach ( dbFetchRows ( " SELECT `ipv4_network_id` FROM `ipv4_addresses` WHERE `port_id` = ? AND `ipv4_address` NOT LIKE '127.%' " , array ( $port [ 'port_id' ])) as $net ) {
$ipv4_network_id = $net [ 'ipv4_network_id' ];
$sql = ' SELECT I . port_id FROM ipv4_addresses AS A , ports AS I , devices AS D
WHERE A . port_id = I . port_id
AND A . ipv4_network_id = ? AND D . device_id = I . device_id
AND D . device_id != ? ' ;
$array = array (
$net [ 'ipv4_network_id' ],
$device [ 'device_id' ],
);
foreach ( dbFetchRows ( $sql , $array ) as $new ) {
echo $new [ 'ipv4_network_id' ];
$this_ifid = $new [ 'port_id' ];
$this_hostid = $new [ 'device_id' ];
$this_hostname = $new [ 'hostname' ];
$this_ifname = fixifName ( $new [ 'label' ]);
$int_links [ $this_ifid ] = $this_ifid ;
$int_links_v4 [ $this_ifid ] = 1 ;
}
} //end foreach
foreach ( dbFetchRows ( 'SELECT ipv6_network_id FROM ipv6_addresses WHERE port_id = ?' , array ( $port [ 'port_id' ])) as $net ) {
$ipv6_network_id = $net [ 'ipv6_network_id' ];
$sql = " SELECT I.port_id FROM ipv6_addresses AS A, ports AS I, devices AS D
WHERE A . port_id = I . port_id
AND A . ipv6_network_id = ? AND D . device_id = I . device_id
AND D . device_id != ? AND A . ipv6_origin != 'linklayer' AND A . ipv6_origin != 'wellknown' " ;
$array = array (
$net [ 'ipv6_network_id' ],
$device [ 'device_id' ],
);
foreach ( dbFetchRows ( $sql , $array ) as $new ) {
echo $new [ 'ipv6_network_id' ];
$this_ifid = $new [ 'port_id' ];
$this_hostid = $new [ 'device_id' ];
$this_hostname = $new [ 'hostname' ];
$this_ifname = fixifName ( $new [ 'label' ]);
$int_links [ $this_ifid ] = $this_ifid ;
$int_links_v6 [ $this_ifid ] = 1 ;
}
} //end foreach
} //end if
2015-08-23 20:01:09 +00:00
if ( $port_details && $config [ 'enable_port_relationship' ] === true && port_permitted ( $int_link , $device [ 'device_id' ])) {
2015-07-13 20:10:26 +02:00
foreach ( $int_links as $int_link ) {
$link_if = dbFetchRow ( 'SELECT * from ports AS I, devices AS D WHERE I.device_id = D.device_id and I.port_id = ?' , array ( $int_link ));
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'> " ;
}
echo '<b>' . generate_port_link ( $link_if , makeshortif ( $link_if [ 'label' ])) . ' on ' . generate_device_link ( $link_if , shorthost ( $link_if [ 'hostname' ]));
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 />' ;
} //end foreach
} //end if
// unset($int_links, $int_links_v6, $int_links_v4, $int_links_phys, $br);
} //end if
2015-08-23 20:01:09 +00:00
if ( $port_details && $config [ 'enable_port_relationship' ] === true && port_permitted ( $port [ 'port_id' ], $device [ 'device_id' ])) {
2015-07-13 20:10:26 +02:00
foreach ( dbFetchRows ( 'SELECT * FROM `pseudowires` WHERE `port_id` = ?' , array ( $port [ 'port_id' ])) as $pseudowire ) {
// `port_id`,`peer_device_id`,`peer_ldp_id`,`cpwVcID`,`cpwOid`
$pw_peer_dev = dbFetchRow ( 'SELECT * FROM `devices` WHERE `device_id` = ?' , array ( $pseudowire [ 'peer_device_id' ]));
$pw_peer_int = dbFetchRow ( 'SELECT * FROM `ports` AS I, pseudowires AS P WHERE I.device_id = ? AND P.cpwVcID = ? AND P.port_id = I.port_id' , array ( $pseudowire [ 'peer_device_id' ], $pseudowire [ 'cpwVcID' ]));
$pw_peer_int = ifNameDescr ( $pw_peer_int );
echo " $br <img src='images/16/arrow_switch.png' align=absmiddle><b> " . generate_port_link ( $pw_peer_int , makeshortif ( $pw_peer_int [ 'label' ])) . ' on ' . generate_device_link ( $pw_peer_dev , shorthost ( $pw_peer_dev [ 'hostname' ])) . '</b>' ;
$br = '<br />' ;
}
2007-06-24 14:56:47 +00:00
2015-07-13 20:10:26 +02:00
foreach ( dbFetchRows ( 'SELECT * FROM `ports` WHERE `pagpGroupIfIndex` = ? and `device_id` = ?' , array ( $port [ 'ifIndex' ], $device [ 'device_id' ])) as $member ) {
echo " $br <img src='images/16/brick_link.png' align=absmiddle> <strong> " . generate_port_link ( $member ) . ' (PAgP)</strong>' ;
$br = '<br />' ;
}
2007-06-24 14:56:47 +00:00
2015-07-13 20:10:26 +02:00
if ( $port [ 'pagpGroupIfIndex' ] && $port [ 'pagpGroupIfIndex' ] != $port [ 'ifIndex' ]) {
$parent = dbFetchRow ( 'SELECT * FROM `ports` WHERE `ifIndex` = ? and `device_id` = ?' , array ( $port [ 'pagpGroupIfIndex' ], $device [ 'device_id' ]));
echo " $br <img src='images/16/bricks.png' align=absmiddle> <strong> " . generate_port_link ( $parent ) . ' (PAgP)</strong>' ;
$br = '<br />' ;
}
2007-06-24 14:56:47 +00:00
2015-07-13 20:10:26 +02:00
foreach ( dbFetchRows ( 'SELECT * FROM `ports_stack` WHERE `port_id_low` = ? and `device_id` = ?' , array ( $port [ 'ifIndex' ], $device [ 'device_id' ])) as $higher_if ) {
if ( $higher_if [ 'port_id_high' ]) {
$this_port = get_port_by_index_cache ( $device [ 'device_id' ], $higher_if [ 'port_id_high' ]);
echo " $br <img src='images/16/arrow_divide.png' align=absmiddle> <strong> " . generate_port_link ( $this_port ) . '</strong>' ;
$br = '<br />' ;
}
}
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
foreach ( dbFetchRows ( 'SELECT * FROM `ports_stack` WHERE `port_id_high` = ? and `device_id` = ?' , array ( $port [ 'ifIndex' ], $device [ 'device_id' ])) as $lower_if ) {
if ( $lower_if [ 'port_id_low' ]) {
$this_port = get_port_by_index_cache ( $device [ 'device_id' ], $lower_if [ 'port_id_low' ]);
echo " $br <img src='images/16/arrow_join.png' align=absmiddle> <strong> " . generate_port_link ( $this_port ) . '</strong>' ;
$br = '<br />' ;
}
}
} //end if
2011-04-27 17:41:35 +00:00
2011-03-17 11:29:23 +00:00
unset ( $int_links , $int_links_v6 , $int_links_v4 , $int_links_phys , $br );
2015-07-13 20:10:26 +02:00
echo '</td></tr>' ;
2011-03-17 11:29:23 +00:00
// If we're showing graphs, generate the graph and print the img tags
2015-07-13 20:10:26 +02:00
if ( $graph_type == 'etherlike' ) {
$graph_file = $config [ 'rrd_dir' ] . '/' . $device [ 'hostname' ] . '/port-' . safename ( $port [ 'ifIndex' ]) . '-dot3.rrd' ;
}
else {
$graph_file = $config [ 'rrd_dir' ] . '/' . $device [ 'hostname' ] . '/port-' . safename ( $port [ 'ifIndex' ]) . '.rrd' ;
2011-03-17 11:29:23 +00:00
}
2015-07-13 20:10:26 +02:00
if ( $graph_type && is_file ( $graph_file )) {
$type = $graph_type ;
2011-03-17 11:29:23 +00:00
2015-07-13 20:10:26 +02:00
echo " <tr style='background-color: $row_colour ; padding: 0px;'><td colspan=7> " ;
2007-06-24 14:56:47 +00:00
2015-07-13 20:10:26 +02:00
include 'includes/print-interface-graphs.inc.php' ;
2010-08-01 14:17:06 +00:00
2015-07-13 20:10:26 +02:00
echo '</td></tr>' ;
2011-03-17 11:29:23 +00:00
}