Назад | Перейти на главную страницу

Сервер CentOS 7 DHCP не запускается (не включается на указанном порту)

У меня есть мини-ПК Cent0S 7 с беспроводными и проводными сетевыми портами. Беспроводной порт (wlp3s0) подключен как DHCP-клиент с адресацией 192.168.10.X и имеет разрешение DNS.

Я пытаюсь настроить проводной порт (enp2s0) в качестве DHCP-сервера для частной подсети с адресацией 192.168.100.X. Мини-ПК будет подключен к сетевому коммутатору, к которому будут подключены другие клиентские устройства для тестирования.

Я следовал указаниям RedHat Вот до тройника.

Мой /etc/systemd/system/dhcpd.service как следует:

[Unit]
Description=DHCPv4 Server Daemon
Documentation=man:dhcpd(8) man:dhcpd.conf(5)
Wants=network-online.target
After=network-online.target
After=time-sync.target

[Service]
Type=notify
ExecStart=/usr/sbin/dhcpd -f -cf /etc/dhcp/dhcpd.conf -user dhcpd -group dhcpd --no-pid enp2s0

[Install]
WantedBy=multi-user.target

И мой /etc/dhcp/dhcpd.conf как следует:

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

subnet 192.168.100.0 netmask 255.255.255.0 {
    option routers                  192.168.100.1;
    option subnet-mask              255.255.255.0;
    option broadcast-address        192.168.100.255;
    range 192.168.100.10 192.168.100.100;
}

Когда я перехожу к настройке и запускаю службу:

sudo systemctl --system daemon-reload
sudo systemctl restart dhcpd.service

Я получаю это в /var/log/messages:

localhost systemd: Starting DHCPv4 Server Daemon...
localhost dhcpd: Internet Systems Consortium DHCP Server 4.2.5
localhost dhcpd: Copyright 2004-2013 Internet Systems Consortium.
localhost dhcpd: All rights reserved.
localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
localhost dhcpd: Wrote 0 leases to leases file.
localhost dhcpd: 
localhost dhcpd: No subnet declaration for enp2s0 (no IPv4 addresses).
localhost dhcpd: ** Ignoring requests on enp2s0.  If this is not what
localhost dhcpd:   you want, please write a subnet declaration
localhost dhcpd:   in your dhcpd.conf file for the network segment
localhost dhcpd:   to which interface enp2s0 is attached. **
localhost dhcpd: 
localhost dhcpd: 
localhost dhcpd: Not configured to listen on any interfaces!
localhost dhcpd: 
localhost dhcpd: This version of ISC DHCP is based on the release available
localhost dhcpd: on ftp.isc.org.  Features have been added and other changes
localhost dhcpd: have been made to the base software release in order to make
localhost dhcpd: it work better with this distribution.
localhost dhcpd: 
localhost dhcpd: Please report for this software via the CentOS Bugs Database:
localhost dhcpd:    http://bugs.centos.org/
localhost dhcpd: 
localhost dhcpd: exiting.
localhost systemd: dhcpd.service: main process exited, code=exited, status=1/FAILURE
localhost systemd: Failed to start DHCPv4 Server Daemon.
localhost systemd: Unit dhcpd.service entered failed state.
localhost systemd: dhcpd.service failed.

Есть идеи, что здесь не так?

Спасибо.

Настройте интерфейс enp2s0 со статическим IP-адресом 192.168.100.1 в / etc / sysconfig / network-scripts / ifcfg-enp2s0.

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Networking_Guide/sec-Using_the_Command_Line_Interface.html

Ваш второй интерфейс (enp2s0) не имеет IP-адреса. Установите ему адрес из определенной сети - ip addr add 192.168.100.1/24 dev enp2s0 а затем снова запустите службу dhcp. IP-адрес этого интерфейса должен быть статическим.