- For Solaris 5.11:
a) Create the /etc/inet/ntp.conf
$ cat ntp.conf
server 10.xx.x.xx prefer
b) Start the NTP Service.
# svcadm disable ntp
# svcadm enable ntp
c) ntpq -p
ntpdate -q 10.xx.x.xx to (check time difference).
2. For Solaris 5.10:
a) Create the /etc/inet/ntp.conf
$ cat ntp.conf
server 10.xx.x.xx prefer
b) Start the NTP Service.
# svcadm disable svc:/network/ntp:default
# svcadm enable svc:/network/ntp:default
c) ntpq -p
/usr/sbin/ntpdate -q 10.xx.x.xx to (check time difference).
3. For Solaris 5.9:
a) Create the /etc/inet/ntp.conf
$ cat ntp.conf
server 10.xx.x.xx prefer
b) Start the NTP Service.
# /etc/init.d/xntpd start
Or
# /etc/rc2.d/S74xntpd start
c) ntpq -p
Comments
Post a Comment