Linux Forums - Linux Help,Advice & support community:LinuxSolved.com

Network Troublshooting => General Networking Support in Linux => Topic started by: klakshman03 on August 11, 2005, 05:54:18 AM

Title: how to drop syn
Post by: klakshman03 on August 11, 2005, 05:54:18 AM
Hi lnx... grp
    what is synflood and how it effects on servers and clients...

  iam using redhat linux9 for forwarding. i want to drop sysflood by using iptables ....pls suggest me
Title: how to drop syn
Post by: Ricky on August 11, 2005, 05:53:45 PM
synflood is actually fake tcp/ip request to a machine which can turn it down on the network.. ie we can sa DoS attack.

about preventing it, you should wait for some expert to see this post . BTW.. just allow only those services which are required .
Title: drop syn
Post by: sathish on August 17, 2005, 12:24:56 PM
Hai klakshman03

You can drop the syn floods by using the below mentioned code

iptables -A INPUT -p tcp ! --syn -m state --state NEW -j DROP

iptables -A INPUT -i eth0 -p tcp --syn -j DROP



Sathish.