Install tcpkill ```yum -y install dsniff --enablerepo=epel``` View connections ```netstat -tnpa | grep ESTABLISHED.*sshd.``` Block with ip tables ```iptables -A INPUT -s IP-ADDRESS -j DROP``` Kill connection ```tcpkill -i eth0 -9 port 50185```