cloud-noc-os01: pxeboot on internal networks and open firewall for dhcp and tftp

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2021-06-25 11:55:13 -07:00
parent a9d119a917
commit 96edb013e4
2 changed files with 15 additions and 0 deletions

View file

@ -10,6 +10,12 @@ shared-network mgmt {
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;
}
@ -18,6 +24,12 @@ shared-network mgmt {
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;
}