linux 时间服务器

date -s 月/日/年

date -s 时:分:秒

看CMOS的时间:

clock -r

将当前系统时间写入CMOS中去  

clock -w 

系统时钟和硬件时钟同步:

hwclock --systohc 


yum install ntp 



1. 注释掉原来的restrict default ignore这一行,这一行本身是不响应任何的ntp更新请求,其实也就是禁用了本机的ntp server的功能,所以需要注释掉。 

2. 加入:restrict 192.168.0.0 mask 255.255.255.0 -- 让192.168.0.0/24网段上的机器能和本机做时间同步 

3. 这样就可以了,记得下面的: 

server 127.127.1.0 # local clock 
fudge 127.127.1.0 stratum 10 

这两行需要,这是让本机的ntpd和本地硬件时间同步。 

当然,我们也可以添加server xxx.xxx.xxx.xxx,让他和其他的time server时间同步。 

4. /etc/init.d/ntpd restart 

5. chkconfig ntpd on 

6. 修改iptables配置,将tcp和udp 123端口开放,这是ntp需要的端口,在/etc/services中可以查到这个端口。 


这样router就成为一台time server了,现在我们配置sales这台机器,也是修改/etc/ntp.conf 

1. restrict default ignore这行保留为非注释状态,因为sales不需要做time server 

2. 注释掉server 127.127.1.0, fudge 127.127.1.0 stratum 10这两行,因为这台机器不需要和本地硬件时钟同步了。 

3. 加入server 192.168.0.1这行,和router机器同步。 

4. /etc/init.d/ntpd restart 

5. chkconfig ntpd on 

你可能感兴趣的:(linux)