You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cat /etc/dhcp/dhcpd.conf
# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;
default-lease-time 600;
max-lease-time 3600;
log-facility local7;
include "/etc/dhcp/interface-br-ffki.conf";
root@vpn6:~# cat /etc/dhcp/interface-br-ffki.conf
subnet 10.116.128.0 netmask 255.255.128.0 {
authoritative;
range 10.116.184.12 10.116.184.244;
range 10.116.185.11 10.116.185.244;
range 10.116.186.11 10.116.186.244;
range 10.116.187.11 10.116.187.244;
range 10.116.188.11 10.116.188.244;
range 10.116.189.11 10.116.189.244;
range 10.116.190.11 10.116.190.244;
range 10.116.191.11 10.116.191.244;
default-lease-time 60;
max-lease-time 300;
option domain-name "ffki";
option domain-name-servers 10.116.184.1;
option ntp-servers 10.116.184.1;
option routers 10.116.184.1;
}
this has to be implemented in puppet
The text was updated successfully, but these errors were encountered:
This is our current config on vpn6:
this has to be implemented in puppet
The text was updated successfully, but these errors were encountered: