forked from mirrors/nixpkgs
* 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:
parent
69c4a662de
commit
b2d6dfecbc
|
@ -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
|
||||
|
|
47
modules/services/networking/rdnssd.nix
Normal file
47
modules/services/networking/rdnssd.nix
Normal 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";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
|
@ -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" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue