首页 > 其他分享 >dhcpd

dhcpd

时间:2023-07-13 09:12:52浏览次数:28  
标签:dhcpd 指定 服务器 file ldap DHCP

dhcpd

运行DHCP服务器

语法

dhcpd [选项] [网络接口]

选项

-p <端口> 指定dhcpd监听的端口
-f 作为前台进程运行dhcpd
-d 启用调试模式
-q 在启动时不显示版权信息
-t 简单地测试配置文件的语法是否正确的,但不会尝试执行任何网络操作
-T 可以用来测试租约数据库文件
-4 运行DHCP服务器
-6 运行DHCPv6服务器
-s <服务器> 指定发送回复的服务器
-cf <配置文件> 指定配置文件
-lf <租约文件> 指定租约文件
-pf <PID文件> 指定PID文件
-tf <跟踪输出文件> 指定文件记录DHCP服务器的整个启动状态

例子

对DHCP服务器进行排错。

[root@localhost ~]# dhcpd
InternetSystems Consortium DHCP Server 4.1.1-P1
Copyright2004-2010 Internet Systems Consortium.
All rightsreserved.
For info,please visit https://www.isc.org/software/dhcp/
Not searchingLDAP since ldap-server, ldap-port and ldap-base-dn were not specified in theconfig file
Wrote 0deleted host decls to leases file.
Wrote 0 newdynamic host decls to leases file.
Wrote 1leases to leases file.
Listening onLPF/eth0/00:0c:29:fc:2f:e5/192.168.0.0/24
Sendingon  LPF/eth0/00:0c:29:fc:2f:e5/192.168.0.0/24
Sendingon   Socket/fallback/fallback-net
[root@rhel~]# There's already a DHCP server running.
 
This versionof ISC DHCP is based on the release available
onftp.isc.org.  Features have been addedand other changes
have beenmade to the base software release in order to make
it workbetter with this distribution.
 
exiting.

标签:dhcpd,指定,服务器,file,ldap,DHCP
From: https://www.cnblogs.com/linuxcmd/p/dhcpd.html

相关文章

  • 关于 dhcp udhcpc udhcpcd dchplient 以及 dhcpd 的理解。
    基本的知识: 先来看看udhcpc与udhcpcd的区别   那么udhcpc 与dhcpclient 有什么区别呢,我见过有人使用dhcpclient来获取ip        那么与dhcpclient对应的服务端的工具是什么呢   总结一下: udhcpc udhcpcd 与dhclientdhcp......
  • DHCP源码分析_dhcpd后台进程子模块
    dhcpd是dhcp服务器端后台进程文件,dhcpd后台程序总是读取配置文件/etc/dhcpd.conf。一,守护进程的基本流程    dhcpd基本流程为: main(){/*设置isc和d......