I've recently been "forced" to perform some sysadmin work, while this isn't something that I absolutely love doing I've been reading, experimenting and learning a lot.
There is one fundamental aspect of server configuration that I've not been able to grasp - hostnames.
In Ubuntu for instance, one should set the hostname like this (according to the Linode Library):
echo "plato" > /etc/hostname
hostname -F /etc/hostname
File: /etc/hosts
127.0.0.1 localhost.localdomain localhost
12.34.56.78 plato.example.com plato
I assume that plato
is an arbitrary name and that plato.example.com
is the FQDN.
Now my questions are:
- Is it mandatory?
- To what purpose?
- Where is it needed / used?
- Why can't I define "localhost" as the hostname for every machine?
- Do I have to set up a DNS entry for the
plato.example.com
FQDN? - Should
plato.example.com
be used as the reverse DNS entry for my IP?
Also, are there any "best practices" for picking hostnames? I've seen people using Greek letters, planet names and even mythological figures... What happens when we run out of letters / planets?
I'm sorry if this is a dumb question but I've never been too enthusiastic with network configurations.
These days, a system may have multiple interfaces, each with multiple addresses, and each address may even have multiple DNS entries associated with it. So what does a "system hostname" even mean?
Many applications will use the system hostname as a default identifier when they communicate elsewhere. For example, if you're collecting syslog messages at a central server, the messages will all be tagged with the hostname of the originating system. In an ideal world you would probably ignore this (because you don't necessarily want to trust the client), but the default behavior -- if you named all your systems "localhost" -- would result in a bunch of log messages that you wouldn't be able to associate with a specific system.
As other folks have pointed out, the system hostname is also a useful identifier if you find yourself remotely accessing a number of system. If you've got five windows attached to a systems named "localhost" then you're going to have a hard time keeping them straight.
In a similar vein, we try to make the system hostname matches the hostname we use for administrative access to a system. This helps avoid confusion when referring to the system (in email, conversations, documentation, etc).
Regarding DNS:
You want to have proper forward and reverse DNS entries for your applications in order to avoid confusion. You need some forward entry (name -> ip address) for people to be able to access your application conveniently. Having the reverse entry match is useful for an number of reasons -- for example, it helps you correctly identify the application if you find the corresponding ip address in a log.
Note that here I'm talking about "applications" and not "systems", because -- particularly with web servers -- it's common to have multiple ip addresses on a system, associated with different hostnames and services.
Trying to maintain name to ip mappings in your
/etc/hosts
file quickly becomes difficult as you manage an increasing number of systems. It's very easy to for the local hosts file to fall out of sync with respect to DNS, potentially leading to confusion and in some cases malfunction (because something tries to bind to an ip address that no longer exists on the system, for example).You could set every hostname to "localhost", but it's very handy to have
alix@plato ~ $
in your command prompt when you manage machines over ssh. Managing servers remotely could become very confusing if you don't.Having a correct FQDN is important for when you host a web server, or a mail server. These kinds of server applications like to know "who" they are running on.
For choosing a good naming scheme, I refer you to this very popular question .
A FQDN becomes useful only when it is meaningful to another computer. There are three levels to this:
When sending email or serving web pages to the outside world, the third one is the one you want to have. For most other cases, you can make do with a local DNS or even editing hosts files.
In that case, you can just make up a domain name (plato.alixnetwork could be fine as a FQDN) for use within your local network. The only added value of having the "alixnetwork" part (the domain name) is convenience when you have another local network you wish to distinguish it from.
A basic overview. Hostname are just pointers; you might assign one specific one to be the hostname referenced by the machine, but it could have multiple. Some services, notable mail and HTTP rely on domain names to know where services should be located and how to get to them.
A long time ago, all these names (which again, are just pointers to IP addresses) were kept track of in a file called
hosts
. As the system grew they were unable to keep the file synchronized across all the relevant computer participating in the various interconnected networks. So the DNS system was invented. When you do a name lookup, it still checks the hosts file first, then the DNS system. Windows may also check other systems like WINS or NetBIOS.When you put an entry in a
hosts
file, you are not assigning it to the computer. Assigning a hostname as the one used by the computer is done in the configuration files (on *nix systems) and System Properties in Windows systems (Windows system can also have NIC specific suffixes).Entries in the
hosts
file, like the DNS system, are just a mapping from a hostname to an IP address. In order to use the hostname 'localhost' (there's nothing special about it, it's a hostname like all the rest) it must be mapped to the loopback interface (so it will always point to the local computer). To ensure this works, all computers come with this default mapping in theirhosts
file, but it could potentially be removed, if you didn't want to be able to use that hostname.Further, as others have noted, it's very useful to assign a hostname to a computer. When connected to the computer, you can have it display its hostname when you login, or as your prompt, or any number of other places. This makes identifying the computer you're connected to easier. If you setup that hostname in DNS or put it in all the
hosts
files, you will be able to connect to the computer by referencing its hostname instead of having to know its IP address all the time. (Even more useful if the computer is using DHCP, as the address could change. If the computer updates DNS then the DNS record would point to the new IP address; you could still connect without knowing the new IP address because you know the DNS name).There are many other uses of both
hosts
and DNS, but I suspect you've got more questions than answers if you read all this.Ever host should be given a meaningful name. The hostname can server multiple purposes:
1- It helps you recognizing on which you are currently working.
2- Using names configured in
/etc/hosts
and/or DNS records is easier than memorizing many IP addresses.3- Localhost is a reserved name to refer to the current machine (address 127.0.0.1).
4- DNS records are useful to make your servers publicly accessible.
Choosing a suitable name for each server helps you much in your administration. Also, it helps your clients accessing your servers.
Just as a side note: Properly working forward and reverse DNS resolution is the absolute cornerstone of every IT installation on this planet. Never ever underestimate the necessity of a well maintained DNS and proper hostname resolution!
Disclaimer: the main question is about Linux systems, so feel free to ignore this answer if you are not interested in the Windows side of the issue.
Anyway, in Windows systems, apart from all the points mentioned in other answers, the hostname is actually used by the O.S. itself, for networking and authentication purposes; specifically:
LocalSystem
andNetworkService
user accounts, which can authenticate to other systems using the credentials of the system they are running on; this allows f.e. a process running asNetworkService
on SystemA to access a shared folder on SystemB by granting permissions on the folder to the user account of SystemA.Many sites and/or supposed 'admins' are now stating that the 'hostname' attribute contain the FQDN of the OS instance, which 'breaks' any resolution which appends the 'domainname' to it: