summaryrefslogtreecommitdiff
path: root/data/templates/dhcp-client/ipv6.tmpl
blob: 85841fe941ddc8d98c0e95e3a2e7802124f6c3be (plain)
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
51
52
53
54
### Autogenerated by interface.py ###

# man https://www.unix.com/man-page/debian/5/dhcp6c.conf/
interface {{ ifname }} {
{% if address is defined and 'dhcpv6' in address %}
    request domain-name-servers;
    request domain-name;
{%   if dhcpv6_options is defined and dhcpv6_options.parameters_only is defined %}
    information-only;
{%   endif %}
{%   if dhcpv6_options is not defined or dhcpv6_options.temporary is not defined %}
    send ia-na 0; # non-temporary address
{%   endif %}
{% endif %}
{% if dhcpv6_options is defined and dhcpv6_options.pd is defined %}
{%   for pd in dhcpv6_options.pd %}
    send ia-pd {{ pd }}; # prefix delegation #{{ pd }}
{%   endfor %}
{% endif %}
};

{% if address is defined and 'dhcpv6' in address %}
{%   if dhcpv6_options is not defined or dhcpv6_options.temporary is not defined %}
id-assoc na 0 {
    # Identity association for non temporary address
};
{%   endif %}
{% endif %}

{% if dhcpv6_options is defined and dhcpv6_options.pd is defined %}
{%   for pd in dhcpv6_options.pd %}
id-assoc pd {{ pd }} {
{#   length got a default value #}
    prefix ::/{{ dhcpv6_options.pd[pd].length }} infinity;
{%     set sla_len = 64 - dhcpv6_options.pd[pd].length|int %}
{%     set count = namespace(value=0) %}
{%     for interface in dhcpv6_options.pd[pd].interface if dhcpv6_options.pd[pd].interface is defined %}
    prefix-interface {{ interface }} {
        sla-len {{ sla_len }};
{%       if dhcpv6_options.pd[pd].interface[interface].sla_id is defined and dhcpv6_options.pd[pd].interface[interface].sla_id is not none %}
        sla-id {{ dhcpv6_options.pd[pd].interface[interface].sla_id }};
{%       else %}
        sla-id {{ count.value }};
{%       endif %}
{%       if dhcpv6_options.pd[pd].interface[interface].address is defined and dhcpv6_options.pd[pd].interface[interface].address is not none %}
        ifid {{ dhcpv6_options.pd[pd].interface[interface].address }};
{%       endif %}
    };
{%      set count.value = count.value + 1 %}
{%     endfor %}
};
{%   endfor %}
{% endif %}