How can I find the full hostname (FQDN) of the system I am running on?
Answer Posted / 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 |
Post New Answer View All Answers
What is the difference between a socket and a port?
What's the difference between impact sockets and regular sockets?
Why do we need sockets?
What is socket address?
Is there any advantage to handling the signal, rather than just ignoring it and checking for the EPIPE error? Are there any useful parameters passed to the signal catching function?
What is the function of socket?
What exactly is a socket?
How can I write a multi-homed server?
What is a socket set used for?
Can a socket have multiple ports?
How do unix sockets work?
What is difference between socket () and serversocket () class?
Why does it take so long to detect that the peer died?
How are unix domain sockets implemented?
What is socket address with example?