Last active
May 6, 2017 17:13
-
-
Save shekkbuilder/083ce3fda58f99e421cd02dbcc5117f0 to your computer and use it in GitHub Desktop.
iptables_killtcp.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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