在我正在开发的项目中,我们通过图形界面生成一个dhcpd.conf文件.创建dhcpd.conf文件后,我想确保没有语法错误.如果有错误,我想得到它们是什么.
我可以使用此命令检查语法错误:
dhcpd -cf /path/to/dhcpd.conf
但是除了我得到的错误之外,还会打印出很多信息.另一件事是我不想运行dhcpd,即使没有语法错误.我只想检查语法错误,看看它们是什么.
不幸的是,运行dhcpd -tf /path/to/dhcpd.conf也没有解决我的问题.
解决方法
您要查找的语法是
dhcpd -t -cf /path/to/dhcpd.conf
-t选项将进行配置检查:
If the -t flag is specified,the server will simply test the configuration file for correct Syntax,but will not attempt to perform any network operations. This can be used to test the new configuration file automatically before installing it.
如果使用默认配置文件路径,则不需要使用-cf.
/usr/sbin/dhcpd -t
您尝试使用-tf / path / to / …的方法是完全不同的,与跟踪有关.