<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Ntp
服务配置
服务器IP地址:172.16.1.230
服务器端配置
1创建/etc/inet/ntp.conf
2修改/etc/inet/ntp.conf文件如下格式:
#vi /etc/inet/ntp.conf
server 127.127.1.0 prefer
fudge 127.127.1.0 stratum 0
driftfile /var/ntp/ntp.drift
statsdir /var/ntp/ntpstats/
filegen peerstats file peerstats type day enable
filegen loopstats file loopstats type day enable
filegen clockstats file clockstats type day enable
<?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" />
3修改S74xntpd
#vi /etc/rc2.d/S74xntpd
在/etc/rc2.d/S74xntpd文件中,修改有/usr/lib/inet/xntpd的两行,在/usr/lib/linet/xntpd后添加 -l /var/ntp/ntp.log
两行变为:
(/usr/sbin/ntpdate $ARGS; sleep 2; /usr/lib/inet/xntpd -l /var/ntp/ntp.log) &
和
/usr/lib/inet/xntpd -l /var/ntp/ntp.log
4重起xntp进程
#/etc/rc2.d/S74xntpd stop
#/etc/rc2.d/S74xntpd start
客户端的配置
Solaris
客户端的配置
1创建/etc/inet/ntp.conf
了解服务器的IP地址
2修改/etc/inet/ntp.conf为如下格式:
#vi /etc/inet/ntp.conf
《请将SERVER-IP替换成真正的ntp的Server》
peer SERVER-IP
server SERVER-IP
fudge SERVER-IP stratum 0
driftfile /var/ntp/ntp.drift
statsdir /var/ntp/ntpstats/
filegen peerstats file peerstats type day enable
filegen loopstats file loopstats type day enable
filegen clockstats file clockstats type day enable
任务计划
创建并编辑可执行文件
#vi /etc/inet/auto_ntp.sh
在此文件里写入
此图意思停止ntp服务
启动ntp 服务
同服务器同步时间
然后创建auto_ntp.log
# /etc/inet/auto_ntp.sh > /etc/inet/auto_ntp.log 意思是把前面的执行结果写到后面文件里
#Crontab –e 编辑计划任务
在任务计划里添加
意思为每天的凌晨2点10分执行此任务计划进行同步时间
Windows
客户端的配置
开始----设置---控制面板---时间和日期---Internet时间---勾选自动与Internet时间服务器同步
在服务器里输入服务器IP地址 在点立即更新 ---确定即可
具体如图