您的位置:首页 > 运维架构 > Linux

【ntp】centos7下ntp服务器设置

2016-03-09 18:09 846 查看




安装ntp

#检查服务是否安装
rpm -q ntp

[/code]#安装ntp服务器
yum -y install ntp

[/code]

修改配置文件:/etc/ntp.conf

内容如下:
restrict default kod nomodify notrap nopeer noquery

restrict -6 default kod nomodify notrap nopeer noquery

restrict 127.0.0.1

restrict -6 ::1

fudge	127.127.1.0 stratum 10

driftfile /var/lib/ntp/drift

keys /etc/ntp/keys

logfile /var/log/ntp.log

includefile /etc/ntp/crypto/pw

server 128.199.84.169

[/code]


设置ntpd为系统服务,并开机自启动

systemctl enable ntpd

systemctl restart ntpd

[/code]

测试Ntpd服务

1. 修改系统时间

date -s "2016-03-09 07:00:00"

[/code]


2. 使用tcpdump抓包测试

在一个终端执行:
tcpdump -i eth0 -s 0 -vvvvv udp port 123

[/code]说明:ntpd是使用udp 123端口来传输数据的


3. 重启ntpd服务,查看时间同步结果

systemctl restart ntpd

[/code]


此时看看tcpdump抓包情况


手动同步时间

ntpdate 128.199.84.169
(若报错,可参考:https://linux.cn/blog-6599-5989.html

其他命令

1. ntpq -p
查看本机和上层服务器的时间同步结果
2. ntptrace
可以用來追踪某台时间服务器的时间对应关系
3. ntpdate IP ,如:ntpdate 128.199.84.169 客户端与NTP server进行时钟同步。4. tail -f /var/log/ntp.log查看ntp日志

systemctl stop ntpd.servicentpdate 128.199.84.169 #手动同步https://linux.cn/blog-6599-5989.html

来自为知笔记(Wiz)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: