π ~1 min read
Table of contents
Symptom & Impact
Time synchronization repeatedly fails, causing auth and scheduling instability.
Environment & Reproduction
Seen in hardened environments with restrictive outbound firewall policies.
chronyc sources -v
chronyc tracking
firewall-cmd --list-all
Root Cause Analysis
firewalld policies deny UDP/123 egress to approved NTP servers.
Quick Triage
Validate chronyd status and network policy quickly.
systemctl status chronyd
chronyc activity
journalctl -u chronyd -n 60
Step-by-Step Diagnosis
Check direct UDP reachability and zone/policy assignments.
firewall-cmd --get-active-zones
firewall-cmd --query-service=ntp
tcpdump -ni any udp port 123 -c 10

Solution – Primary Fix
Allow NTP service in the correct zone and reload firewall.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
firewall-cmd --zone=public --add-service=ntp --permanent
firewall-cmd --reload
systemctl restart chronyd

Solution – Alternative Approaches
Permit only specific NTP endpoints using rich rules for tighter controls.
firewall-cmd --permanent --add-rich-rule='rule family=ipv4 destination address=10.20.30.40 service name=ntp accept'
firewall-cmd --reload
Verification & Acceptance Criteria
chrony reaches sources and reports synchronized state.
chronyc sources -v
chronyc tracking
timedatectl status
Rollback Plan
Remove newly added firewall rule set if policy review rejects exposure.
firewall-cmd --zone=public --remove-service=ntp --permanent
firewall-cmd --reload
Prevention & Hardening
Maintain explicit allowlist for time infrastructure in firewall baselines.
firewall-cmd --permanent --list-all
chronyc sources
Related Errors & Cross-Refs
Associated with proxy-only egress models and DNS resolver failures.
Related tutorial: View the step-by-step tutorial for rhel-10.
View all rhel-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
RHEL firewalld and chrony integration best practices.
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.