Putty connection issue

Describe what does happen? What is the error you get? Different error messages have different causes, knowing what the error is gives a clue towards the solution.
 
This is the only message I get
 

Attachments

  • IMG_1052.jpeg
    IMG_1052.jpeg
    1.4 MB · Views: 10
Right. Connection refused. That's the clue. Port is closed, in most cases this typically means the service isn't running. There's no daemon (sshd(8) in this case) running that opened the port and listens for connections. Or, you are trying to connect to the wrong host or IP address.
 
Login on the console of the FreeBSD host, because you can't connect to it remotely yet. As root: sysrc sshd_enable="YES", then service sshd start.
 
That :)

And remember to login remotely with a user account. Logging in remotely with root is disabled by default. And should be kept that way.
 
Back
Top