'; foreach (dbFetchRows('SELECT C.`device_id`, C.`entPhysicalIndex`, C.`afi`, C.`cef_path`, C.`drop`, C.`punt`, C.`punt2host`, E.`entPhysicalName`, E.`entPhysicalModelName`, E.`entPhysicalContainedIn` FROM `cef_switching` AS `C`, `entPhysical` AS E WHERE C.`device_id` = E.`device_id` AND C.`entPhysicalIndex` = E.`entPhysicalIndex` ORDER BY C.`device_id`, C.`entPhysicalIndex`, C.`afi`, C.`cef_index`') as $cef) { $device = device_by_id_cache($cef['device_id']); if (! $cef['entPhysicalModelName'] && $cef['entPhysicalContainedIn']) { $parent_entity = dbFetchRow('SELECT `entPhysicalName`, `entPhysicalModelName` FROM `entPhysical` WHERE `device_id` = ? AND `entPhysicalIndex` = ?', [$device['device_id'], $cef['entPhysicalContainedIn']]); $entity_descr = $cef['entPhysicalName'] . ' (' . $parent_entity['entPhysicalModelName'] . ')'; } else { $entity_descr = $cef['entPhysicalName'] . ' (' . $cef['entPhysicalModelName'] . ')'; } echo ' '; } echo '
  Device Entity AFI Path Drop Punt Punt2Host
' . generate_device_link($device, 0, ['tab' => 'routing', 'proto' => 'cef']) . ' ' . $entity_descr . ' ' . $cef['afi'] . ' ' . $cef['cef_path'] . ' ' . $cef['drop'] . ' ' . $cef['punt'] . ' ' . $cef['punt2host'] . '
';