1. Ports
  2. Port 1662

Port 1662 is assigned to netview-aix-2, the second in a series of twelve sequential ports (1661-1672) reserved for IBM's NetView network management system on AIX.

What NetView Does

IBM NetView for AIX is a network management platform that monitors SNMP devices—routers, switches, servers, anything speaking the Simple Network Management Protocol. From a central console, administrators can:

  • Map network topology (what's connected to what)
  • Monitor device health and performance
  • Diagnose problems when they occur
  • Browse MIBs (Management Information Bases) to see what each device reports

The system bridges UNIX and mainframe environments, letting NetView's centralized management reach beyond traditional SNA networks into the AIX and UNIX world.1

The Twelve-Port Pattern

NetView didn't request one port. It requested twelve: ports 1661 through 1672, labeled netview-aix-1 through netview-aix-12.

This is a pattern you see throughout the registered port range. A company builds a system that might need multiple channels, so they reserve a block of sequential ports just in case. Whether all twelve ports see active use is another question. Most enterprise monitoring systems consolidate onto fewer ports over time.

Port 1662 is the second door in that hallway. Whether it's answering depends on how the specific NetView installation is configured.

Checking What's Listening

To see if anything is actually using port 1662 on your system:

Linux/macOS:

sudo lsof -i :1662
sudo netstat -tulpn | grep 1662

Windows:

netstat -ano | findstr :1662

If the port shows as LISTENING, something is bound to it. If nothing appears, the port is closed—which is the likely state unless you're running IBM NetView.

The Registered Range

Port 1662 falls in the registered port range (1024-49151). These ports are assigned by IANA upon request but aren't as strictly controlled as well-known ports (0-1023).

Organizations request registered ports for specific services, but there's no enforcement. Anyone can run any service on port 1662. The IANA assignment just means "IBM asked for this port for NetView, and we recorded it." It doesn't mean IBM owns the port or that you can't use it for something else.

Why Unassigned and Low-Usage Ports Matter

The vast majority of registered ports see little to no traffic. They exist as reservations—addresses in the phone book that rarely ring.

But they serve a purpose: they prevent conflicts. When IBM deploys NetView at a company, the administrator knows port 1662 is designated for this service. They can configure firewalls, document the setup, and avoid accidentally running something else on the same port.

The space between ports exists to give protocols room to breathe.

Security Considerations

Port 1662 shouldn't be exposed to the public Internet. NetView is an internal management tool, meant for trusted networks where administrators monitor devices they control.

If you see unexpected traffic on port 1662:

  • Check if you're running IBM NetView or a related monitoring tool
  • Verify the source of connections (should be internal management systems)
  • Block the port at your firewall if you're not using it

Like most management ports, 1662 is a door that should stay locked from the outside.

Была ли эта страница полезной?

😔
🤨
😃
Port 1662: NetView AIX-2 — IBM's Second Management Channel • Connected