时间同步服务器操作方法

时间同步服务器操作方法

方法一:NTP时间同步
NTP基于UDP报文进行传输,使用的UDP端口号为123
一、服务端:
假设ip是192.168.100.100
1、安装ntp
外网:sudo apt install ntp (内网拷贝离线包安装)
2、修改配置文件:vim /etc/ntp.conf
注释默认的时间同步源
#pool 127.0.0.1 iburst
#pool 1.debian.pool.ntp.org iburst
#pool 2.debian.pool.ntp.org iburst
#pool 3.debian.pool.ntp.org iburst
增加以下2行
server 127.127.1.0
fudge 127.127.1.0 stratum 8
修改后,保存退出
3、启动服务并设置服务开机自启
systemctl start ntp && systemctl enable ntp
4、查看侦听端口
netstat -tunlp | grep ntp 或者ss -ntulp | grep ntp 一般是在123端口
timedatectl 查看当前机器时间
ip a 查看服务端ip
二、客户端
客户端需要安装ntpdate的包,输入 ntpdate serverip(服务端配置ntp的ip地址)去同步时间
结果显示类似: 18 Aug 16:04:24 ntpdate[30646]: step time server 10.20.xx.xx offset 47606319.594686 sec
PS:
1、如果上述操作不成功,可以 ntpdate -d 192.168.100.100 查看报错详情,然后再去ntpdate 服务端ip 同步时间
2、ntp客户端用ntpdate -d serverip查看,发现有192.168.100.100: Server dropped: strata too high
的错误,这是因为ntp server还没有和其自身或者它的server同步上。可以用ntptrace 和ntpd -s -d 命令,再去ntpdate serverip即可。

posted @ 2022-04-01 18:15  云中看世界  阅读(1384)  评论(0编辑  收藏  举报