noc-cc01: make a copy of the dhcpd file from the old vm
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
4fadbe6747
commit
f33e1ffe60
1 changed files with 36 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
||||||
|
server-identifier cloud-noc-os01.rdu-cc.fedoraproject.org;
|
||||||
|
ddns-update-style none;
|
||||||
|
|
||||||
|
shared-network mgmt {
|
||||||
|
option domain-name "mgmt.rdu-cc.fedoraproject.org";
|
||||||
|
option domain-name-servers 8.8.8.8, 1.1.1.1;
|
||||||
|
|
||||||
|
subnet 172.23.1.0 netmask 255.255.255.0 {
|
||||||
|
allow booting;
|
||||||
|
allow bootp;
|
||||||
|
authoritative;
|
||||||
|
|
||||||
|
class "pxeclients" {
|
||||||
|
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
|
||||||
|
next-server 172.23.1.3;
|
||||||
|
filename "pxelinux/pxelinux.0";
|
||||||
|
}
|
||||||
|
|
||||||
|
option routers 172.23.1.254;
|
||||||
|
range 172.23.1.100 172.23.1.249;
|
||||||
|
}
|
||||||
|
subnet 172.23.5.0 netmask 255.255.255.0 {
|
||||||
|
allow booting;
|
||||||
|
allow bootp;
|
||||||
|
authoritative;
|
||||||
|
|
||||||
|
class "pxeclients" {
|
||||||
|
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
|
||||||
|
next-server 172.23.5.3;
|
||||||
|
filename "pxelinux/pxelinux.0";
|
||||||
|
}
|
||||||
|
|
||||||
|
#option routers 172.23.5.254;
|
||||||
|
range 172.23.5.100 172.23.5.249;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue