10

I found some information about installing ubuntu with MaaS and JuJu, and I would like to try it out however I am not finding any information on how to take in to account a DHCP server already in the network.

I need to be able to configure this to use the existing DHCP as it is on a router that is already working. Is this possible? I did find some information about it and how to configure it but it was for ISC DHCP Server. I am not sure how it will apply in this situation. But it appears that the DHCP and DNS Server work in tandem in order for MaaS and JuJu to work properly.

Does anyone know of any documentation or information I can use to work with my current DHCP Server.

Jorge Castro
  • 73,717
nexusguy59
  • 385
  • 3
  • 7

2 Answers2

7

You may refer to Manual DHCP configuration in the following link

There is also a nice document by DELL (Deploying workloads with Juju and MAAS) where you can find a section for using an existing DNS/DHCP server and you can find it here

Tolsadus
  • 103
Ahmadgeo
  • 1,421
0

I don't know about Juju, and I'm just learning MaaS, but I did a stock MaaS install (from the snap) on a machine with a pre-existing DHCP server.

I just turned off the machine's TFTP server and let MaaS's rackd handle TFTP service for me. Didn't need to touch the DHCP server, since it was already configured for PXE boot:

subnet 192.168.2.0 netmask 255.255.255.0 {
  range 192.168.2.128 192.168.2.254;
  option routers 192.168.2.1;
  filename "/pxelinux.0";
}

When I booted a new server, it just picked up the boot image from MaaS and once it booted, appeared in MaaS's Machine table and appears to be working normally.