dhcp: T1806: explain how to use quote characters inside raw parameters

This commit is contained in:
Jernej Jakob 2019-12-21 12:08:54 +01:00 committed by Christian Poessinger
parent 52f5d4f1d9
commit 66c64bd3a3

View File

@ -317,12 +317,24 @@ Always verify that the parameters are correct before commiting the configuration
Refer to isc-dhcp's dhcpd.conf manual for more information:
https://kb.isc.org/docs/isc-dhcp-44-manual-pages-dhcpdconf
Quotes can be used inside parameter values by replacing all quote characters
with the string ``"``. They will be replaced with literal quote characters
when generating dhcpd.conf.
Example
^^^^^^^
.. opcmd:: set service dhcp-server shared-network-name dhcpexample subnet 192.0.2.0/24 static-mapping example static-mapping-parameters "option domain-name-servers 192.0.2.11, 192.0.2.12;"
Override the static-mapping's dns-server with a custom one that will be sent only to this host.
Override the static-mapping's dns-server with a custom one that will be sent
only to this host.
.. opcmd:: set service dhcp-server shared-network-name dhcpexample subnet 192.0.2.0/24 static-mapping example static-mapping-parameters "option pxelinux.configfile "pxelinux.cfg/01-00-15-17-44-2d-aa";"
An option that takes a quoted string is set by replacing all quote characters
with the string ``"`` inside the static-mapping-parameters value.
The resulting line in dhcpd.conf will be
``option pxelinux.configfile "pxelinux.cfg/01-00-15-17-44-2d-aa";``.
Operation Mode
--------------