Page MenuHomeVyOS Platform

ipv4.tmpl
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

ipv4.tmpl

### Autogenerated by interface.py ###
option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
timeout 60;
retry 60;
initial-interval 2;
interface "{{ ifname }}" {
send host-name "{{ dhcp_options.host_name }}";
{% if dhcp_options.client_id is defined and dhcp_options.client_id is not none %}
{% set client_id = dhcp_options.client_id %}
{# Use HEX representation of client-id as it is send in MAC-address style using hex characters. If not HEX, use double quotes ASCII format #}
{% if not dhcp_options.client_id.split(':') | length >= 5 %}
{% set client_id = '"' + dhcp_options.client_id + '"' %}
{% endif %}
send dhcp-client-identifier {{ 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;
{% if dhcp_options.reject is defined and dhcp_options.reject is not none %}
# Block addresses coming from theses dhcp servers if configured.
reject {{ dhcp_options.reject | join(', ') }};
{% endif %}
}

File Metadata

Mime Type
text/plain
Expires
Sat, Sep 26, 1:21 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4285250
Default Alt Text
ipv4.tmpl (1 KB)

Event Timeline