port_id map $ports_mapped = get_ports_mapped($device['device_id']); $ports_db = $ports_mapped['ports']; // // Rename any old RRD files still named after the previous ifIndex based naming schema. foreach ($ports_mapped['maps']['ifIndex'] as $ifIndex => $port_id) { foreach (['', '-adsl', '-dot3'] as $suffix) { $old_rrd_name = "port-$ifIndex$suffix.rrd"; $new_rrd_name = \Rrd::portName($port_id, ltrim($suffix, '-')); \Rrd::renameFile($device, $old_rrd_name, $new_rrd_name); } } // Fill ifAlias for fibrechannel ports if ($device['os'] == 'fabos') { require base_path('includes/discovery/ports/brocade.inc.php'); } //Shorten Ekinops Interfaces if ($device['os'] == 'ekinops') { require base_path('includes/discovery/ports/ekinops.inc.php'); } $default_port_group = Config::get('default_port_group'); // New interface detection foreach ($port_stats as $ifIndex => $snmp_data) { $snmp_data['ifIndex'] = $ifIndex; // Store ifIndex in port entry $snmp_data['ifAlias'] = StringHelpers::inferEncoding($snmp_data['ifAlias'] ?? null); // Get port_id according to port_association_mode used for this device $port_id = get_port_id($ports_mapped, $snmp_data, $port_association_mode); if (is_port_valid($snmp_data, $device)) { port_fill_missing_and_trim($snmp_data, $device); if ($device['os'] == 'vmware-vcsa' && preg_match('/Device ([a-z0-9]+) at .*/', $snmp_data['ifDescr'], $matches)) { $snmp_data['ifName'] = $matches[1]; } // Port newly discovered? if (! isset($ports_db[$port_id]) || ! is_array($ports_db[$port_id])) { $snmp_data['device_id'] = $device['device_id']; $port_id = dbInsert($snmp_data, 'ports'); //default Port Group for new Ports defined? if (! empty($default_port_group)) { $port_group = PortGroup::find($default_port_group); if (isset($port_group)) { $port_group->ports()->attach([$port_id]); } } $ports[$port_id] = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `port_id` = ?', [$device['device_id'], $port_id]); echo 'Adding: ' . $snmp_data['ifName'] . '(' . $ifIndex . ')(' . $port_id . ')'; } elseif ($ports_db[$port_id]['deleted'] == 1) { // Port re-discovered after previous deletion? $snmp_data['deleted'] = 0; dbUpdate($snmp_data, 'ports', '`port_id` = ?', [$port_id]); $ports_db[$port_id]['deleted'] = 0; echo 'U'; } else { // port is existing, let's update it with some data we have collected here dbUpdate($snmp_data, 'ports', '`port_id` = ?', [$port_id]); echo '.'; } } else { // Port vanished (mark as deleted) if (isset($ports_db[$port_id]) && is_array($ports_db[$port_id])) { if ($ports_db[$port_id]['deleted'] != 1) { dbUpdate(['deleted' => 1], 'ports', '`port_id` = ?', [$port_id]); $ports_db[$port_id]['deleted'] = 1; echo '-'; } } echo 'X'; }//end if }//end foreach unset( $ports_mapped, $port ); echo "\n"; // Clear Variables Here unset($port_stats); unset($ports_db);