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
Why do we need sockets?
How does unix socket work?
What is socket address with example?
How many socket connections can a server handle?
Why do we need socket programming?
How can I set the timeout for the connect() system call?
What's better 6pt or 12pt sockets?
How are unix domain sockets implemented?
Can multiple clients connect to same socket?
How can I force a socket to send the data in its buffer?
What is sae socket?
What are the pros/cons of select(), non-blocking I/O and SIGIO?
What is a socket connection?
Why do I get EPROTO from read()?
What is a socket set used for?