diff options
Diffstat (limited to 'roles/install_dhcp')
| -rw-r--r-- | roles/install_dhcp/tasks/main.yml | 15 | ||||
| -rw-r--r-- | roles/install_dhcp/templates/dhcpd.conf.j2 | 18 | 
2 files changed, 33 insertions, 0 deletions
diff --git a/roles/install_dhcp/tasks/main.yml b/roles/install_dhcp/tasks/main.yml new file mode 100644 index 0000000..60cac06 --- /dev/null +++ b/roles/install_dhcp/tasks/main.yml @@ -0,0 +1,15 @@ +--- +- name: install dhcp +  pacman: +      name: dhcp +      state: present + +- name: create dhcp file for static ips +  file: +      path: /etc/dhcpd.hosts.conf +      state: touch + +- name: dhcpd.conf +  template: +      src: dhcpd.conf.j2 +      dest: /etc/dhcpd.conf diff --git a/roles/install_dhcp/templates/dhcpd.conf.j2 b/roles/install_dhcp/templates/dhcpd.conf.j2 new file mode 100644 index 0000000..e985d1a --- /dev/null +++ b/roles/install_dhcp/templates/dhcpd.conf.j2 @@ -0,0 +1,18 @@ +default-lease-time 600; +max-lease-time 3600; + +authoritative; + +log-facility local7; + +subnet 10.222.0.0 netmask 255.255.0.0 { +	range {{ dhcp_start }} {{ dhcp_end }}; + +	option routers {{ bat0_ipv4 }}; +	option domain-name-servers {{ bat0_ipv4 }}; +} + +subnet {{ ansible_default_ipv4['address'] }} netmask 255.255.255.255 { +} + +include "/etc/dhcpd.hosts.conf";  | 
