summaryrefslogtreecommitdiff
path: root/data/templates/dhcp-client/ipv4.tmpl
blob: 71b429db63bec3bfe76e9eb40625a34a1585ad45 (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
### Autogenerated by interface.py ###

option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
timeout 60;
retry 300;

interface "{{ ifname }}" {
    send host-name "{{ dhcp_options.host_name }}";
{% if dhcp_options.client_id is defined and dhcp_options.client_id is not none %}
    send dhcp-client-identifier "{{ dhcp_options.client_id }}";
{% endif %}
{% if dhcp_options.vendor_class_id is defined and dhcp_options.vendor_class_id is not none %}
    send vendor-class-identifier "{{ dhcp_options.vendor_class_id }}";
{% endif %}
    # The request statement causes the client to request that any server responding to the
    # client send the client its values for the specified options.
    request subnet-mask, broadcast-address,{{ " routers," if dhcp_options.no_default_route is not defined }} domain-name-servers,
        rfc3442-classless-static-routes, domain-name, interface-mtu;

    # The require statement lists options that must be sent in order for an offer to be
    # accepted. Offers that do not contain all the listed options will be ignored!
    require subnet-mask;
}