On 12.05.2015 01:31 AM, Real, Elizabeth (392K) wrote:
Here¹s the client output:
SSH PORT 18935:
2015-05-11 16:28:58.651 x2goclient[23725:1861306] modalSession has been exited prematurely - check for a reentrant call to endModalSession: x2go-INFO-8> "Starting connection to server: 128.149.23.102:18935" x2go-ERROR-2> "Connection Error(Cannot connect to 128.149.23.102:18935): Connection refused" 2015-05-11 16:29:12.653 x2goclient[23725:1861306] modalSession has been exited prematurely - check for a reentrant call to endModalSession:
No, that won't help.
Please start sshd manually on the server, I assume it's 128.149.23.102:
ssh 128.149.23.102 /usr/sbin/sshd -ddd -p 18935
The client must be able to connect to the server/port, so please make sure that's possible. For instance by avoiding the firewall via an SSH tunnel as proposed by Stefan in an earlier mail (though his command was wrong):
In another shell, run this command: ssh -L18935:128.149.23.102:18935 128.149.23.102
Then point the client to connect to
127.0.0.1:18935
Try to connect and post the *SSH server* debug output you should now have gathered in the first shell.
Mihai
P.S.: sorry for the intermingled stuff you have to do, but I hope the SSH server debug output will be helpful...