Tags: port

How to find Windows process using port

Windows Send feedback »
netstat -an |find /i "listening" netstat -an |find /i "established" netstat -ao |find /i "listening" 1. netstat -aon | findstr "" This shows if the specified is being used. The number in the last column is the process id (PID) of the p… more »

How to trace port in AIX

Aix Send feedback »
1. netstat -Aan | grep <Port Name> - This shows if the specified is being used. The hex number in the first column is the address of protocol control block (PCB) bash-3.00# netstat -Aan | grep 32775 f100060000942398 tcp4       0      0  *.32775  … more »

How to find the WWN (World Wide Name) in Sun Solaris

Solaris Send feedback »
A World Wide Name (WWN) or World Wide Identifier (WWID) is a unique identifier which identifies a particular Fibre Channel, Advanced Technology Attachment (ATA) or Serial Attached SCSI (SAS) target. Each WWN is an 8 byte number derived from an IEEE OUI a… more »

Solaris: How to Verify Serial Port Settings

Technology, Solaris Send feedback »
This procedure lets you verify the baud rate and other serial port settings used by the Sun Fire V490 server to communicate with attached serial port devices. You must be logged in to the Sun Fire V490 server, and the server must be running Solaris O… more »