Changes between Initial Version and Version 1 of ElabElabSshProxy


Ignore:
Timestamp:
Oct 21, 2010 2:39:21 PM (14 years ago)
Author:
mikeryan
Comment:

basic writeup

Legend:

Unmodified
Added
Removed
Modified
  • ElabElabSshProxy

    v1 v1  
     1== Setting up !FoxyProxy ==
     2
     3This only needs to be done once.
     4
     5Install the [https://addons.mozilla.org/en-US/firefox/addon/2464/ FoxyProxy extension] for Firefox. Restart your browser to complete the installation.
     6
     7Follow these steps to set up the proxy. Text you should input is '''bold'''.
     8
     9Click the __A__dd New Proxy button
     10
     11 * P__r__oxy Details tab
     12   * use __M__anual Proxy Configuration.
     13   * __H__ost: '''localhost''' __P__ort: '''1080'''
     14 * URL __P__atterns tab
     15   * click __A__dd New Pattern
     16   * __P__attern Name: '''elab in elab''' (or anything you want)
     17   * __U__RL pattern: '''https?://myboss\..*deterlab\.net/'''
     18   * change "Pattern Contains" to Regular expression
     19   * click OK
     20 * __G__eneral tab
     21  * give it a good name, like '''Elab in Elab tunnel'''
     22  * click OK
     23 * Use the Move __U__p button to move the new pattern to the top of the list
     24
     25== Connecting to Inner Boss ==
     26
     27Once you've set up !FoxyProxy, whenever you want to connect to inner boss you must start an SSH SOCKS proxy. To do this using the standard OpenSSH command line client, run:
     28{{{
     29ssh -D 1080 username@users.isi.deterlab.net
     30}}}
     31
     32You may then access inner boss using the url:
     33{{{
     34http://myboss.${experiment_name}.${project_name}.isi.deterlab.net/
     35}}}
     36Fill in {{{ ${experiment_name} }}} and {{{ ${project_name} }}} with your experiment and project. For instance, the experiment '''test123''' in the '''example''' project would use this URL:
     37{{{
     38http://myboss.test123.example.isi.deterlab.net/
     39}}}
     40
     41Once you are done, you may close the SSH tunnel connection. You may have to use Ctrl-C if it does not disconnect after you log out.