1.NTP简介
NTP是Network Time Protocol的缩写,又称为网络时间协议。是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议。为用户提供授时服务,并且这些网站间应该能够相互比对,提高准确度。
2.服务器配置
2.1 安装
sudo apt-get install ntp
2.2 修改配置(利用server设定上层NTP服务器)
sudo vim /etc/ntp.conf
- 上层NTP服务器的设定方式为:
server [IP OR HOSTNAME] [PREFER]
- 常见的时间服务器
server 2.cn.pool.ntp.org
server 3.asia.pool.ntp.org
server 0.cn.pool.ntp.org
- 写入到配置文件
- 启动ntp服务
/etc/init.d/ntp start
3.客户端使用服务同步时间
sudo apt install ntpdate
ntpdate ${服务器IP}
root@wky:~# ntpdate amd.inat.top
19 Jun 01:02:33 ntpdate[3236]: step time server 10.1.131.250 offset 13812059.680274 sec
root@wky:~# date
2022年 06月 19日 星期日 01:02:39 +09
评论 (0)