2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, ... }:
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
with pkgs.lib;
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.openvpn;
|
|
|
|
|
|
|
|
inherit (pkgs) openvpn;
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
PATH = "${pkgs.iptables}/sbin:${pkgs.coreutils}/bin:${pkgs.iproute}/sbin:${pkgs.nettools}/sbin";
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
|
|
makeOpenVPNJob = cfg :
|
|
|
|
let
|
|
|
|
upScript = ''
|
|
|
|
#!/bin/sh
|
|
|
|
exec &> /var/log/openvpn-${cfg.id}-up
|
|
|
|
PATH=${PATH}
|
|
|
|
${cfg.up}
|
|
|
|
'';
|
|
|
|
downScript = ''
|
|
|
|
#!/bin/sh
|
|
|
|
exec &> /var/log/openvpn-${cfg.id}-down
|
|
|
|
PATH=${PATH}
|
|
|
|
${cfg.down}
|
|
|
|
'';
|
2009-10-12 18:36:19 +02:00
|
|
|
configFile = pkgs.writeText "openvpn-config-${cfg.id}"
|
|
|
|
''
|
|
|
|
${if cfg ? up || cfg ? down then "script-security 2" else ""}
|
|
|
|
${cfg.config}
|
|
|
|
${if cfg ? up then "up ${pkgs.writeScript "openvpn-${cfg.id}-up" upScript}" else "" }
|
|
|
|
${if cfg ? down then "down ${pkgs.writeScript "openvpn-${cfg.id}-down" downScript}" else "" }
|
|
|
|
'';
|
2009-05-01 19:57:07 +02:00
|
|
|
in {
|
2009-10-12 18:36:19 +02:00
|
|
|
description = "OpenVPN-${cfg.id}";
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
startOn = "network-interfaces/started";
|
|
|
|
stopOn = "network-interfaces/stop";
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
environment = { PATH = "${pkgs.coreutils}/bin"; };
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
script =
|
|
|
|
''
|
2009-05-01 19:57:07 +02:00
|
|
|
exec &> /var/log/openvpn-${cfg.id}
|
2009-10-12 18:36:19 +02:00
|
|
|
${config.system.sbin.modprobe} tun || true
|
2009-05-01 19:57:07 +02:00
|
|
|
${openvpn}/sbin/openvpn --config ${configFile}
|
2009-10-12 18:36:19 +02:00
|
|
|
'';
|
2009-05-01 19:57:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2009-10-12 18:36:19 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.openvpn = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable OpenVPN.";
|
|
|
|
};
|
|
|
|
|
|
|
|
servers = mkOption {
|
|
|
|
example = [
|
|
|
|
{
|
|
|
|
id = "server-simplest";
|
|
|
|
config = ''
|
|
|
|
# Most simple configuration: http://openvpn.net/index.php/documentation/miscellaneous/static-key-mini-howto.html.
|
|
|
|
# server :
|
|
|
|
dev tun
|
|
|
|
ifconfig 10.8.0.1 10.8.0.2
|
|
|
|
secret static.key
|
|
|
|
'';
|
|
|
|
up = "ip route add ..!";
|
|
|
|
down = "ip route add ..!";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
id = "client-simplest";
|
|
|
|
config = ''
|
|
|
|
#client:
|
|
|
|
#remote myremote.mydomain
|
|
|
|
#dev tun
|
|
|
|
#ifconfig 10.8.0.2 10.8.0.1
|
|
|
|
#secret static.key
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
{
|
|
|
|
id = "server-scalable";
|
|
|
|
config = ''
|
|
|
|
multiple clienst
|
|
|
|
see example file found in http://openvpn.net/index.php/documentation/howto.html
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
{
|
|
|
|
id = "client-scalabe";
|
|
|
|
config = '' dito '';
|
|
|
|
}
|
|
|
|
];
|
|
|
|
default = [];
|
|
|
|
# !!! clean up this description please
|
|
|
|
description = ''
|
|
|
|
openvpn instances to be run. Each will be put into an extra job named openvpn-{id}
|
|
|
|
|
|
|
|
The up and down properties will be added config line up=/nix/store/xxx-up-script
|
|
|
|
automatically for you. If you define at least one of up/down
|
|
|
|
"script-security 2" will be prepended to your config.
|
|
|
|
|
|
|
|
Don't forget to check that the all package sizes can be sent. if scp hangs or such you should set
|
|
|
|
--fragment XXX --mssfix YYY.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
###### implementation
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
config = mkIf cfg.enable {
|
2009-05-01 19:57:07 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
jobAttrs = listToAttrs (map (c: nameValuePair "openvpn-${cfg.id}" (makeOpenVPNJob c)) cfg.servers);
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
};
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
}
|