local $sshfs -oIdentityFile=/path/to/id_rsa username@cluster-name.it4i.cz:. mountpoint
```
Using SSHFS, the user's home directory will be mounted on your local computer, just like an external disk.
...
...
@@ -153,9 +153,9 @@ Using SSHFS, the user's home directory will be mounted on your local computer, j
Learn more about SSH, SCP, and SSHFS by reading the manpages:
```console
$man ssh
$man scp
$man sshfs
local $man ssh
local $man scp
local $man sshfs
```
On Windows, use the [WinSCP client][c] to transfer data. The [win-sshfs client][d] provides a way to mount the cluster filesystems directly as an external disc.
...
...
@@ -225,10 +225,10 @@ Port forwarding is static; each single port is mapped to a particular port on a
!!! note
Applications with inbuilt proxy support experience unlimited access to remote hosts via a single proxy server.
To establish a local proxy server on your workstation, install and run the SOCKS proxy server software. On Linux, SSHD demon provides the functionality. To establish the SOCKS proxy server listening on port 1080 run:
To establish a local proxy server on your workstation, install and run the SOCKS proxy server software. On Linux, SSHD demon provides the functionality. To establish the SOCKS proxy server listening on port 1080 run:
```console
$ssh -D 1080 localhost
local $ssh -D 1080 localhost
```
On Windows, install and run the free, open source Sock Puppet server.
...
...
@@ -236,10 +236,10 @@ On Windows, install and run the free, open source Sock Puppet server.
Once the proxy server is running, establish the SSH port forwarding from cluster to the proxy server, port 1080, exactly as [described above][5]:
```console
$ssh -R 6000:localhost:1080 cluster-name.it4i.cz
local $ssh -R 6000:localhost:1080 cluster-name.it4i.cz
```
Now, configure the applications proxy settings to `localhost:6000`. Use port forwarding to access the [proxy server from compute nodes][5], as well.
Now, configure the applications proxy settings to `localhost:6000`. Use port forwarding to access the [proxy server from compute nodes][9], as well.