location: Diff for "ProxyBySsh"

Institute of Mathematics - PublicMathWiki:

Differences between revisions 1 and 21 (spanning 20 versions)
Revision 1 as of 2020-04-10 09:02:10
Size: 1226
Editor: crose
Comment:
Revision 21 as of 2020-05-06 08:49:49
Size: 2884
Editor: megger
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
To get Web access to I-MATH intranet webserver it's possible to setup a SOCKS SSH proxy channel. This is setting is not persistent, start it when you need it.
Line 3: Line 4:
To get Web access to I-MATH intranet webserver it's possible to setup a SOCKS SSH proxy channel: The proxy configuration can be done:
Line 5: Line 6:
 * on the OS - ''not described here''.
 * via commandline - described here for ''Google Chrome'' and ''Opera''.
 * inside the browser via GUI - described here for ''Firefox''.

== SSH Proxy ==
Line 6: Line 12:
  * Linux & Mac OS X: preinstalled.
  * Windows: https://www.howtogeek.com/336775/how-to-enable-and-use-windows-10s-built-in-ssh-commands/
Line 7: Line 15:
   * Linux & Mac OS X: preinstalled.
   * Windows: https://www.howtogeek.com/336775/how-to-enable-and-use-windows-10s-built-in-ssh-commands/

 * Open SSH Socks connection:

{{{
# On the local computer
$ ssh -C -D <I-MATH account>@ssh.math.uzh.ch

# Type in your I-MATH password and leave the connection open all time!
 * Open a terminal and start the SSH Socks connection (I-MATH password):
 {{{
ssh -C -D 1080 <I-MATH account>@ssh.math.uzh.ch
Line 19: Line 20:
 * Tell the browser to use the new proxy connection.  * This terminal won't be used anymore, but it has to be '''open as long as the proxy is in use'''!
Line 21: Line 22:
   * To use the I-MATH intenal DNS Server (necessary get access to hostnames that are only known inside of I-MATH), use the SOCKS5 protocol, incl. DNS forward.
   * Google Chrome
== Browser ==
To use the I-MATH internal DNS Server (necessary to get access to hostnames that are only known inside of I-MATH), use the SOCKS5 protocol '''incl. DNS forward'''.
Line 25: Line 25:
   * `google-chrome --proxy-server="socks5://localhost:1080"` For Google Chrome or Opera, '''open a second terminal''' and type the following command.
||Browser ||Command ||
||Google Chrome ||Linux: `google-chrome --proxy-server="socks5://localhost:1080"`<<BR>>Mac OS X: `/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --proxy-server="socks5://localhost:1080"` '''Alternatively''' you can install and configure the Google Chrome extension [[https://chrome.google.com/webstore/detail/proxy-switchyomega/padekgcemlokbadohgkifijomclgjgif?hl=en|SwitchyOmega]] to automatically switch proxy for certain URLs. Configurations: {{attachment:switchyOmega_proxy.png}} {{attachment:switchyOmega_autoswitch.png}} ||
||Opera ||Linux: `opera --proxy-server="socks5://localhost:1080"`<<BR>>Mac OS X: `/Applications/Opera.app/Contents/MacOS/Opera --proxy-server="socks5://localhost:1080"` ||
Line 27: Line 30:
   * Mac OS X: `/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --proxy-server="socks5://localhost:1080"
Line 29: Line 31:
 * Opera
Line 31: Line 32:
   * `opera --proxy-server="socks5://localhost:1080"`

   * Mac OS X: `/Applications/Opera.app/Contents/MacOS/Opera --proxy-server="socks5://localhost:1080"
Line 36: Line 34:
  * There is no officially option '-proxy-server' for the commandline
  * Start firefox, open 'settings', navigate to 'network' > ''see screenshot''
Line 37: Line 37:
   * There is no officially option '-proxy-server' for the commandline
   * Start firefox, open 'settings', navigate to 'network':
{{attachment:ff-proxy.png}}

== FAQ ==
 * Q: Can I configure Google Chrome / Opera via GUI like Firefox
  * A: yes - just check the 'network' seetings.

 * Q: Why should I start Google Chrome / Opera via commandline?
  * A: This is a very quick way to use the proxy. If you do not need it, start the browser via mouse.

 * Q: Can I automate the steps?
  * A: yes. A small bash script should do the trick: {{{#!/bin/bash

nohup google-chrome --proxy-server="socks5://localhost:1080" & ssh -C -D 1080 <I-MATH account>@ssh.math.uzh.ch }}}

 * Check [[ssh#Working_with_SSH_Keys|SSH Keys]] to setup password less SSH login.

 * Q: in Firefox I don't like to toggle the proxy on/off all the time - is there a better way?
  * A: Create an additional profile 'proxy'. Start Firefox via Terminal `firefox -P`, create the profile, use it and do the proxy config there.

(Web) Proxy by SSH

To get Web access to I-MATH intranet webserver it's possible to setup a SOCKS SSH proxy channel. This is setting is not persistent, start it when you need it.

The proxy configuration can be done:

  • on the OS - not described here.

  • via commandline - described here for Google Chrome and Opera.

  • inside the browser via GUI - described here for Firefox.

SSH Proxy

Browser

To use the I-MATH internal DNS Server (necessary to get access to hostnames that are only known inside of I-MATH), use the SOCKS5 protocol incl. DNS forward.

For Google Chrome or Opera, open a second terminal and type the following command.

Browser

Command

Google Chrome

Linux: google-chrome --proxy-server="socks5://localhost:1080"
Mac OS X: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --proxy-server="socks5://localhost:1080" Alternatively you can install and configure the Google Chrome extension SwitchyOmega to automatically switch proxy for certain URLs. Configurations: switchyOmega_proxy.png switchyOmega_autoswitch.png

Opera

Linux: opera --proxy-server="socks5://localhost:1080"
Mac OS X: /Applications/Opera.app/Contents/MacOS/Opera --proxy-server="socks5://localhost:1080"

  • Firefox
    • There is no officially option '-proxy-server' for the commandline
    • Start firefox, open 'settings', navigate to 'network' > see screenshot

ff-proxy.png

FAQ

  • Q: Can I configure Google Chrome / Opera via GUI like Firefox
    • A: yes - just check the 'network' seetings.
  • Q: Why should I start Google Chrome / Opera via commandline?
    • A: This is a very quick way to use the proxy. If you do not need it, start the browser via mouse.
  • Q: Can I automate the steps?
    • A: yes. A small bash script should do the trick: {{{#!/bin/bash

nohup google-chrome --proxy-server="socks5://localhost:1080" & ssh -C -D 1080 <I-MATH account>@ssh.math.uzh.ch }}}

  • Check SSH Keys to setup password less SSH login.

  • Q: in Firefox I don't like to toggle the proxy on/off all the time - is there a better way?
    • A: Create an additional profile 'proxy'. Start Firefox via Terminal firefox -P, create the profile, use it and do the proxy config there.

PublicMathWiki: ProxyBySsh (last edited 2021-02-04 16:23:12 by eseide)