Using sftp on a non-standard port
Just a quick note about sftp.
It makes good security sense to change the ssh port on servers that are Internet accessable. To take advantage of this using ssh is quite straight forward as their is a parameter -p to support this eg:
ssh -p 3432 mick@mickvaites.com
Unfortunately the same is not true for sftp (secure file transfer). [...]