NTP服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NTP服务器相关的知识,希望对你有一定的参考价值。
NTP服务器
- NTP 服务器运行原理
- 实战配置NTP服务器为内网络服务器同步时间
- 配置NTP客户端同步时间
NTP(Network Time Protocol,网络时间协议)是用来使计算机时间同步化的一种协议。它可以使计算机对其服务器或时钟源做同步化,它可以提供高精准度的时间校正(LAN上与标准时差小于1毫秒,WAN上几十毫秒),且可以由加密确认的方式来防止恶毒的协议攻击。
模式:C/S
端口
[[email protected] ~]# cat /etc/services|grep -w ^ntp
ntp 123/tcp
ntp 123/udp # Network Time Protocol
安装 NTP 服务器
[[email protected] Packages]# yum install ntp -y
[[email protected] Packages]# rpm -q ntp
ntp-4.2.6p5-25.el7.centos.2.x86_64
配置文件/etc/ntp.conf
启动服务
[[email protected] ~]# systemctl start ntpd.service
查看端口
安装 NTP 客户端
[[email protected] Packages]# rpm -ivh ntpdate-4.2.6p5-25.el7.centos.2.x86_64.rpm
[[email protected] Packages]# rpm -q ntpdate
ntpdate-4.2.6p5-25.el7.centos.2.x86_64
NTP 客户端同步时间
ntpdate ntpServerIP 或 ntpServerName
公网上的 ntp 服务器
[[email protected] ~]# systemctl stop ntpd.service
[[email protected] ~]# ntpdate 0.centos.pool.ntp.org
5 Apr 12:34:33 ntpdate[2425]: adjust time server 193.228.143.14 offset 0.002047 sec
搭建一个内网NTP服务器,让内网服务器通过此NTP服务器进行时间同步
修改NTP服务器配置文件 /etc/ntp.conf
以上是关于NTP服务器的主要内容,如果未能解决你的问题,请参考以下文章