forked from mthiel117/cvp-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dhcpd.conf
30 lines (27 loc) · 813 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
# isc-dhcpd-server Ubuntu
# /etc/dhcp/dhcpd.conf
# DHCP server 10.1.1.32
# Subnet of ZTP interface
subnet 10.1.1.0 netmask 255.255.255.0 {
range 10.1.1.128 10.1.1.160;
option routers 10.1.1.1;
option domain-name-servers 192.168.1.246;
max-lease-time 300;
}
# Per host definition
host DC1-SW1 {
option host-name "DC1-SW1";
hardware ethernet 00:1c:73:c7:e0:22;
fixed-address 10.1.1.128;
option bootfile-name "http://192.168.1.248/ztp/bootstrap";
option routers 10.1.1.1;
option domain-name-servers 192.168.1.246;
}
host DC1-SW2 {
option host-name "DC1-SW2";
hardware ethernet 28:99:3a:bb:27:d2;
fixed-address 10.1.1.129;
option bootfile-name "http://192.168.1.248/ztp/bootstrap";
option routers 10.1.1.1;
option domain-name-servers 192.168.1.246;
}