iptables: No chain/target/match by that name
Hi,
I have a perl script which runs the iptables chain below everytime a UDP flood is detected originating from within the network. I want to limit the amount of packets but am having trouble with the chain
Code:
iptables -A OUPUT -o tap2 -s 192.168.2.240 -p udp -m limit --limit 5/m -j ACCEPT
and get this error.
Code:
iptables: No chain/target/match by that name
i've also tried this from command line
Code:
iptables -A OUTPUT -o tap2 -s 192.168.2.240 -p udp -m limit --limit 5/m --limit-burst 10 --syn -j
ACCEPT
but the same error.
Please help!!
Billy