2011-02-19 19:19:55 +00:00
|
|
|
# Module for the IPv6 Router Advertisement Daemon.
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-02-19 19:19:55 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2011-02-19 19:19:55 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.radvd;
|
|
|
|
|
|
|
|
confFile = pkgs.writeText "radvd.conf" cfg.config;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2011-02-19 19:19:55 +00:00
|
|
|
services.radvd.enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
Whether to enable the Router Advertisement Daemon
|
|
|
|
(<command>radvd</command>), which provides link-local
|
|
|
|
advertisements of IPv6 router addresses and prefixes using
|
|
|
|
the Neighbor Discovery Protocol (NDP). This enables
|
|
|
|
stateless address autoconfiguration in IPv6 clients on the
|
|
|
|
network.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
services.radvd.config = mkOption {
|
|
|
|
example =
|
|
|
|
''
|
|
|
|
interface eth0 {
|
|
|
|
AdvSendAdvert on;
|
|
|
|
prefix 2001:db8:1234:5678::/64 { };
|
|
|
|
};
|
|
|
|
'';
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
The contents of the radvd configuration file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
users.extraUsers.radvd =
|
|
|
|
{ uid = config.ids.uids.radvd;
|
|
|
|
description = "Router Advertisement Daemon User";
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
systemd.services.radvd =
|
2011-02-19 19:19:55 +00:00
|
|
|
{ description = "IPv6 Router Advertisement Daemon";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
after = [ "network.target" ];
|
2011-02-19 19:19:55 +00:00
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
path = [ pkgs.radvd ];
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
preStart = ''
|
|
|
|
mkdir -m 755 -p /run/radvd
|
|
|
|
chown radvd /run/radvd
|
|
|
|
'';
|
2011-02-19 19:19:55 +00:00
|
|
|
|
2014-06-27 06:45:04 +00:00
|
|
|
serviceConfig =
|
|
|
|
{ ExecStart = "@${pkgs.radvd}/sbin/radvd radvd"
|
|
|
|
+ " -p /run/radvd/radvd.pid -m syslog -u radvd -C ${confFile}";
|
|
|
|
Restart = "always";
|
|
|
|
Type = "forking";
|
|
|
|
PIDFile = "/run/radvd/radvd.pid";
|
|
|
|
};
|
2011-02-19 19:19:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
|
|
}
|