Basic | Details | Graphs: Bits | Packets | NU Packets | Errors "); if($_GET['opta'] == graphs ) { if($_GET['optb']) { $graph_type = $_GET['optb']; } else { $graph_type = "bits"; } $dographs = 1; } if($_GET['opta'] == "details" ) { $port_details = 1; } echo("
"); $vrf_query = mysql_query("SELECT * FROM `vrfs` WHERE mplsVpnVrfRouteDistinguisher = '".$_GET['id']."'"); $vrf = mysql_fetch_array($vrf_query); echo(""); echo(""); echo(""); echo(""); echo("
" . $vrf['vrf_name'] . "" . $vrf['mplsVpnVrfRouteDistinguisher'] . "" . $vrf['mplsVpnVrfDescription'] . "
"); $devices = mysql_query("SELECT * FROM `vrfs` AS V, `devices` AS D WHERE `mplsVpnVrfRouteDistinguisher` = '".$vrf['mplsVpnVrfRouteDistinguisher']."' AND D.device_id = V.device_id"); $x=1; while($device = mysql_fetch_array($devices)) { $hostname = $device['hostname']; #if(!is_integer($x/2)) { $device_colour = $list_colour_a; } else { $device_colour = $list_colour_b; } echo(""); include("includes/device-header.inc.php"); echo("
"); $ports = mysql_query("SELECT * FROM `ports` WHERE `ifVrf` = '".$device['vrf_id']."' and device_id = '".$device['device_id']."'"); unset($seperator); echo(""); $i=1; while($interface = mysql_fetch_array($ports)) { if(!is_integer($x/2)) { if(is_integer($i/2)) { $int_colour = $list_colour_a_a; } else { $int_colour = $list_colour_a_b; } } else { if(is_integer($i/2)) { $int_colour = $list_colour_b_b; } else { $int_colour = $list_colour_b_a; } } include("includes/print-interface.inc.php"); $i++; } $x++; echo("
"); echo("
"); } ?>