Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to get the server name using IP address Post 302088585 by anbu23 on Wednesday 13th of September 2006 10:47:52 AM
Old 09-13-2006
i think you have to use
gethostbyaddr - gets information about a host given its address
 

10 More Discussions You Might Find Interesting

1. IP Networking

Finding an x25 address for a server

I am trying to find the x25 address of a server. Presumably this is stored in some sort of config file - and while I can find the IP and OSI addresses - I cannot work out where to find the x25 address.....any ideas? (Unix on Solaris) (1 Reply)
Discussion started by: peter.herlihy
1 Replies

2. UNIX for Dummies Questions & Answers

How to find i.p address of our server

I don't have root access. How do I find i.p address of our sun server? Thanks. (4 Replies)
Discussion started by: vpotluri
4 Replies

3. Programming

Retrieving IP address of Client from Server

Hi All, When I connect to a unix server from a client machine, how can I get the IP address of the client? One way of retrieving IP address of client which initiates an active connection to the server is through /var/adm/utmpx file upon login; client's IP address and other info would have... (4 Replies)
Discussion started by: matrixmadhan
4 Replies

4. Shell Programming and Scripting

Getting the IP address in unix server

Hi, I want to know the IP of my Unix server in my script programming. Below are the my trial and i didn't find anything useful for me.because i want only IP. hostname -> Giving the name of the server and hostanme -i -> Giving the error message that..i am not super user. ipConfig ->... (7 Replies)
Discussion started by: Balamani
7 Replies

5. IP Networking

Getting IP address of a server

Hello, I have a server in C that is listening on a socket using s_addr = INADDR_ANY, and clients connect to it. How can I know which address did the client use to connect to that socket? It might be 127.0.0.1 (if the server is running locally), 192.168.x.x (if the client is from inside the... (1 Reply)
Discussion started by: royger
1 Replies

6. HP-UX

[SOLVED] HP UX SERVER IP ADDRESS

I am moving an HP UX 9000 server to a new subnet. How do I change the server's IP address?? Many thanks in advance :confused: (3 Replies)
Discussion started by: ldaliosmane
3 Replies

7. Red Hat

DHCP Server address

Where can you find your DHCP Server address? I checked all of the files that this mentioned with no luck. Quick HOWTO : Ch08 : Configuring the DHCP Server - Linux Home Networking (6 Replies)
Discussion started by: cokedude
6 Replies

8. AIX

From address of an email from AIX server

My application resides on an AIX server and sends out emails when a job is completed, and a report ready to be picked up. However the from address of the email seems to have our test server's name, instead of the production server. In reality the mail is coming from the production server only. I... (5 Replies)
Discussion started by: ggayathri
5 Replies

9. Programming

IP address of a server at runtime

Hello, I developed a client task in C and a server task in C (an application strongly coupled). The client needs the server IP address to connect to the server. The problem is: I don't know in advance which machine will run the client and which machine will run the server so I can know the ip... (3 Replies)
Discussion started by: chercheur857
3 Replies

10. Red Hat

Ip address of Linux server

Hi, How to find ip address of Linux servers ? I know by ping command we can find ip address but wanted to check with you. Thanks, Maddy (5 Replies)
Discussion started by: Maddy123
5 Replies
endhostent(3XNET)				   X/Open Networking Services Library Functions 				 endhostent(3XNET)

NAME
endhostent, gethostbyaddr, gethostbyname, gethostent, sethostent - network host database functions SYNOPSIS
cc [ flag ... ] file ... -lxnet [ library ... ] #include <netdb.h> extern int h_errno; void endhostent(void); struct hostent *gethostbyaddr(const void *addr, socklen_t len, int type); struct hostent *gethostbyname(const char *name); struct hostent *gethostent(void); void sethostent(int stayopen); DESCRIPTION
The gethostent(), gethostbyaddr(), and gethostbyname() functions each return a pointer to a hostent structure, the members of which contain the fields of an entry in the network host database. The gethostent() function reads the next entry of the database, opening a connection to the database if necessary. The gethostbyaddr() function searches the database and finds an entry which matches the address family specified by the type argument and which matches the address pointed to by the addr argument, opening a connection to the database if necessary. The addr argument is a pointer to the binary-format (that is, not null-terminated) address in network byte order, whose length is specified by the len argument. The datatype of the address depends on the address family. For an address of type AF_INET, this is an in_addr structure, defined in <netinet/in.h>. For an address of type AF_INET6, there is an in6_addr structure defined in <netinet/in.h>. The gethostbyname() function searches the database and finds an entry which matches the host name specified by the name argument, opening a connection to the database if necessary. If name is an alias for a valid host name, the function returns information about the host name to which the alias refers, and name is included in the list of aliases returned. The sethostent() function opens a connection to the network host database, and sets the position of the next entry to the first entry. If the stayopen argument is non-zero, the connection to the host database will not be closed after each call to gethostent() (either directly, or indirectly through one of the other gethost*() functions). The endhostent() function closes the connection to the database. USAGE
The gethostent(), gethostbyaddr(), and gethostbyname() functions may return pointers to static data, which may be overwritten by subsequent calls to any of these functions. These functions are generally used with the Internet address family. RETURN VALUES
On successful completion, gethostbyaddr(), gethostbyname() and gethostent() return a pointer to a hostent structure if the requested entry was found, and a null pointer if the end of the database was reached or the requested entry was not found. Otherwise, a null pointer is returned. On unsuccessful completion, gethostbyaddr() and gethostbyname() functions set h_errno to indicate the error. ERRORS
No errors are defined for endhostent(), gethostent() and sethostent(). The gethostbyaddr() and gethostbyname() functions will fail in the following cases, setting h_errno to the value shown in the list below. Any changes to errno are unspecified. HOST_NOT_FOUND No such host is known. NO_DATA The server recognised the request and the name but no address is available. Another type of request to the name server for the domain might return an answer. NO_RECOVERY An unexpected server failure occurred which can not be recovered. TRY_AGAIN A temporary and possibly transient error occurred, such as a failure of a server to respond. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
endservent(3XNET), htonl(3XNET), inet_addr(3XNET), attributes(5), standards(5) SunOS 5.10 1 Nov 2003 endhostent(3XNET)
All times are GMT -4. The time now is 05:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy