Resolving port number to program name


 
Thread Tools Search this Thread
Operating Systems Solaris Resolving port number to program name
# 1  
Old 03-07-2012
Resolving port number to program name

I was just checking to see if anyone had a script that would allow me to go from port number to program name. I tried to create my own script but it looks like it only works for IPv4 sockets and it looks like daemons such as sshd return as AF_INET6 (in pfiles) for some reason. I can fix my script but the solution isn't immediately obvious and was just wondering if anybody has already fixed this problem as it seems popular.

I would use OpenCSW to install a better netstat but they want to minimize third party software on here.

- Joel

---------- Post updated at 08:28 PM ---------- Previous update was at 08:16 PM ----------

found one online, so this question's more dead space for now, I'd like it to be deleted if at all possible.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Discover the program that use serial port (Sherlock Holmes Case)

Hi, I received a server that use AIX 5.x. This server was installed from a company that doesnt exist now, and they dont leave information about it. I only know that they installed a program that recieve information from some tty in a special format and as it is a tty, with some baud rate,... (4 Replies)
Discussion started by: trevian3969
4 Replies

2. Solaris

How to find port number wwn of particular port on dual port HBA,?

please find the below o/p for your reference bash-3.00# fcinfo hba-port HBA Port WWN: 21000024ff295a34 OS Device Name: /dev/cfg/c2 Manufacturer: QLogic Corp. Model: 375-3356-02 Firmware Version: 05.03.02 FCode/BIOS Version: BIOS: 2.02; fcode: 2.01;... (3 Replies)
Discussion started by: sb200
3 Replies

3. UNIX for Advanced & Expert Users

Port number file

In which file inside the application code we can find the list of port numbers that the application is entitled to listen? (4 Replies)
Discussion started by: p_gautham12
4 Replies

4. Shell Programming and Scripting

Program to listen a port

I need to launch a script as soon as a file comes via a specified port on my system from another system. Program should work as a dameon and should invoke only when port start/stop accepting file. Any idea how to program/script it... Please no suggestions for cron. Thanks in advance. (1 Reply)
Discussion started by: sumitwa
1 Replies

5. Programming

how to check port binding in pcap receiving program?

hi, I am writing one packet receiving program using libpcap library. Now, I want to check port is already using or not. how to check in receiver program.. If normal program, bind return value we can able to check the port using or not. but, in pcap program how can i check? thank... (1 Reply)
Discussion started by: ram.sj
1 Replies

6. UNIX for Dummies Questions & Answers

port number

hi all i want to connect a system, how can i know the port number of a system. (2 Replies)
Discussion started by: tukuna82
2 Replies

7. UNIX for Dummies Questions & Answers

Need to know port number

Hi expert, I wanted to know in which port my apache is running in solaris box thanks Shaan (1 Reply)
Discussion started by: shaan_dmp
1 Replies

8. UNIX for Dummies Questions & Answers

unix program that can port scan a c block of ips for proxies

can anyone tell me a unix program that can port scan a c block of ips for proxies? a fast one, with reliable results, that can load an ip list, or set an ip range, and specify ports thanks! (1 Reply)
Discussion started by: user
1 Replies

9. IP Networking

Resolving port 8080 in DNS

Hi I have my DNS servers (BIND 8) running on two Solaris 8 boxes. I need to be able to resolve an address blah.xxx.net to an IP address followed by :8080 - (for Tomcat). I tried doing this in my zone file but it failed. Can someone give me a pointer on where this configuration should be done?... (1 Reply)
Discussion started by: korfnz
1 Replies

10. Cybersecurity

get number of a port

