📖 ~1 min read
Table of contents
Symptom & Impact
Audit and security events are missing during peak load periods.
Environment & Reproduction
Most common with high-rate UDP forwarding.
sockstat -4 -l | grep syslogd
Root Cause Analysis
Kernel socket buffer exhaustion causes dropped datagrams.
Quick Triage
Measure receive drops and forwarding backlog quickly.
netstat -s -p udp | grep -i drop
Step-by-Step Diagnosis
Inspect syslogd flags and forwarding destinations.
grep -n syslogd /etc/rc.conf /etc/syslog.conf

Solution – Primary Fix
Increase socket buffers and move critical streams to TCP/TLS relay.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo sysrc syslogd_flags='-s -b 127.0.0.1 -vv' && sudo service syslogd restart

Solution – Alternative Approaches
Deploy dedicated rsyslog/syslog-ng collector for burst handling.
Verification & Acceptance Criteria
No sustained receive-drop increase during replay/load tests.
Rollback Plan
Restore prior syslogd flags and forwarding config.
Prevention & Hardening
Use reliable transport and retention-aware log pipeline design.
Related Errors & Cross-Refs
Can overlap with disk I/O throttling in log storage path.
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
syslogd(8) and production logging architecture references.
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.