Subversion Repositories configs

Rev

Rev 133 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 - 1
#
2
# DHCP Server Configuration file.
3
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample
4
#   see 'man 5 dhcpd.conf'
5
#
6
ddns-update-style interim;
7
ignore client-updates;
8
 
9
subnet 10.192.25.0 netmask 255.255.255.0 {
10
 
11
   # The range of IP addresses the server
12
   # will issue to DHCP enabled PC clients
13
   # booting up on the network
14
   range 10.192.25.150 10.192.25.199;
15
 
16
   # Set the amount of time in seconds that
17
   # a client may keep the IP address
18
   default-lease-time 86400;
19
   max-lease-time 86400;
20
 
21
   # Set the default gateway to be used by
22
   # the PC clients
23
   option routers 10.192.25.254;
24
 
25
   # Don't forward DHCP requests from this
26
   # NIC interface to any other NIC
27
   # interfaces
28
   option ip-forwarding off;
29
 
30
   # Set the broadcast address and subnet mask
31
   # to be used by the DHCP clients
32
   option broadcast-address 10.192.25.255;
33
   option subnet-mask 255.255.255.0;
34
 
35
   # Set the NTP server to be used by the
36
   # DHCP clients
37
   option ntp-servers 10.192.25.254;
38
 
39
   # Set the DNS server to be used by the
40
   # DHCP clients
41
   option domain-name-servers 10.192.25.240;
42
 
43
   # If you specify a WINS server for your Windows clients,
44
   # you need to include the following option in the dhcpd.conf file:
45
   #option netbios-name-servers 192.168.1.100;
46
 
47
   host uwe-pc {
48
     hardware ethernet 00:1F:BC:09:52:73;
49
     fixed-address 10.192.25.201;
50
   }
51
 
52
   host kevin-tablet {
53
     hardware ethernet 10:BF:48:F2:42:8D;
54
     fixed-address 10.192.25.231;
55
   }
56
 
57
   host michelle-tablet {
58
     hardware ethernet 10:BF:48:EF:45:45;
59
     fixed-address 10.192.25.232;
60
   }
61
 
62
   # You can also assign specific IP addresses based on the clients'
63
   # ethernet MAC address as follows (Host's name is "laser-printer":
64
   host laser-printer {
65
     hardware ethernet 08:00:37:bc:e8:c5;
66
     fixed-address 10.192.25.253;
67
   }
68
}