zen_dhcpd/defaults/main/dhcpd_vars.yml
Chris Hammer b23b0c58b9 0.1.8-DEV-20200215-125347
-------------------------
    * ADD:
      - added vlan66 support

    * MODIFY:
      - modified templates/dhcpd_conf.j2 to utilize static assignments only if defined
2020-02-15 00:54:45 -05:00

51 lines
1.1 KiB
YAML

---
dhcp_conf_file : /etc/dhcp/dhcpd.conf
dhcp_conf_version : 1.0
dhcp_conf_revision : 20200215-124911
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.129
range_to : 10.10.10.158
broadcast : 10.10.10.159
dns : 10.1.1.210
pxeboot : 10.10.10.129
vlan66:
subnet : 10.10.10.224
netmask : 255.255.255.224
router : 10.10.10.254
range_from : 10.10.10.226
range_to : 10.10.10.253
broadcast : 10.10.10.255
dns : 10.1.1.210
pxeboot : 10.10.10.225