Add this line in your bash profile for autocomplete your ssh hosts.
complete -W "$(echo `cat ~/.ssh/known_hosts | cut -f 1 -d ' ' | \ sed -e s/,.*//g | uniq | grep -v "\["`;)" ssh
Source: Florian Beer http://blog.no-panic.at/2011/09/15/my-bash-configuration/