溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux的dhcp啟動異常怎么辦

發(fā)布時間:2021-08-17 19:59:10 來源:億速云 閱讀:1484 作者:chen 欄目:建站服務(wù)器

這篇文章主要介紹“Linux的dhcp啟動異常怎么辦”,在日常操作中,相信很多人在Linux的dhcp啟動異常怎么辦問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Linux的dhcp啟動異常怎么辦”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

    最近折騰Centos自動化安裝,需要Linux的dhcp服務(wù),使用yum -y install dhcp安裝dhcp、dhcp-common的rpm包,啟動dhcp時異常報錯,

由于dhcp是操作系統(tǒng)及服務(wù),關(guān)于dhcp啟動失敗可以查看操作系統(tǒng)日志/var/log/messages,使用service dhcpd start時報錯如下:

[root@localhost log]# tail -f messages

May 13 20:30:45 localhost dhcpd: Internet Systems Consortium DHCP Server 4.1.1-P1
May 13 20:30:45 localhost dhcpd: Copyright 2004-2010 Internet Systems Consortium.
May 13 20:30:45 localhost dhcpd: All rights reserved.
May 13 20:30:45 localhost dhcpd: For info, please visit https://www.isc.org/software/dhcp/
May 13 20:30:45 localhost dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
May 13 20:30:45 localhost dhcpd: Wrote 0 leases to leases file.
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: No subnet declaration for eth2 (192.168.48.134).
May 13 20:30:45 localhost dhcpd: ** Ignoring requests on eth2.  If this is not what
May 13 20:30:45 localhost dhcpd:    you want, please write a subnet declaration
May 13 20:30:45 localhost dhcpd:    in your dhcpd.conf file for the network segment
May 13 20:30:45 localhost dhcpd:    to which interface eth2 is attached. **
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: Not configured to listen on any interfaces!
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: This version of ISC DHCP is based on the release available
May 13 20:30:45 localhost dhcpd: on ftp.isc.org.  Features have been added and other changes
May 13 20:30:45 localhost dhcpd: have been made to the base software release in order to make
May 13 20:30:45 localhost dhcpd: it work better with this distribution.
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: Please report for this software via the CentOS Bugs Database:
May 13 20:30:45 localhost dhcpd:     http://bugs.centos.org/
May 13 20:30:45 localhost dhcpd: 
May 13 20:30:45 localhost dhcpd: exiting.

    針對dhcp啟動No subnet declaration for eth的報錯,需要排查確認信息:

1、dhcp報錯提示的ethn網(wǎng)卡與dhcp配置文件在同一網(wǎng)段確定subnet為192.168.48.0

[root@myserver tftpboot]# cat /etc/dhcpd.conf
ddns-update-style none; #設(shè)置DHCP服務(wù)器模式
ignore client-updates; #禁止客戶端更新
subnet 192.168.48.0 netmask 255.255.255.0 { #設(shè)置網(wǎng)段
  option routers 192.168.48.254; #設(shè)置網(wǎng)關(guān)
  range  192.168.48.160 192.168.48.200; #設(shè)置dhcp服務(wù)器IP地址租用的范圍
  default-lease-time 604800; #默認租約時間
  max-lease-time 605800; #最大租約時間
  next-server 192.168.48.134; #tftp服務(wù)器地址
  filename "pxelinux.0"; #tftp服務(wù)器根目錄下面的文件名
}
[root@myserver tftpboot]# 

2、使用vmware虛擬機時,需要注意dhcp配置的subnet在eth0網(wǎng)卡Ip所在網(wǎng)段,并且eth0不能是hostonly,可以是橋接模式或NAT模式,

同時需要在linux主機內(nèi)ping通vmware自己的網(wǎng)卡Ip地址。

    然后,啟動dhcp不使用service dhcpd start而使用dhcpd -cf /etc/dhcpd.conf eth2在dhcp啟動的時候指定dhcp監(jiān)聽的網(wǎng)卡,

dhcp啟動就能正常啟動了。

[root@myserver tftpboot]# dhcpd -cf /etc/dhcpd.conf eth2
Internet Systems Consortium DHCP Server 4.1.1-P1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
he config file
Wrote 2 leases to leases file.
Listening on LPF/eth2/00:0c:29:89:78:3d/192.168.48.0/24
Sending on   LPF/eth2/00:0c:29:89:78:3d/192.168.48.0/24
Sending on   Socket/fallback/fallback-net
[root@myserver tftpboot]# There's already a DHCP server running.
This version of ISC DHCP is based on the release available
on ftp.isc.org.  Features have been added and other changes
have been made to the base software release in order to make
it work better with this distribution.
Please report for this software via the CentOS Bugs Database:
    http://bugs.centos.org/
exiting.
[root@myserver tftpboot]# service dhcpd status
dhcpd (pid  2501) is running...
[root@myserver tftpboot]#

    如果需要開機自動啟動dhcp,這時再使用命令chkconfig dhcp on,可以將dhcpd -cf /etc/dhcpd.conf eth2添加到/etc/rc.local

到此,關(guān)于“Linux的dhcp啟動異常怎么辦”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI