From 74eec29e0b77de9ccbab2c5a76bd6a58e03a2400 Mon Sep 17 00:00:00 2001 From: ohrensessel Date: Tue, 19 Aug 2014 11:21:02 +0200 Subject: [PATCH] Let dhcpd also announce NTP servers --- templates/etc/dhcp/dhcpd.conf.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/etc/dhcp/dhcpd.conf.erb b/templates/etc/dhcp/dhcpd.conf.erb index dc50cc0..56a2ca4 100644 --- a/templates/etc/dhcp/dhcpd.conf.erb +++ b/templates/etc/dhcp/dhcpd.conf.erb @@ -19,6 +19,7 @@ subnet 10.112.0.0 netmask 255.255.192.0 { # DNS: this gateway (<%= @gw_ipv4 %>) & srv01 (10.112.1.1) option domain-name-servers <%= @gw_ipv4 %>, 10.112.1.1; option routers <%= @gw_ipv4 %>; + option ntp-servers 10.112.16.1, 10.112.22.1; } include "/etc/dhcp/static.conf";