You can change the port ssh listens on in the config file /etc/ssh/sshd_config.
Change:
CODE
Port 22
to whatever port you want it to listen on.
Or you could DNAT the connection with iptables:
CODE
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 5555 -j DNAT --to 127.0.0.1:22
This would forward ssh connections on port 5555 to port 22 on the localhost.