Na documentação do protocolo SSH , referente aos canais:
All terminal sessions, forwarded connections, etc., are channels. Either side may open a channel. Multiple channels are multiplexed into a single connection.
Channels are identified by numbers at each end. The number referring to a channel may be different on each side. Requests to open a channel contain the sender's channel number. Any other channel related messages contain the recipient's channel number for the channel.
Channels are flow-controlled. No data may be sent to a channel until a message is received to indicate that window space is available.
Encaminhamento de porta
O comando que você tem parece bem. Você tem certeza de que o serviço ao qual está tentando se conectar está funcionando e aceitando conexões? Os erros do canal parecem indicar que não é.
Quais são os meus canais ativos?
Se você tiver uma conexão ssh
ativa, use a seguinte combinação de teclas para obter ajuda:
Shift + ~ seguido por Shift + ?
$ ~?
Supported escape sequences:
~. - terminate connection (and any multiplexed sessions)
~B - send a BREAK to the remote system
~C - open a command line
~R - Request rekey (SSH protocol 2 only)
~^Z - suspend ssh
~# - list forwarded connections
~& - background ssh (when waiting for connections to terminate)
~? - this message
~~ - send the escape character by typing it twice
(Note that escapes are only recognized immediately after newline.)
debug2: channel 2: written 480 to efd 8
Você pode usar essa combinação de teclas para obter uma lista dos canais ativos:
Shift + ~ seguido por Shift + #
$ ~#
The following connections are open:
#2 client-session (t4 r0 i0/0 o0/0 fd 6/7 cc -1)
debug2: channel 2: written 93 to efd 8