Hello every one. I work in a LAN with many application server. Each one use a different port. What command permit to obtain the number of these port. thanks (2 Replies)
Discussion started by: hoang
2 Replies
Login or Register to Ask a Question
ns_sock(3aolserver)					    AOLserver Built-In Commands 				       ns_sock(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_sockaccept, ns_sockblocking, ns_sockcallback, ns_sockcheck, ns_socketpair, ns_socklisten, ns_socklistencallback, ns_socknonblocking, ns_socknread, ns_sockopen, ns_sockselect - Network socket commands SYNOPSIS
ns_sockaccept sockid ns_sockblocking sockid ns_sockcallback sockid script when ns_sockcheck fileid ns_socketpair ns_socklisten address port ns_socklistencallback address port script ns_socknonblocking sockid ns_socknread sockid ns_sockopen ?-nonblock | -timeout seconds? host port ns_sockselect ?-timeout seconds? rfds wfds efds _________________________________________________________________ DESCRIPTION
Performs one of several network socket operations, providing a means to manipulate and use sockets directly within AOLserver. ns_sockaccept sockid Accepts a new connection on the socket specified by sockid and returns a list containing the read and write file descriptors for the socket, respectively. The file descriptors can be used with Tcl's puts, gets, read or any other Tcl socket manipulation commands. ns_sockaccept does not create a socket for you. It is normally used in conjunction with ns_sockcallback, ns_socklisten, and ns_sock- listencallback. You can use ns_sockcheck to see if the socket is valid before using ns_sockaccept on it. ns_sockblocking sockid Sets the socket specified by sockid to blocking mode. In blocking mode, an operation on a socket must complete before the command can return. This can cause your process or thread to block forever if the operation does not complete. If that happens in an ADP, the page may never complete until the socket is interrupted, closed or a TCP timeout occurs. ns_sockcallback sockid script when Registers a socket callback script that will be run when a connection is made to the socket specified by sockid. The socket must already exist. You can create a socket using ns_socklisten. The script should accept sockid and when as its first two arguments. The script is responsible for doing an ns_sockaccept on sockid prior to reading from and writing to the socket. If the same script will handle all when values, you must still register the script four separate times, once for each type of when value. The when value is passed to script when script is invoked. The when value is one of: r - the socket is readable w - the socket is writeable e - the socket has an exceptional condition x - the server is shutting down ns_sockcheck fileid Uses recv() or send() calls to check if a socket is still connected. The fileid is the read or write file id returned by ns_sock- open. This function is useful if you used the -nonblock option with ns_sockopen after calling ns_sockselect. ns_socketpair Creates a pair of connected sockets and returns a list of file ids: the first one for reads and the second one for writes. ns_socklisten address port Creates a new socket and listens for connections at the specified address and port. An asterisk (*) can be used as the address argument to specify all addresses. The socket id is returned. You must use ns_sockaccept to accept connections on the socket. ns_socklistencallback address port script Creates a new socket and listens for connections at the specified address and port. An asterisk (*) can be used as the address argument to specify all addresses. Runs script when a new connection is received. The script must use ns_sockaccept on the ns_socknonblocking sockid Sets the socket specified by sockid to nonblocking. ns_socknread sockid Returns the number of bytes waiting to be read from the socket specified by sockid. ns_sockopen ?-nonblock | -timeout seconds? host port Uses the socket(), bind() and connect() calls to connect to the remote host on the specified port. ns_sockopen returns a list containing the read and write fileids, respectively. The -nonblock option causes ns_sockopen to return immediately, while the connect is still in progress by the operating system. Use ns_sockcheck with the write fileid to see if the connect has completed before attempting to read from or write to the socket. The -timeout option specifies how long to wait for the connect to be made in seconds before timing out. ns_sockselect ?-timeout seconds? rfds wfds efds Uses a call to select() to determine which fileids are readable, writable or have exceptional conditions. ns_sockselect returns a list of three lists: readable fileids, writable fileids, and the fileids with exceptions. The -timeout option specifies how many seconds to wait for ns_sockselect before timing out. The rfds, wfds and efds arguments are lists of readable fileids, writeable fileids, and fileids with exceptions, respectively. Be careful using these socket commands in an ADP or a procedure called by an ADP. If a socket command hangs, the page may not finish being served to the user until the TCP connection times out, typically several minutes later. SEE ALSO
nsd(1), info(n) KEYWORDS
AOLserver 4.0 ns_sock(3aolserver)