Remmina - The GTK+ Remote Desktop Client  v1.4.18
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Remmina-ssh-wizzardy.md
Go to the documentation of this file.
1 When the SSH tunneling features are not enough, you can workaround it with other remmina functionalities, e.g. with the pre and post commands in the Behavior TAB, or the SSH proxy command for the SSH connections.
2 
3 ## Socks proxy connection
4 
5 In this example, before to connect to the remote server, we create a socks tunnel, that will be closed when the Remmina connection end
6 
7 ### ssh config
8 
9 ```
10 Host foosock
11  User foo
12  Hostname foorealserver
13  ControlMaster auto
14  ControlPath ~/.ssh/cm_sockets/%r@%h:%p
15 ```
16 ### remmina
17 
18 ```
19 precommand=/bin/ssh -fn -N -D 9090 foosock
20 ```
21 ```
22 postcommand=/bin/ssh -O exit foosock
23 ```