* Add the rdnss daemon.

* Add the ndisc6 package to the system path if IPv6 is enabled.

svn path=/nixos/trunk/; revision=26496
This commit is contained in:
Eelco Dolstra 2011-03-24 16:23:28 +00:00
parent 69c4a662de
commit b2d6dfecbc
3 changed files with 51 additions and 1 deletions

View file

@ -107,6 +107,7 @@
./services/networking/privoxy.nix
./services/networking/quassel.nix
./services/networking/radvd.nix
./services/networking/rdnssd.nix
./services/networking/sabnzbd.nix
./services/networking/ssh/lshd.nix
./services/networking/ssh/sshd.nix

View file

@ -0,0 +1,47 @@
# Module for rdnssd, a daemon that configures DNS servers in
# /etc/resolv/conf from IPv6 RDNSS advertisements.
{ config, pkgs, ... }:
with pkgs.lib;
{
###### interface
options = {
services.rdnssd.enable = mkOption {
default = config.networking.enableIPv6;
description =
''
Whether to enable the RDNSS daemon
(<command>rdnssd</command>), which configures DNS servers in
<filename>/etc/resolv.conf</filename> from RDNSS
advertisements sent by IPv6 routers.
'';
};
};
###### implementation
config = mkIf config.services.rdnssd.enable {
jobs.rdnssd =
{ description = "RDNSS daemon";
# Start before the network interfaces are brought up so that
# the daemon receives RDNSS advertisements from the kernel.
startOn = "starting network-interfaces";
# !!! Should write to /var/run/rdnssd/resolv.conf and run the daemon under another uid.
exec = "${pkgs.ndisc6}/sbin/rdnssd --resolv-file /etc/resolv.conf -u root";
daemonType = "fork";
};
};
}

View file

@ -179,7 +179,9 @@ in
pkgs.nettools
pkgs.wirelesstools
pkgs.rfkill
] ++ optional (cfg.bridges != {}) [ pkgs.bridge_utils ];
]
++ optional (cfg.bridges != {}) pkgs.bridge_utils
++ optional cfg.enableIPv6 pkgs.ndisc6;
security.setuidPrograms = [ "ping" "ping6" ];