diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-03-08 20:26:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-03-08 20:37:50 +0100 |
commit | 0fefe3c3b9250ad2ba841287a94036119728c708 (patch) | |
tree | 3eab61065bf25dbfdf6bd2b896db2ff076003869 /src/conf_mode | |
parent | 993c2975141a255ca7dece41bbaf4271ae264515 (diff) | |
download | vyos-1x-0fefe3c3b9250ad2ba841287a94036119728c708.tar.gz vyos-1x-0fefe3c3b9250ad2ba841287a94036119728c708.zip |
T103: [dhcp-server] add support to configure host declarative names
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/dhcp_server.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/conf_mode/dhcp_server.py b/src/conf_mode/dhcp_server.py index 12d138218..e57bad28b 100755 --- a/src/conf_mode/dhcp_server.py +++ b/src/conf_mode/dhcp_server.py @@ -58,6 +58,9 @@ on expiry { execute("/usr/libexec/vyos/system/on-dhcp-event.sh", "release", ClientName, ClientIp, ClientMac, ClientDomain); } {% endif %} +{%- if host_decl_name %} +use-host-decl-names on; +{%- endif %} ddns-update-style {% if ddns_enable -%} interim {%- else -%} none {%- endif %}; {% if static_route -%} option rfc3442-static-route code 121 = array of integer 8; @@ -242,6 +245,7 @@ default_config_data = { 'ddns_enable': False, 'global_parameters': [], 'hostfile_update': False, + 'host_decl_name': False, 'static_route': False, 'wpad': False, 'shared_network': [], @@ -274,6 +278,11 @@ def get_config(): if conf.exists('hostfile-update'): dhcp['hostfile_update'] = True + # If enabled every host declaration within that scope, the name provided + # for the host declaration will be supplied to the client as its hostname. + if conf.exists('host-decl-name'): + dhcp['host_decl_name'] = True + # check for multiple, shared networks served with DHCP addresses if conf.exists('shared-network-name'): for network in conf.list_nodes('shared-network-name'): |