Posts

Showing posts with the label reverse

Let's build a tunnel.

Image
Ever want to access your own site with a bit of privacy? Tunnelling can be a way to do that. It does require user rights on the intended machine to be the host. If yoy look at a web site, you see the normal url something.something. sitetype. In this case we are just going to oeorgan1. Bue what we would like to do is try to encrypt the connection between the two machines. One traditional way to do it is using the secure shell (SSH) , but you could probably also use a program called putty.  Here is the simplest version: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec] [-D port] [-e escape_char] [-F configfile] [-i identity_file] [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port] [-R [bind_address:]port:host:hostport] [-S ctl_path] [user@]hostname [command]  $ sudo ssh  -L 80:localhost:80 eddie@oeorgan1 But if we did this it would open a prompt that I do not want. if we use ...