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 theshellusing 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 )