mirror of
https://github.com/SantaSpeen/kkep-praktic-2022.git
synced 2026-05-19 16:10:13 +00:00
31 lines
704 B
ISCdhcpd
31 lines
704 B
ISCdhcpd
# /etc/dhcp/dhcpd.conf file
|
|
# L-RTR-A
|
|
default-lease-time 600;
|
|
max-lease-time 7200;
|
|
|
|
ddns-update-style interim;
|
|
update-static-leases on;
|
|
zone skill39.wsr. {
|
|
primary 172.16.20.10;
|
|
}
|
|
zone 16.172.in-addr.arpa. {
|
|
primary 172.16.20.10;
|
|
}
|
|
authoritative;
|
|
|
|
option domain-name "skill39.wsr";
|
|
option domain-name-servers 172.16.20.10, 192.168.20.10;
|
|
|
|
subnet 172.16.50.0 netmask 255.255.255.252 {}
|
|
subnet 172.16.100.0 netmask 255.255.255.0 {
|
|
range 172.16.100.65 172.16.100.75;
|
|
option routers 172.16.100.1;
|
|
}
|
|
subnet 172.16.200.0 netmask 255.255.255.0 {
|
|
range 172.16.200.65 172.16.200.75;
|
|
option routers 172.16.200.1;
|
|
}
|
|
host lclib {
|
|
hardware ethernet 00:0C:29:1D:2C:06;
|
|
fixed-address 172.16.200.61;
|
|
} |