📖 ~1 min read
Table of contents
Symptom & Impact
Clock jumps forward/backward, affecting logs and authentication.
Environment & Reproduction
Hosts have both `ntpd` and `openntpd` installed and enabled.
Root Cause Analysis
Multiple daemons discipline the same clock source simultaneously.
Quick Triage
Check active daemons and startup flags.
service ntpd status
service openntpd status
sysrc -a | grep -E 'ntpd|openntpd'
Step-by-Step Diagnosis
Confirm overlapping UDP/123 listeners and time adjustments.
sockstat -4 -6 | grep ':123'
ntpq -pn
rcorder /etc/rc.d/* | grep ntp

Solution – Primary Fix
Disable one daemon, keep one source of truth, and restart time service.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sysrc openntpd_enable='NO'
service openntpd stop
service ntpd restart

Solution – Alternative Approaches
If standardizing on `openntpd`, disable `ntpd` instead and adjust monitoring checks.
Verification & Acceptance Criteria
Only one listener on UDP/123 and drift remains stable over monitoring window.
Rollback Plan
Re-enable prior daemon if compatibility requirement exists and disable the other.
Prevention & Hardening
Add config policy checks to prevent dual time daemon enablement.
Related Errors & Cross-Refs
Time oscillation, duplicate service warnings, authentication token validity errors.
Related tutorial: View the step-by-step tutorial for freebsd-12.
View all freebsd-12 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
`ntpd(8)`, `openntpd(8)`, FreeBSD rc service management docs.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.