博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux搭建vsftp服务器_linux搭建NTP服务器
阅读量:6622 次
发布时间:2019-06-25

本文共 1212 字,大约阅读时间需要 4 分钟。

系统版本(linux centos 7.6)

服务器端配置

1. 安装NTP

yum –y install ntp

2. 编辑ntp.conf文件

[root@NTP ~]# vim /etc/ntp.conf

52954ddcd06eb88902cc26c99c98277c.png
restrict 192.168.192.40 nomodify notrap nopeer noquery #开启内部递归网络接口lo 即允许本机地址一切的操作restrict 127.0.0.1restrict ::1 # Hosts on local network are less restricted.restrict 192.168.192.0 mask 255.255.255.0 nomodify notrap #我们允许局域网内所有客户端连接到这台服务器同步时间.但是拒绝让他们修改服务器上的时间service 192.168.192.40  # 这句也是手动增加的,指明局域网中作为NTP服务器的IP# Use public servers from the pool.ntp.org project.# Please consider joining the pool (http://www.pool.ntp.org/join.html).#server 0.centos.pool.ntp.org iburst#server 1.centos.pool.ntp.org iburst#server 2.centos.pool.ntp.org iburst#server 3.centos.pool.ntp.org iburstserver ntp1.aliyun.com iburst #互联网上的三个ntp服务器server ntp2.aliyun.com iburstserver ntp3.aliyun.com iburst server 127.127.1.0 #当服务器与公用的时间服务器失去联系时(连不上网),以局域网的时间服务器为客户端提供时间同步服务fudge 127.127.1.0 stratum 10  #broadcast 192.168.1.255 autokey # broadcast server#broadcastclient # broadcast client#broadcast 224.0.1.1 autokey # multicast server

3. 防火墙开放端口

firewall-cmd --zone=public --add-port=123/udp –permanent

firewall-cmd --reload

客户端配置:

  1. 客户端安装ntp服务

yum install ntp ntpdate -y

2. 配置ntp.conf文件

只需增加 server 服务器IP

3. 手动同步时间

ntpdate 服务器IP或域名

转载地址:http://tkcpo.baihongyu.com/

你可能感兴趣的文章
IBM利用“沃森”超级电脑帮助员工对抗癌症
查看>>
「镁客·请讲」珍为科技周朔鹏:打造科技产品传播平台,对接智能制造产业上下游...
查看>>
使用NHibernate作为ORM容易碰到的问题
查看>>
服务器集中检测Cacti
查看>>
快速构建Windows 8风格应用34-构建Toast通知
查看>>
WCF简单教程(6) 单向与双向通讯
查看>>
Linux下多线程编程简介(一)
查看>>
RHEL6入门系列之八,常用命令1
查看>>
安全防范之彻底击破恶意网页
查看>>
安全防护 守好家门 也谈端口的开关
查看>>
浅谈ADC产品32位和64位之区别
查看>>
IBM Call Home Function
查看>>
Linux系统自带的密码生成器——mkpasswd
查看>>
Android应用程序框架层和系统运行库层日志系统源代码分析
查看>>
JRE环境查看工具
查看>>
MySQL中进程显式%的情况分析
查看>>
Java网络编程从入门到精通(7):用getHostAddress方法获得IP地址
查看>>
微软企业级加解密解决方案MBAM客户端部署
查看>>
DB2 SQL脚本批量执行
查看>>
WTP1.0开发WebService之Java Class实例
查看>>