Hello
I made progress, but I still need to know where to register the users and passwords for the people that will login.
Any ideas?
Regards
Usually I copy the users key with the ssh-copy-id from the client to the server. For this the server has (temporary) allow login via password. We have a .cmd or shell script ported which IIRC worked for me after I discovered that we have it and run it from the directory it resides. Something like 'ssh-copy-id -i ~/.ssh/mykey user@host' (see
https://www.ssh.com/academy/ssh/copy-id).
Problem is we usually don't have passwords on OS/2. And I'm not sure ~/ works as link to your home directory. So you use better full path here.
The other probably better way is to copy your own .pub key to the server f.i. via ftp or samba or USB-stick and insert it manually in the authorized_keys file at the server.
I've played with different SSH versions and think I created a topic here. Remember to use the debug option(s) when trying to connect. ssh -v serverip or ssh -v username@serverip.
You usually don't configure user/password on the server as these are the regular Linux users/passwords. I don't know how to configure user/password on OS/2 server. I think I ever used keys to connect instead user/password.