[dhcp_server] [cloud-noc01] add os community subnet (and one host for now) for pxe boot

Signed-off-by: Rick Elrod <relrod@redhat.com>
This commit is contained in:
Rick Elrod 2019-03-22 17:18:33 +00:00
parent 16c2787a56
commit 402e4c20f4

View file

@ -604,3 +604,21 @@ subnet 209.132.184.0 netmask 255.255.255.0 {
}
}
# community openshift public net
subnet 38.145.48.0 netmask 255.255.254.0 {
allow booting;
allow bootp;
option domain-name "fedorainfracloud.org";
option domain-name-servers 66.35.62.163, 152.19.134.150;
option routers 38.145.49.254;
#option log-servers 209.132.184.2;
host virthost-os01 {
hardware ethernet 50:9A:4C:63:26:E6;
fixed-address 38.145.48.11;
option host-name "virthost-os01.fedorainfracloud.org";
next-server 38.145.48.10;
filename "pxelinux.0";
}
}