Iptables QUEUE Target and Snort
- by bradlis7
I'm trying to set up a firewall with support for snort, and it is dropping all of my packets when I add the QUEUE target. I've made it like this, but the QUEUE target is not allowing the packets to be processed any further:
-A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
-A INPUT -j QUEUE
-A INPUT -j ACCEPT
# It's not allowing anything past QUEUE,…