Displaying 2 results from an estimated 2 matches for "channel_request_forwarding".
2002 Jan 05
2
new feature w/ patch
...annel_request_local_forwarding(u_short listen_port, const char *host_to_connect,
- u_short port_to_connect, int gateway_ports)
+channel_request_local_forwarding(const char *listen_host, u_short listen_port,
+ const char *host_to_connect, u_short port_to_connect, int gateway_ports)
{
return channel_request_forwarding(
- NULL, listen_port,
+ listen_host, listen_port,
host_to_connect, port_to_connect,
gateway_ports, /*remote_fwd*/ 0);
}
@@ -2080,7 +2080,7 @@
int success, sock, on = 1, type;
struct addrinfo hints, *ai, *aitop;
char ntop[NI_MAXHOST], strport[NI_MAXSERV];
- const char *hos...
2002 Apr 12
0
[Bug 215] New: No warning for failed ssh -v -R
...ort 2222 forwarded to local address strad:1111
while the logs on the remote machine contain:
Apr 11 16:21:44 odin sshd[3808]: Accepted publickey for russr from ###.###.##.#
port 50191 ssh2
Apr 11 16:21:44 odin sshd[3808]: error: bind: Address already in use
Apr 11 16:21:44 odin sshd[3808]: error: channel_request_forwarding: cannot
listen to port: 2222
It would make debugging connections a lot easier if ssh -v -R would give you a
warning
that the port forwarding you requested had failed.
Thanks,
R.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee...