Re: howto stop this packet

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 2005-01-14 at 00:22, jqb@xxxxxxxxxx wrote:
> netfilterï
>     howto stop this packet on iptables firewall;
> tcpdump capture packet example:
> 10:35:31.881722 IP 218.6.45.6.51755 > 228.71.74.201.7777: S 1432831257:1432831257(0) win 16384 <mss 1460,nop,nop,sackOK>
> 
> 10:35:36.214120 IP 219.147.192.18.1272 > 228.71.74.201.7777: S 490321:490321(0) win 6400 <mss 1460,nop,nop,sackOK>

  iptables -I INPUT -p tcp --syn -s 218.6.45.6 -d 228.71.74.201 \
    --dport 7777 -j DROP

or maybe:

  iptables -I FORWARD -p tcp --syn -s 218.6.45.6 -d 228.71.74.201 \
    --dport 7777 -j DROP

-j

--
"Beer. Now there's a temporary solution."
	--The Simpsons




[Index of Archives]     [Linux Netfilter Development]     [Linux Kernel Networking Development]     [Netem]     [Berkeley Packet Filter]     [Linux Kernel Development]     [Advanced Routing & Traffice Control]     [Bugtraq]

  Powered by Linux