1

I want to running SDK. The docs like this :

  1. For Running SDK you can use (MobaXterm or Putty)
  2. Create an SSH Session with the following data:

    Address/Host : xxx.xxx.xxx.xxx

    Port : 2222

    Username : Secret

    Password : secret

So I try to access it use Putty like this :

enter image description here

Then I click open and input username and password, the result like this :

enter image description here

How can I solve this problem?

Update :

I try Secret@xxx.xxx.xxx.xxx too. But it does not works

I have tried more than 10 times and failed. I tried using MobaXterm and winscp and that also failed. I'm confused to solve this problem

Success Man
  • 291
  • 2
  • 4
  • 7

2 Answers2

1

It depends if your can access the host without this SDK via putty?

If not check first this: PuTTY password access denied

If it is possible to access the host via putty, then you have only the problem to pass authorization?!

Best option would be to use a SSH Private Key (Use as example PuttyGen to create a key) and let pagent running on background with the unlocked private key. Then there is no password based logon needed.

This is a detailed instruction: https://www.howtoforge.com/ssh_key_based_logins_putty

If your really wont to pass the passwort, you need to call putty like this:

putty -load MySession -pw MYPASSWORD

or without a session (use the default session params):

putty -P 2222 user@host -pw MYPASSWORD
Thomas
  • 156
-1

I too Had a same problem then i Found that i had not done the port forwading so that i can access it from the public network,so make sure your port is opened for the public access which ever port you are using for ssh.

  • 1
    The fact the original author got an 'access denied' is a clear indication the server he is connecting to actually responded and rejected the credentials. Implying that it isn't caused by blocked ports. – amo-ej1 Mar 25 '21 at 07:01
  • You are more then welcome to try ssh on closed port and know the error buddy – Sam David Mar 25 '21 at 07:13
  • 1
    I get an error message which clearly states 'connection refused'. – amo-ej1 Mar 25 '21 at 07:45