sourceforge/nodemin/trunk/files/192.168.1.2/dhcpd.conf @ 730
4 | batix | # configuration for dhcp server
|
|
8 | batix | option domain-name "batix.cz";
|
|
option routers 192.168.1.254;
|
|||
option domain-name-servers 192.168.1.1;
|
|||
option subnet-mask 255.255.255.0;
|
|||
option broadcast-address 192.168.1.255;
|
|||
default-lease-time 1200;
|
|||
max-lease-time 9200;
|
|||
deny unknown-clients;
|
|||
authoritative;
|
|||
always-broadcast on;
|
|||
4 | batix | ||
8 | batix | # nov? s?t
|
|
subnet 192.168.1.0 netmask 255.255.255.0 {
|
|||
range 192.168.1.50 192.168.1.100;
|
|||
range 192.168.1.150 192.168.1.200;
|
|||
always-broadcast on;
|
|||
# host 1
|
|||
host mara {
|
|||
hardware ethernet 00:0A:E4:AA:4A:D3;
|
|||
fixed-address 192.168.1.50;
|
|||
}
|
|||
}
|
|||
4 | batix |