-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdhcpd.conf
More file actions
36 lines (31 loc) · 836 Bytes
/
dhcpd.conf
File metadata and controls
36 lines (31 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
ddns-update-style interim;
ignore client-updates;
# REDE A QUAL SE APLICA
subnet 192.168.0.0 netmask 255.255.255.0 {
# PXE FILE
filename "pxelinux.0";
# DEFAULT GATEWAY
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
# DOMÍNIO E SERVIDORES DNS
option domain-name "localhost";
option domain-name-servers 8.8.8.8,4.4.4.4;
# HORÁRIO (BR)
option time-offset -10800;
# RANGE DE IP (192.168.0.50 ao 192.168.0.254)
range dynamic-bootp 192.168.0.50 192.168.0.254;
default-lease-time 21600;
max-lease-time 43200;
}
host Carlos { # eth
hardware ethernet 70:71:BC:CB:0E:E9;
fixed-address 192.168.0.60;
}
host Pedro { # eth
hardware ethernet 10:78:D2:B8:A1:E3;
fixed-address 192.168.0.61;
}
host Kodi { # eth
hardware ethernet 3E:5E:C8:8C:F1:90;
fixed-address 192.168.0.62;
}