Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
## DHCP Server Configuration file.# see /usr/share/doc/dhcp*/dhcpd.conf.sample# see 'man 5 dhcpd.conf'#ddns-update-style interim;ignore client-updates;subnet 10.192.25.0 netmask 255.255.255.0 {# The range of IP addresses the server# will issue to DHCP enabled PC clients# booting up on the networkrange 10.192.25.150 10.192.25.199;# Set the amount of time in seconds that# a client may keep the IP addressdefault-lease-time 86400;max-lease-time 86400;# Set the default gateway to be used by# the PC clientsoption routers 10.192.25.254;# Don't forward DHCP requests from this# NIC interface to any other NIC# interfacesoption ip-forwarding off;# Set the broadcast address and subnet mask# to be used by the DHCP clientsoption broadcast-address 10.192.25.255;option subnet-mask 255.255.255.0;# Set the NTP server to be used by the# DHCP clientsoption ntp-servers 10.192.25.254;# Set the DNS server to be used by the# DHCP clientsoption domain-name-servers 10.192.25.240;# If you specify a WINS server for your Windows clients,# you need to include the following option in the dhcpd.conf file:#option netbios-name-servers 192.168.1.100;host uwe-pc {hardware ethernet 00:1F:BC:09:52:73;fixed-address 10.192.25.201;}host kevin-tablet {hardware ethernet 10:BF:48:F2:42:8D;fixed-address 10.192.25.231;}host michelle-tablet {hardware ethernet 10:BF:48:EF:45:45;fixed-address 10.192.25.232;}# You can also assign specific IP addresses based on the clients'# ethernet MAC address as follows (Host's name is "laser-printer":host laser-printer {hardware ethernet 08:00:37:bc:e8:c5;fixed-address 10.192.25.253;}}