Skip to content

Instantly share code, notes, and snippets.

@shekkbuilder
Last active May 6, 2017 17:13
Show Gist options
  • Save shekkbuilder/083ce3fda58f99e421cd02dbcc5117f0 to your computer and use it in GitHub Desktop.
Save shekkbuilder/083ce3fda58f99e421cd02dbcc5117f0 to your computer and use it in GitHub Desktop.
iptables_killtcp.sh
#!/bin/bash
#more methods: http://rtomaszewski.blogspot.com/2012/11/how-to-forcibly-kill-established-tcp.html
if [ $# -lt 1 ];
then
printf "Usage: $0 <IP>\n" $#
exit 0
fi
raddr=$1
printf "Killing TCP connections to/from ${raddr}...\n"
iptables -I INPUT -s ${raddr} -p tcp -j REJECT --reject-with tcp-reset
iptables -I OUPUT -d ${raddr} -p tcp -j REJECT --reject-with tcp-reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment