Skip to content

add more dhcp config #179

@rubo77

Description

@rubo77

This is our current config on vpn6:

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions