使用 OpenSSL 构建 NTP

使用 OpenSSL 构建 NTP

我正在尝试构建支持 OpenSSL 的最新版本的 NTP(4.2.8p3,于 2015/06/29 发布)。

我绝对可以构建 NTP,但是当我尝试使用 ntp-keygen 创建新证书时,它告诉我参数未知。

我使用以下命令行来创建证书:

ntp-keygen -p privatePassword -T -I -i GR1

这给了我:

guillaume@quentin-HP-xw6600-Workstation:~/certifs$ ntp-keygen -p privatePassword -T -I -i GR1
/usr/sbin/ntp-keygen: illegal option -- p
ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.8p3
Usage:  ntp-keygen [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
Try 'ntp-keygen --help' for more information.

我尝试使用不同的选项构建 ntp,但总是遇到同样的问题。

有人有同样的问题吗?

我认为这是此版本的 NTP 的问题,但我不确定……(我尝试使用开发版本,但得到的结果相同)。或者问题出在我的配置选项上?

我的配置选项:

./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--datadir=/usr/share \
--sysconfdir=/etc/ntp \
--disable-linuxcaps \
--enable-parse-clocks \
--disable-ipv6 \
--enable-debugging \
--with-crypto \
--with-openssl-libdir=/opt/opt/openssl/lib \
--with-openssl-incdir=/opt/include/openssl \
--enable-autokey \

编辑:ntp-keygen --help 给我:

guillaume@quentin-HP-xw6600-Workstation:~/certifs$ ntp-keygen --help
ntp-keygen (ntp) - Create a NTP host key - Ver. 4.2.8p3
Usage:  ntp-keygen [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
  Flg Arg Option-Name    Description
   -d no  debug-level    Increase debug verbosity level
                - may appear multiple times
   -D Num set-debug-level Set the debug verbosity level
                - may appear multiple times
   -M no  md5key         generate MD5 keys
      opt version        output version information and exit
   -? no  help           display extended usage information and exit
   -! no  more-help      extended usage information passed thru pager
   -> opt save-opts      save the option state to a config file
   -< Str load-opts      load options from a config file
                - disabled as '--no-load-opts'
                - may appear multiple times

Options are specified by doubled hyphens and their name or by a single
hyphen and the flag character.


The following option preset mechanisms are supported:
 - reading file $HOME/.ntprc
 - reading file ./.ntprc
 - examining environment variables named NTP_KEYGEN_*

Please send bug reports to:  <http://bugs.ntp.org, [email protected]>

相关内容