Solaris時間同步的簡單設定 1、拷貝ntp伺服器配置樣本作為ntp設定檔# cp -p /etc/inet/ntp.server /etc/inet/ntp.conf2、編輯ntp.conf,進行伺服器配置# vi /etc/inet/ntp.conf將原檔案中server 127.127.XType.0 preferfudge 127.127.XType.0 stratum 0兩行的XType改成1,1表示local,即server 127.127.1.0 preferfudge 127.127.1.0 stratum 0並注釋掉檔案末尾的四行內容,否則會提示找不到/etc/inet/ntp.keys檔案#keys /etc/inet/ntp.keys#trustedkey 0#requestkey 0#controlkey 03、啟動ntp服務Solaris 8 & 9# /etc/rc2.d/S74xntpd stop# /etc/rc2.d/S74xntpd startSolaris 10# svcadm disable svc:/network/ntp:default# svcadm enable svc:/network/ntp:default查看狀態# svcs svc:/network/ntp:default如果顯示為online則正常如果顯示為maintenance,需要執行一下# svcadm clear svc:/network/ntp:default再查看是否恢複正常4、稍等一段時間後查看伺服器狀態# ntpq -p remote refid st t when poll reach delay offset disp==============================================================================*LOCAL(0) .LCL. 0 l 51 64 377 0.00 0.000 10.06如果看到LOCAL前面有*了,則伺服器工作正常。 用戶端設定1、建立ntp用戶端設定檔# touch /etc/inet/ntp.conf# chown root:sys /etc/inet/ntp.conf2、編輯ntp.conf,設定同步時間的伺服器# vi /etc/inet/ntp.conf內容如下:server server1-ip-address preferserver server2-ip-addressserver server3-ip-address將其中的server-ip-address換成伺服器的IP地址。如果只有一台伺服器,填寫第一行就可以,如果有多台伺服器提供冗餘,可一併寫上,並在首選伺服器後添加prefer標誌。3、啟動ntp服務(與伺服器設定的第三步相同)Solaris 9# /etc/rc2.d/S74xntpd stop# /etc/rc2.d/S74xntpd startSolaris 10# svcadm disable svc:/network/ntp:default# svcadm enable svc:/network/ntp:default查看狀態# svcs svc:/network/ntp:default如果顯示為online則正常如果顯示為maintenance,需要執行一下# svcadm clear svc:/network/ntp:default再查看是否恢複正常4、稍等一段時間後查看同步情況# ntpq -p remote refid st t when poll reach delay offset disp==============================================================================*pcp379652pcs.cn .LCL. 1 u 62 64 377 0.93 -26.011 0.87看到前面出現*,並且reach值不斷變大,disp值不斷變小,則工作正常。