Solaris下搭建ntp服务器

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
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 �Ce                                   编辑计划任务
  在任务计划里添加
     
意思为每天的凌晨 2 10 分执行此任务计划进行同步时间
Windows 客户端的配置
开始 ---- 设置 --- 控制面板 --- 时间和日期 ---Internet 时间 --- 勾选自动与 Internet 时间服务器同步
在服务器里输入服务器 IP 地址 在点立即更新 --- 确定即可
具体如图
 

你可能感兴趣的:(职场,休闲)