summary refs log tree commit diff
path: root/nixos/tests/all-tests.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-12-23 15:44:14 +0100
committerMichael Weiss <dev.primeos@gmail.com>2020-05-25 14:06:25 +0200
commit234d95a6fc75208266049fa2f57641d6f4e5bd2a (patch)
tree054b3994094f6b897713748712b0e3d4309e107b /nixos/tests/all-tests.nix
parentbfdb43f1c37e6dfe8a576f04a0ed9c4626c18269 (diff)
downloadnixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar.gz
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar.bz2
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar.lz
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar.xz
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.tar.zst
nixpkgs-234d95a6fc75208266049fa2f57641d6f4e5bd2a.zip
nixos/networking: Add the FQDN and hostname to /etc/hosts
This fixes the output of "hostname --fqdn" (previously the domain name
was not appended). Additionally it's now possible to use the FQDN.

This works by unconditionally adding two entries to /etc/hosts:
127.0.0.1 localhost
::1 localhost

These are the first two entries and therefore gethostbyaddr() will
always resolve "127.0.0.1" and "::1" back to "localhost" [0].
This works because nscd (or rather the nss-files module) returns the
first matching row from /etc/hosts (and ignores the rest).

The FQDN and hostname entries are appended later to /etc/hosts, e.g.:
127.0.0.2 nixos-unstable.test.tld nixos-unstable
::1 nixos-unstable.test.tld nixos-unstable
Note: We use 127.0.0.2 here to follow nss-myhostname (systemd) as close
as possible. This has the advantage that 127.0.0.2 can be resolved back
to the FQDN but also the drawback that applications that only listen to
127.0.0.1 (and not additionally ::1) cannot be reached via the FQDN.
If you would like this to work you can use the following configuration:
```nix
networking.hosts."127.0.0.1" = [
  "${config.networking.hostName}.${config.networking.domain}"
  config.networking.hostName
];
```

Therefore gethostbyname() resolves "nixos-unstable" to the FQDN
(canonical name): "nixos-unstable.test.tld".

Advantages over the previous behaviour:
- The FQDN will now also be resolved correctly (the entry was missing).
- E.g. the command "hostname --fqdn" will now work as expected.
Drawbacks:
- Overrides entries form the DNS (an issue if e.g. $FQDN should resolve
  to the public IP address instead of 127.0.0.1)
  - Note: This was already partly an issue as there's an entry for
    $HOSTNAME (without the domain part) that resolves to
    127.0.1.1 (!= 127.0.0.1).
- Unknown (could potentially cause other unexpected issues, but special
  care was taken).

[0]: Some applications do apparently depend on this behaviour (see
c578924) and this is typically the expected behaviour.

Co-authored-by: Florian Klink <flokli@flokli.de>
Diffstat (limited to 'nixos/tests/all-tests.nix')
0 files changed, 0 insertions, 0 deletions