Rev 133 | 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.100 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 clients#option domain-name-servers 10.192.25.240;option domain-name-servers 10.192.25.254;# 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:11:D2:62;fixed-address 10.192.25.201;}# 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;#}}