π ~1 min read
Table of contents
Symptom & Impact
Expected firewall openings do not work due to overlapping rule managers.
Environment & Reproduction
Hosts using manual nft rules while firewalld also manages nftables backend.
systemctl is-active firewalld
nft list ruleset | head -n 80
Root Cause Analysis
Rules applied outside firewalld are overwritten or conflict with zone chains.
Quick Triage
Locate rule ownership and active chain order.
firewall-cmd --list-all-zones
nft list ruleset | grep -E 'hook input|policy'
Step-by-Step Diagnosis
Map dropped packets to chain and policy source.
journalctl -k -n 200 --no-pager
firewall-cmd --direct --get-all-rules

Solution – Primary Fix
Consolidate rules into firewalld permanent configuration and remove unmanaged nft snippets.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --reload
rm -f /etc/nftables/conf.d/custom.conf

Solution – Alternative Approaches
Disable firewalld only if organization standardizes fully on static nftables management.
systemctl disable --now firewalld
Verification & Acceptance Criteria
Traffic policy behaves as expected after reload and reboot.
firewall-cmd --list-all
nft list ruleset | head -n 120
Rollback Plan
Reapply backup nft ruleset if service outage persists after consolidation.
nft -f /root/nftables.backup.conf
Prevention & Hardening
Define single firewall authority per host role.
systemctl status firewalld
firewall-cmd --state
Related Errors & Cross-Refs
Unexpected drop in input chain, direct rule precedence confusion.
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
firewalld with nftables backend architecture.
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.