-1

我们有使用 ntp 客户端同步时间的虚拟机。以下是我的配置。我的问题是我需要server 127.127.1.0 # local clock在客户端 ntp.conf 文件中添加一行吗?如果是,那为什么?

# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
# Permit all access over the loopback interface.
restrict 127.0.0.1
restrict -6 ::1
server ntp1.example.com
server ntp2.example.com
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
server  127.127.1.0     # local clock
fudge   127.127.1.0 stratum 10
driftfile /var/lib/ntp/drift
4

1 回答 1

7

NTP 建议

注意: VMware 建议您使用 NTP 而不是 VMware Tools 定期时间同步。NTP 是行业标准,可确保您的客人保持准确的时间。您可能必须打开防火墙 (UDP 123) 以允许 NTP 流量。

这是一个样本/etc/ntp.conf

tinker panic 0
restrict 127.0.0.1
restrict default kod nomodify notrap
server 0.vmware.pool.ntp.org
server 1.vmware.pool.ntp.org
server 2.vmware.pool.ntp.org
driftfile /var/lib/ntp/drift

这是一个示例(特定于 RedHat)/etc/ntp/step-tickers

0.vmware.pool.ntp.org
1.vmware.pool.ntp.org

配置指令 tinker panic 0 指示 NTP 在看到时间大幅跳跃时不要放弃。这对于应对较大的时间漂移​​以及从暂停状态恢复虚拟机非常重要。

注意:该指令tinker panic 0必须位于ntp.conf文件的顶部。

不使用本地时钟作为时间源也很重要,通常称为无纪律本地时钟。当存在大量时间漂移时,NTP 倾向于回退到远程服务器而不是远程服务器。

这种配置的一个例子是:

server 127.127.1.0
fudge 127.127.1.0 stratum 10

注释掉这两行。

更改 NTP 配置后,必须重新启动 NTP 守护程序。请参阅您的操作系统供应商的文档。

来源:VMWare 知识库

于 2013-01-31T20:53:52.680 回答