Version information
released Jun 1st 2018
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'fferauu-dhcp', '0.1.2'
Learn more about managing modules with a PuppetfileDocumentation
fferauu/dhcp — version 0.1.2 Jun 1st 2018
Table of Contents
Description
My first Puppet module. With this module you can make basic DHCP configuration.
Usage
include dhcp
dhcp::subnet { '192.168.10.0' :
netmask => '255.255.255.0',
begin_range => '192.168.10.25',
end_range => '192.168.10.50',
router => '192.168.10.1',
broadcast => '192.168.10.255',
}
dhcp::host { 'example' :
ip => '192.168.10.75',
mac => '11:11:11:11:11:11',
}
Dependencies
- puppetlabs/stdlib (>= 1.0.0)
- puppetlabs/concat (>= 4.2.1)