|
|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
## dhcpd.conf -- ISC DHCP Daemon Configuration |
|
|
|
|
## |
|
|
|
|
|
|
|
|
|
# Options applicable to all subnets |
|
|
|
|
# Options applicable to all subnets |
|
|
|
|
option domain-name "example.com"; |
|
|
|
|
authoritative; |
|
|
|
|
default-lease-time 600; |
|
|
|
|
@ -37,7 +37,7 @@ subnet 192.168.1.0 netmask 255.255.255.0 {
|
|
|
|
|
max-lease-time 86400; # 24hour |
|
|
|
|
deny unknown clients; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Pool of unknown clients (i.e. MAC not known) |
|
|
|
|
pool { |
|
|
|
|
range 192.168.1.150 192.168.1.199; |
|
|
|
|
@ -51,8 +51,8 @@ subnet 192.168.1.0 netmask 255.255.255.0 {
|
|
|
|
|
# The list of clients we explicitly configure |
|
|
|
|
group { |
|
|
|
|
# Just assign a fixed IP address for machine "quux1" |
|
|
|
|
host quux1 { |
|
|
|
|
hardware ethernet 01:02:03:00:00:01; |
|
|
|
|
host quux1 { |
|
|
|
|
hardware ethernet 01:02:03:00:00:01; |
|
|
|
|
fixed-address 192.168.1.3; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|