zen_dhcpd/defaults/main/dhcpd_vars.yml
Chris Hammer e6dc9047d4 0.1.6-DEV-20200214-235451
-------------------------
    * ADD:
      - added dummy static_assignments value for ci testing

    * MODIFY:
      - modified dhcp_deploy_to -> dhcp_vlan; changes templates/dhcpd_conf.j2
2020-02-14 23:55:06 -05:00

41 lines
838 B
YAML

---
dhcp_conf_file : /etc/dhcp/dhcpd.conf
dhcp_conf_version : 1.0
dhcp_conf_revision : 20200214-13647
dhcp_ddns_style : none
dhcp_authoritive : "True"
dhcp_domain_name: "thezengarden.net"
dhcp_default_lease : 86400
dhcp_max_lease : 604800
dhcp_pxeboot_file : pxelinux.0
dhcp_vlan: "{{ deploy_to | default('vlan1') }}"
dhcp_networks:
vlan1:
subnet : 10.1.1.0
netmask : 255.255.255.0
router : 10.1.1.10
range_from : 10.1.1.161
range_to : 10.1.1.199
broadcast : 10.1.1.255
dns : 10.1.1.210
pxeboot : 10.1.1.193
vlan55:
subnet : 10.10.10.128
netmask : 255.255.255.224
router : 10.10.10.158
range_from : 10.10.10.147
range_to : 10.10.10.149
broadcast : 10.10.10.159
dns : 10.1.1.210
pxeboot : 10.10.10.129