Ubuntu dhcpd 伺服器,客戶端的不同子網

Ubuntu dhcpd 伺服器,客戶端的不同子網

我正在嘗試讓 ISC DHCP 伺服器在 Ubuntu 14.04.2 伺服器上運行。每當我嘗試啟動 DHCP 服務時,它都會立即停止,並記錄下來並且服務停止:

2015-05-15T21:23:16.600736+00:00 ubuntu dhcpd: No subnet declaration for eth0 (10.126.88.2).
2015-05-15T21:23:16.600743+00:00 ubuntu dhcpd: ** Ignoring requests on eth0.  If this is not what
2015-05-15T21:23:16.600749+00:00 ubuntu dhcpd:    you want, please write a subnet declaration
2015-05-15T21:23:16.600755+00:00 ubuntu dhcpd:    in your dhcpd.conf file for the network segment
2015-05-15T21:23:16.600762+00:00 ubuntu dhcpd:    to which interface eth0 is attached. **

我的 dhcpd.conf 檔案如下所示:

option ztp-file-server code 150 = { ip-address };
option space ZTP;
option ZTP.image-file-name code 0 = text;
option ZTP.config-file-name code 1 = text;
option ZTP.image-file-type code 2 = text;
option ZTP.transfer-mode  code 3 = text;
option ZTP-encap code 43 = encapsulate ZTP;
subnet 10.194.74.0 netmask 255.255.255.128 {
authoritative;
   option routers                  10.194.74.1;
option subnet-mask              255.255.255.128;
default-lease-time              28800;
max-lease-time                  32200;
range                           10.194.74.10 10.194.74.11;
option ztp-file-server 10.1.1.2;
option ZTP.image-file-name "/jinstall-qfx-5-13.2X51-D35.3-domestic-signed.tgz";
option ZTP.transfer-mode "http";
option ZTP.config-file-name "/template.conf";
}

我正在嘗試做一些瞻博網路零接觸設定工作,所以這也是所有 ZTP 內容所指的內容。

我已將 eth0 放入 etc/default/isc-dhcp-server 'interfaces' 部分。

有什麼想法嗎? DHCP 用戶端位於遠端網路上,DHCP 池位於與 eth0 不同的子網路上有什麼影響嗎?

答案1

dhcpd需要為其eth0實體 NIC 聲明子網路。

您需要將其添加到您的中dhcpd.conf,但如果您不想使用它,請將其留空:

subnet 10.126.88.0 netmask 255.255.255.0 {
}

我讓你根據你的網路調整子網路遮罩

相關內容