NTP指定123监听的地址,去除0.0.0.0:123配置
发表时间:2018-10-17 13:46 | 分类:Linux | 浏览:3,418 次
ntp服务监听在udp的123端口,默认他会监听所有IP,包括0.0.0.0:123。如果想去掉的话可以修改如下:
- interface ignore wildcard
- interface listen 127.0.0.1
- interface listen ::1
- # NOTE: if you want to update your time using remote machines,
- # add at least one remote interface address:
- #interface listen 2001:db8::1
- #interface listen 192.0.2.1
在配置文件/etc/ntp.conf中添加。
如果ntp需要和远程服务器同步时间,那么要保证和服务器连接的IP的123端口是被监听的。
测试ntp服务是否正常命令:
- ntpq -p