Remmina - The GTK+ Remote Desktop Client  v1.4.20
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-wizardy.md
Go to the documentation of this file.
1 When the SSH tunneling features are not enough, you can work around it with other Remmina functionalities, like the pre and post commands in the "Behavior" tab, or the SSH proxy command for SSH connections.
2 
3 ## SOCKS proxy connection
4 
5 In this example, before connecting to the remote server, a SOCKS tunnel is created, and closed when the Remmina connection ends.
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 ```