Often you need to create a tunnel from one system to another, this is simple enough to do. Either you want to forward a local port on your system to a remote system securely (think POP3 etc) which you can do like this on the local system:
ssh -f -N -L 110:localhost:110 ruser@remote.system.com
Then you would configure […]