Unix port status


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Unix port status
# 1  
Old 05-22-2007
Unix port status

disregard solved

Last edited by calamine; 05-22-2007 at 02:23 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Status of UNIX.COM Forum Transformation

Having spent a lot of time over the past year taking a legacy vBulletin site (this forum) and making the site responsive on mobile; I've happy with the results; but it will soon be time to move on. Basically, at our core, we are a LAMP (Linux, Apache2, MySQL and PHP) site, and vBulletin was... (6 Replies)
Discussion started by: Neo
6 Replies

2. Shell Programming and Scripting

UNIX with DB2 error status Issue

I have a shell script main.ksh We are calling dbscript.ksh from main.ksh I am using select statement in dbscript.ksh but there is a problem with the select statement in dbscript.ksh but still echo $? is showing as zero. I am using DB2 commands in dbscript.ksh Main.ksh dbscript.ksh echo $? ... (13 Replies)
Discussion started by: vamsi.valiveti
13 Replies

3. 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

4. Shell Programming and Scripting

Bad status in UNIX Script

Hello, sorry for my questions about that below script but i have an error that i don't understand. It seems that my find command is not working fine but for me the command is ok Thanks for your help ===================================== /usr/IBM/HTTPServer/apache_cache... (4 Replies)
Discussion started by: steiner
4 Replies

5. Programming

Getting TCP Port status through C API

Does anyone know if there is a C API call to get the status of a TCP port? As opposed to running netstat and parsing the results. At the moment I have to attempt to bind() and pick up on the address in use error which isn't very elegant Thanks ---------- Post updated at 10:42 AM ----------... (0 Replies)
Discussion started by: janra
0 Replies

6. Solaris

Checking the port status of a remote host

Hi there I am in the process of writing a script to check whether a port on a remote system is up or not. Here's what I have so far: #!/bin/bash telnet xx.xx.xx.xx 80 | (echo "^]") if ]; then echo "Please check Web services " | mailx -s "Please check webservices... (1 Reply)
Discussion started by: notreallyhere
1 Replies

7. Shell Programming and Scripting

how to detect port open status?

I write a script which will stop an application, then restart it. Sometimes it is succesful, sometimes not. The problem is, when stop the application, some ports are still listenning (or not released). When start the application, it reports that ports are used, and can't continues. I use... (1 Reply)
Discussion started by: rdcwayx
1 Replies

8. Solaris

Port status/Running daemon

Hi, I need to run an application (Hudson) listening to port 8080 on a remote Solaris server. I have managed to start that application and tried to access it with my browser from my local PC, but unsuccessfully. I need to find out what is blocking the access to that port (or any other). A... (9 Replies)
Discussion started by: JVerstry
9 Replies

9. AIX

how to check status of various services and port?

How can i check which service is activated on my AIX Box? how one can check particular port is open or not (like ftp/telnet port)? I dont have admin rights (1 Reply)
Discussion started by: ashish4422
1 Replies
Login or Register to Ask a Question
socket_to_name(3ncs)													      socket_to_name(3ncs)

Name
       socket_to_name - convert a socket address to a name and port number

Syntax
       #include <idl/c/socket.h>

       void socket_$to_name(sockaddr, slength, name, nlength, port, status)
       socket_$addr_t *sockaddr;
       unsigned long slength;
       socket_$string_t name;
       unsigned long *nlength;
       unsigned long *port;
       status_$t *status;

Arguments
       sockaddr 	   A socket address.  The socket address is the structure returned by either or

       slength		   The length, in bytes, of sockaddr.

       name		   A  string in the format family:host[port], where family is the address family and host is the host name; host may be in
			   the standard numeric form (for example, #192.1.2.3) if a textual host name cannot be obtained.  Currently, only  ip	is
			   supported for family.

       nlength		   On input, the maximum length, in bytes, of the name to be returned.	On output, the actual length of the name returned.

       port		   The port number.

       status		   The	completion status. If the completion status returned in is equal to status_$ok , then the routine that supplied it
			   was successful.

Description
       The routine converts a socket address to a textual address family, host name, and port number.

Files
See Also
       intro(3ncs), socket_family_to_name(3ncs), socket_from_name(3ncs), socket_to_numeric_name(3ncs)

															      socket_to_name(3ncs)