Showing posts with label tcp. Show all posts
Showing posts with label tcp. Show all posts

23 March, 2010

how to kill active TCP connections

You could also use IPTables which works on all Linux distros.

For dropping traffic from a single host I use:

Code:
iptables -I INPUT -s  -j DROP
Just replace with the address of the host that you want to drop traffic from.