summary refs log tree commit diff
path: root/nixos/modules/services/networking/keepalived/virtual-ip-options.nix
blob: 1b8889b1b4724762de3fb56be44db5411ef7e7d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib } :

with lib;
{
  options = {

    addr = mkOption {
      type = types.str;
      description = ''
        IP address, optionally with a netmask: IPADDR[/MASK]
      '';
    };

    brd = mkOption {
      type = types.nullOr types.str;
      default = null;
      description = ''
        The broadcast address on the interface.
      '';
    };

    dev = mkOption {
      type = types.nullOr types.str;
      default = null;
      description = ''
        The name of the device to add the address to.
      '';
    };

    scope = mkOption {
      type = types.nullOr types.str;
      default = null;
      description = ''
        The scope of the area where this address is valid.
      '';
    };

    label = mkOption {
      type = types.nullOr types.str;
      default = null;
      description = ''
        Each address may be tagged with a label string. In order to preserve
        compatibility with Linux-2.0 net aliases, this string must coincide with
        the name of the device or must be prefixed with the device name followed
        by colon.
      '';
    };

  };
}