-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdhcpd.conf
44 lines (35 loc) · 937 Bytes
/
dhcpd.conf
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
37
38
39
40
41
42
43
44
#
# DHCP server options.
# See dhcpd.conf(5) and dhcpd(8) for more information.
#
# Network: 192.168.1.0/255.255.255.0
# Domain name: charrua
# Name servers: 192.168.1.1
# Default router: 192.168.1.1
# Addresses: 192.168.1.70 - 192.168.1.100
#
option domain-name "charrua";
subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
option domain-name-servers 192.168.1.1;
range 192.168.1.70 192.168.1.100;
host montevideo {
hardware ethernet 00:1d:72:80:e9:10;
fixed-address 192.168.1.10;
}
host garra {
hardware ethernet 00:1d:e0:06:74:11;
fixed-address 192.168.1.11;
}
}
# Network: 192.168.2.0/255.255.255.0
# Domain name: minuanes
# Name servers: 192.168.2.1
# Default router: 192.168.2.1
# Addresses: 192.168.2.50 - 192.168.2.100
#
#subnet 192.168.2.0 netmask 255.255.255.0 {
# option routers 192.168.2.1;
# option domain-name-servers 192.168.2.1;
# range 192.168.2.50 192.168.2.100;
#}