Actually, I am not sure whether this should be a ssh tunnel problem or PuTTY specific problem. But I still want to show it as an ssh question at the very beginning.

I am using the ssh tunnel under windows system, and I am using putty to do that. When I create a putty session with tunnel settings and connect the target machine. I found in the Process Explorer, there is two TCP connection exists.

  • One is a connection to the remote-host:22
  • the other is listening on a local port (such as 8000).

From my point of view, they make sense. As the first one is the really ssh connection to remote ssh server, which all the real out-coming data will go though. And the second one is the result of a port forwarding ( ssh tunnel ), map to a remote http proxy, and it indeed works as I wish.

HOWEVER, there is still another "data exchange channel" here, I mean, that's the shell that connect to remote ssh server.

I am just confusing:

  • if the local 8000 port(ssh tunnel)is transferring the data to remote machine using the ssh connection, is the shell using the same connection?
  • If YES ( and it seems to be YES here, as there is only one ssh connection ), how the ssh connection distinguish this is a shell command data or some tunnel data?
    Does it mean there is protocol under the ssh tunnel that can distinguish what the data is? ( Just a arbitrary guess )
link|improve this question

1  
This question is not programming related, you may want to to try superuser.com instead. – FrankS Jan 12 at 10:08
feedback

closed as off topic by Paul R, Daniel Fischer, casperOne Feb 12 at 17:54

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

SSH is a family of protocols of different levels. Shell and tunneling are subsystems which run on top of SSH connection. They can run in parallel. Data you send are sent over channels (instances of some subsystem) and the channel to which the SSH packet (wrapper around your data) belongs is specified in the packet itself.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.