资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Linux的dhcp启动异常怎么办

这篇文章主要介绍“Linux的dhcp启动异常怎么办”,在日常操作中,相信很多人在Linux的dhcp启动异常怎么办问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux的dhcp启动异常怎么办”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

漳平ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18980820575(备注:SSL证书合作)期待与您的合作!

    最近折腾Centos自动化安装,需要Linux的dhcp服务,使用yum -y install dhcp安装dhcp、dhcp-common的rpm包,启动dhcp时异常报错,

由于dhcp是操作系统及服务,关于dhcp启动失败可以查看操作系统日志/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网卡与dhcp配置文件在同一网段确定subnet为192.168.48.0

[root@myserver tftpboot]# cat /etc/dhcpd.conf
dDNS-update-style none; #设置DHCP服务器模式
ignore client-updates; #禁止客户端更新
subnet 192.168.48.0 netmask 255.255.255.0 { #设置网段
  option routers 192.168.48.254; #设置网关
  range  192.168.48.160 192.168.48.200; #设置dhcp服务器IP地址租用的范围
  default-lease-time 604800; #默认租约时间
  max-lease-time 605800; #最大租约时间
  next-server 192.168.48.134; #tftp服务器地址
  filename "pxelinux.0"; #tftp服务器根目录下面的文件名
}
[root@myserver tftpboot]# 

2、使用vmware虚拟机时,需要注意dhcp配置的subnet在eth0网卡Ip所在网段,并且eth0不能是hostonly,可以是桥接模式或NAT模式,

同时需要在linux主机内ping通vmware自己的网卡Ip地址。

    然后,启动dhcp不使用service dhcpd start而使用dhcpd -cf /etc/dhcpd.conf eth2在dhcp启动的时候指定dhcp监听的网卡,

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

到此,关于“Linux的dhcp启动异常怎么办”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!


网页标题:Linux的dhcp启动异常怎么办
文章源于:http://cdkjz.cn/article/gicdis.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220