标签:
0x01 SpecialInterval |
0x02 UseAsFallbackOnly |
0x04 SymmatricActive |
0x08 Client |
为端口123添加出入站规则
Linux中有ntpd和ntpdate两种时间更新方式,ntpd是缓慢的时间校准服务,而ntpdate是时间更正服务。两者的区别在于ntpd发现时间有偏差时慢慢的更新时间,并且更改bios时钟,这样即使不联网也可以维持较为准确的时间,而ntpdate服务发现时间有偏差时不管差别有多大,立即将时间更新,这样会对时序敏感的程序造成逻辑混乱。因此本文采用ntpd服务自动更新时间。
#nano /etc/ntp.conf
+server 172.16.24.4 iburst
-server 0.rhel.pool.ntp.org iburst
-server 1.rhel.pool.ntp.org iburst
-server 2.rhel.pool.ntp.org iburst
-server 3.rhel.pool.ntp.org iburst
#service ntpd restart
#chkconfig ntpd on
标签:
原文地址:http://www.cnblogs.com/zhengcong/p/4211878.html