By the way, unless you run a honey pot, you should probably only allow a few IP ranges for SSH in your firewall.
ipset create n hash:net
-A INPUT -m set --match-set n src -j DROP
-A INPUT -p tcp -m multiport -j n \
--dports 22,23,25,445,1433,3389,8080
-A n -j SET --add-set n src
-A n -j DROP