Arrow down
arrow down
Arrow down
Arrow down
Arrow down
BLOG | Sep 2, 2025

Proactive Lifecycle Management with NQE: EOL, EOS & Compliance Checks

Network teams often risk costly disruptions when aging or unsupported hardware slips under the radar. With Forward Networks’ Network Query Engine (NQE), you can proactively identify devices approaching End‑of‑Sale (EOS) or End‑of‑Life (EOL), plus enforce hardware/software compliance at scale. Get ahead of risks, reduce technical debt, and align your infrastructure with business goals—automatically.
Sean Devici
Sean Devici Federal Sales Engineer 
Who should read this post?
  • Network and security engineers managing large device estates
  • IT leaders aiming to reduce technical debt and audit risk
  • CMDB and IT asset managers seeking data-driven lifecycle insights
What is covered in this content?
  • EOL/EOS and software compliance checkers built with NQE
  • Business and operational benefits of proactive lifecycle management
  • A summary of implementation steps with code examples
  • Links to the original NQE community discussions

Network teams often risk costly disruptions when aging or unsupported hardware slips under the radar. With Forward Networks’ Network Query Engine (NQE), you can proactively identify devices approaching End‑of‑Sale (EOS) or End‑of‑Life (EOL), plus enforce hardware/software compliance at scale. Get ahead of risks, reduce technical debt, and align your infrastructure with business goals—automatically.

Lifecycle Visibility: Why It Matters

Undetected EOL or EOS hardware can lead to unplanned downtime and security vulnerabilities. By integrating hardware lifecycle checks into regular infrastructure assessments, teams can pinpoint at‑risk devices before they fail—transforming firefighting into forward planning.

Undetected EOL or EOS hardware can lead to unplanned downtime and security vulnerabilities.

By integrating hardware lifecycle checks into regular infrastructure assessments, teams can pinpoint at‑risk devices before they fail—transforming firefighting into forward planning.

  • Reduce Risk: Detect unsupported or unpatched devices before outages or cyber incidents occur.
  • Cut Technical Debt: Plan replacements proactively, reducing emergency budget allocations and manual audits.
  • Enhance Compliance: Use live data to support audit reporting and maintain vendor support schedules.
  • Optimize Asset Management: Improve CMDB accuracy and lifecycle tracking with automated updates.

How It Works: NQE-Based Checkers

Two NQE scripts from the community form the core of this proactive approach:

  1. EOL/EOS Checker
  2. Hardware & Software Compliance Checker

Both scripts can run on schedules or via manual triggers. Results include device lists, lifecycle status, and compliance notes—perfect for dashboards, ticket generation, or CMDB updates.

Technical Snapshot: Code Examples

This query uses import to bring in a list of devices that are EoL. You can find this and the EoL import file on the community.

/**
 * @intent Find End of life Cisco devices
 * @description source https://www.cisco.com/c/en/us/products/eos-eol-listing.html
 */

import "Customers/PSNET/Cisco_EOL_list";
cisco_eol_patterns= (foreach i in cisco_eol_devices select "*"+i+"*");
foreach d in network.devices
where isPresent(d.platform.model)
let model = toUpperCase(d.platform.model)
foreach i in cisco_eol_patterns
where matches(model, i)
select distinct{
  name: d.name,
  vendor: d.platform.vendor,
  model: d.platform.model,
  osType: d.platform.os,
  osVersion: d.platform.osVersion,
  status: "EOL",
  violation: true
}

Getting Started

  1. Load the scripts from Forward’s NQE Library or the community posts.
  2. Tune thresholds to align with your lifecycle policies (e.g., 180‑day alerts).
  3. Schedule automation via Forward or orchestrator platforms like ServiceNow.
  4. Integrate outputs into dashboards, ticketing systems, or CMDB.

For full scripts, examples, and Community insights:

Industry Recognition

Winner of over 20 industry awards, Forward Enterprise is the best-in-class network modeling software that customers trust

Customers are unanimous:
Forward Enterprise is a game-changer

From Fortune 50 institutions to top level federal agencies, users agree that Forward Enterprise is unlike any other network modeling software

Most Recent

Browse all posts

Subscribe to our newsletter

Make sure you don't miss a post by signing up here for our monthly 'Moving Forward' newsletter
Top cross