Hi,
I get the following SSH error message while trying to access an HTTP
server tunnelled through SSH 2:
channel_open_failure: 5: reason 1: bla bla
I see the code is in serverloop.c and looks like
packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED);
packet_put_cstring("bla bla");
which seems to indicate the server is badly configurated. However I
think a more informative message would be more appropriate...
Thanks,
Dimitri
On Tue, Feb 06, 2001 at 10:33:41PM +0100, Dimitri Papadopoulos wrote:> I see the code is in serverloop.c and looks like > packet_put_int(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED); > packet_put_cstring("bla bla"); > which seems to indicate the server is badly configurated. However I > think a more informative message would be more appropriate...yes, i did not care when i wrote these lines. just replace "bla bla" with "". -m