Hostname vs FQDN – Difference Between Hostname and Fully Qualified Domain Name

domaindomain-name-systemhostname

I am new to the world of setting up servers and am baffled by the term hostname and fully qualified domain name (FQDN).
For example, if I want to set up a server that hosts files on the local network i.e. a file server, what would I use a hostname such as myfileserver or something else?
What if I wanted to set up a web server, mail server, etc. that external users could access?

Best Answer

Your hostname is the name of your computer.

Your fully qualified domain name is your hostname plus the domain your company uses often ending in .local.

So if the name of your computer is bob, and your company's domain is contoso.local, your computer's fully qualified domain name (FQDN) is bob.contoso.local.:

  • Hostname: bob
  • Domain: contoso.com
  • FQDN: bob.contoso.com.

In the case of a domain like contoso.local I did not use an "external" internet domain name. This name doesn't have to be the only way that you address the server.
If you make it available by its IP address you can use DNS or that IP address to allow external users to access it.
The dot at the end of the FQDN is used to indicate the empty top-level domain.

Some more information on DNS:

Edit: Thanks for the comment on .local domains RobM