How can I find the full hostname (FQDN) of the system I am running on?
Answer / chaitanya
Some systems set the hostname to the FQDN and others set it to just the unqualified host name. I know the current BIND FAQ recommends the FQDN, but most Solaris systems, for example, tend to use only the unqualified host name.
Regardless, the way around this is to first get the host's name (perhaps an FQDN, perhaps unaualified). Most systems support the Posix way to do this using uname(), but older BSD systems only provide gethostname(). Call gethostbyname() to find your IP address. Then take the IP address and call gethostbyaddr(). The h_name member of the hostent{} should then be your FQDN.
| Is This Answer Correct ? | 1 Yes | 0 No |
Why do we need socket programming?
Is tcp or unix socket faster?
What is the function of socket?
What are socket exceptions? What is out-of-band data?
How can I listen on more than one port at a time?
How would I put my socket in non-blocking mode?
How do I get the port number for a given service?
Are sockets files?
How are unix domain sockets implemented?
What is difference between socket () and serversocket () class?
Why do I keep getting EINTR from the socket calls?
Explain the TIME_WAIT state.