Ales Komarek | 6d9bc2c | 2014-09-21 17:25:05 +0200 | [diff] [blame^] | 1 | {%- from "isc_dhcp/map.jinja" import server with context %} |
| 2 | |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 3 | # Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf). |
Ales Komarek | 6d9bc2c | 2014-09-21 17:25:05 +0200 | [diff] [blame^] | 4 | DHCPD_CONF=/etc/dhcp/dhcpd.conf |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 5 | |
| 6 | # Path to dhcpd's PID file (default: /var/run/dhcpd.pid). |
| 7 | #DHCPD_PID=/var/run/dhcpd.pid |
| 8 | |
Ales Komarek | 63c2db5 | 2014-09-15 09:26:22 +0200 | [diff] [blame] | 9 | # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? |
| 10 | # Separate multiple interfaces with spaces, e.g. "eth0 eth1". |
Ales Komarek | 6d9bc2c | 2014-09-21 17:25:05 +0200 | [diff] [blame^] | 11 | INTERFACES="{{ server.interfaces|join(' ') }}" |