DHCP : サーバーの設定2021/07/23 |
DHCP ( Dynamic Host Configuration Protocol ) サーバーを構築し、ローカルネットワーク内のクライアントコンピューターに
IP アドレスの自動割当ができるようにします。
|
|
[1] | DHCP のインストールと設定です。当例では IPv4 についてのみ例示します。 |
[root@dlp ~]#
dnf -y install dhcp-server
[root@dlp ~]#
vi /etc/dhcp/dhcpd.conf # 以下の内容で新規作成 # ドメイン名指定 option domain-name "srv.world"; # ネームサーバーのホスト名, または IP アドレス指定 option domain-name-servers dlp.srv.world; # デフォルト貸出期間 default-lease-time 600; # 最大貸出期間 max-lease-time 7200; # 正当な DHCP サーバーであることの宣言 authoritative; # ネットワークアドレスとサブネットマスク指定 subnet 10.0.0.0 netmask 255.255.255.0 { # 貸し出す IP アドレスの範囲指定 range dynamic-bootp 10.0.0.200 10.0.0.254; # ブロードキャストアドレス指定 option broadcast-address 10.0.0.255; # ゲートウェイアドレス指定 option routers 10.0.0.1; } systemctl enable --now dhcpd |
[2] | Firewalld を有効にしている場合は、DHCP サービスの許可が必要です。DHCP サーバー は [67/UDP] を使用します。 |
[root@dlp ~]# firewall-cmd --add-service=dhcp success [root@dlp ~]# firewall-cmd --runtime-to-permanent success |
[3] | DHCP サーバーからクライアントコンピューターにリースされた IP アドレスは以下のファイルで確認できます。 |
[root@dlp ~]# ll /var/lib/dhcpd total 36 -rw-r--r-- 1 dhcpd dhcpd 0 Jun 3 2020 dhcpd6.leases -rw-r--r-- 1 dhcpd dhcpd 15847 Jun 11 11:36 dhcpd.leases -rw-r--r-- 1 dhcpd dhcpd 17227 Jun 11 11:01 dhcpd.leases~[root@dlp ~]# cat /var/lib/dhcpd/dhcpd.leases # The format of this file is documented in the dhcpd.leases(5) manual page. # This lease file was written by isc-dhcp-4.3.6 # authoring-byte-order entry is generated, DO NOT DELETE authoring-byte-order little-endian; lease 10.0.0.218 { starts 3 2021/02/05 05:47:54; ends 3 2021/02/05 05:57:54; cltt 3 2021/02/05 05:47:54; binding state active; next binding state free; rewind binding state free; hardware ethernet 52:54:00:a1:d5:6e; uid "\377+\2244\301\000\002\000\000\253\021\011\215\353J2\\\322\272"; client-hostname "dlp"; } ..... ..... |
Sponsored Link |