Change ssh tunnel after connecting

3

1

Is it possible to change/add an ssh tunnel after connecting to the ssh server via command line? I know you can do it with putty

Quintin

Posted 2011-10-20T13:22:39.507

Reputation: 53

Answers

4

Assuming your using OpenSSH, you can use the escape characters to add/remove tunnels.

http://www.openbsd.org/cgi-bin/man.cgi?query=ssh&sektion=1#ESCAPE+CHARACTERS

Note:

  • While typing the escape character, it won't actually appear in the terminal.
  • An escape character should follow a newline.

Example: Adding a local port forwarding of 1234 to 1234

~C
L1234:127.0.0.1:1234

rrehbein

Posted 2011-10-20T13:22:39.507

Reputation: 234