DHCPサーバ構築

通常DHCPサーバを構築する際は「ISC-DHCP」を使って構築するのだが、ISCが新しいDHCPサーバ「Kea」を出していることを知ったのでそちらを使って構築することにしてみた。

構築手順については下記サイトを参考に構築を行いまいした。
目次 | KeaKeeper | OSSでのシステム構築・デージーネット (designet.co.jp)
CentOS7 Kea-DHCPサーバのインストール (unix-power.net)

「Kea」は今までのDHCPサーバと違いDBでの管理ができる。
構築際はMySQL(MariaDB)やPostgreSQLを使用して構築ができるがこことではMariaDBを使用して構築を行いました。

構築バージョン:CentOS8 Kea 1.8




# dnf install epel-release
# dnf install kea mariadb-server
# systemctl start –now mariadb


下記設定はMariaDBの設定になります。
・管理者パスワードの設定
・匿名ユーザの削除
・管理者ユーザのリモートログインの禁止
・testデータベースの削除
・権限テーブルのリロード

# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we’ll need the current
password for the root user. If you’ve just installed MariaDB, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on…

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

You already have a root password set, so you can safely answer ‘n’.

Change the root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
… Success!

Normally, root should only be allowed to connect from ‘localhost’. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
… Success!

By default, MariaDB comes with a database named ‘test’ that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
– Dropping test database…
… Success!
– Removing privileges on test database…
… Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
… Success!

Cleaning up…

All done! If you’ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!


KeaのDBとユーザを作成します。

# mysql -u root -p
Enter password:
> CREATE DATABASE kea;
> Exit

# mysql -u root -p
Enter password:
> GRANT ALL ON kea.* TO
keauser@localhost IDENTIFIED BY ‘password’;
> FLUSH PRIVILEGES;
> Exit

Keaの設定を行います。
・リリース用とホスト用DBの設定
・IPアドレスのリリース設定

# vim /etc/kea/kea-dhcp4.conf
———————–略———————–

“hosts-databases”: [
   {
     “host”: “localhost”,
     “name”: “kea”,
     “password”: “password”,
     “port”: 3306,
     “type”: “mysql”,
     “user”: “keauser”
   }
],
“lease-database”: {
   “host”: “localhost”,
   “name”: “kea”,
   “password”: “password”,
   “port”: 3306,
   “type”: “mysql”,
   “user”: “keauser”
},
———————–略————————-
“subnet4”: [
           {
             “option-data”: [
               {
                 //ゲートウェイの設定
                 “name”: “routers”,
                 “data”: “192.168.10.1”,
                 “space”: “dhcp4”
               },
               {
                 //DNSの設定
                 “name”: “domain-name-servers”,
                 “data”: “192.168.11.3,192.168.211.11,8.8.8.8,8.8.4.4”,
                 “space”: “dhcp4”
               }
             ],
             “pools”: [
               {
                 //IPアドレスのリリース範囲設定
                 “option-data”: [ ],
                 “pool”: “192.168.1.11-192.168.1.99”
               },
             ],
             //IPアドレスのサブネット設定
             “subnet”: “192.168.10.0/24”,
           }
         ],
———————-略————————-

KeaのDBを作成します。

# kea-admin db-init mysql -u keauser -p password -n kea

Keaを起動します。

# systemctl enable –now kea-dhap4

Keaが正常に起動できれば完了です

カテゴリー: サーバ構築記 タグ: , パーマリンク

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です