FQDN: Difference between revisions

From Q
Jump to navigation Jump to search
Tgurr (talk | contribs)
No edit summary
Tgurr (talk | contribs)
No edit summary
Line 13: Line 13:


== Configuration for a dynamic IP adress ==
== Configuration for a dynamic IP adress ==
{{Note|The following isn't necessary when using systemd as it configurates everything correctly.}}


FQDN entry for dynamic IP address (e.g. via DHCP):
FQDN entry for dynamic IP address (e.g. via DHCP):

Revision as of 14:17, 13 November 2013

The current Full Qualified Domain Name, in short FQDN is setup via the /etc/hosts file.

Configuration for a static IP adress

FQDN entry for static IP address:

File: /etc/hosts
127.0.0.1       localhost
::1             localhost
192.168.0.123   machine1.domain.local        machine1

Configuration for a dynamic IP adress

Note: The following isn't necessary when using systemd as it configurates everything correctly.

FQDN entry for dynamic IP address (e.g. via DHCP):

File: /etc/hosts
127.0.0.1       machine1.domain.local        machine1        localhost

Check FQDN configuration

If everything is correctly configured a

# hostname --fqdn

should output the full FQDN.

Code: Output
machine1.domain.local