MaaS DHCP reservation

Hi,

I am fairly new to MaaS, so I may ask something really basic. I am sligthly confused about the MaaS terminology.

I would like to move from ISC DHCP server in order to manage everything in MaaS.

I already have a really DHCP configuration that looks like:

option domain-name "mydomain.com";
option domain-name-servers 192.168.86.2, 192.168.86.1, 1.1.1.1;

option routers 192.168.86.1;

default-lease-time 600;
max-lease-time 7200;

option subnet-mask 255.255.255.0;

ddns-update-style none; ddns-updates off;

authoritative;

subnet 192.168.86.0 netmask 255.255.255.0 {
  option subnet-mask 255.255.255.0;
  option broadcast-address 192.168.86.255;
  default-lease-time 6000;
  max-lease-time 6000;
  range 192.168.86.5 192.168.86.251;
}

host switch {
  hardware ethernet xx:xx:xx:xx:xx:xx;
  fixed-address 192.168.86.8;
  option subnet-mask 255.255.255.0;
}

host printer {
  hardware ethernet xx:xx:xx:xx:xx:xx;
  fixed-address 192.168.86.27;
  option subnet-mask 255.255.255.0;
}

I already declared the Subnet in MaaS and I’d like to configure it’s DHCP.

How can I reserve (i.e. provide a fixed IP address to a given ethernet card not managed by MaaS - e.g. a printer) IP addresses for given devices?

Is the MaaS DHCP able to update it’s DNS accordingly?

Thanks in advance,

Emmanuel

Hi @jaepetto ,

you can create Devices for that and yes, DNS will be managed as well

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.