Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Code Block
languagebash
titleInstall ISC's DHCP and Kea DHCP
collapsetrue
# install ISC-DHCPD and ISC-KEA-DHCP
yum install dhcpd kea

# copy default config
cp /var/www/nmsprime/modules/ProvBase/Install/files/dhcpd.conf /etc/dhcp/
cp /var/www/nmsprime/modules/ProvBase/Install/files/dhcpd6-nmsprime.conf /etc/kea/dhcp6-nmsprime.conf

# create folders
mkdir -p /etc/dhcp-nmsprime/cmts_gws

# permissions
chown -R apache /etc/dhcp-nmsprime/ /etc/kea/
chmod o+rx /etc/dhcp-nmsprime/

# nms prime: create dhcp server config
php artisan nms:dhcp

# start
systemctl start dhcpd
systemctl start kea-dhcp6

...