Windows SSH
If you need to ssh into a Windows machine, I highly recommend you use MobaSSH (free for personal use). It's much easier than:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**Install FreeSSHd** | |
Download FreeSSHd from http://www.freesshd.com/?ctt=download | |
Double click to start installer on the server | |
As a service | |
Accept all other defaults | |
**Configure FreeSSHd** | |
Open FreeSSHd settings (may have to kill the service and start manually to get the GUI). | |
SSH tab: | |
Max number = 2 | |
idle = 600 | |
Authentication tab | |
Pub key folder = C:\Program Files (x86)\freeSSHd\keys | |
Password auth = disabled | |
Pub key auth = required | |
Users tab | |
add | |
login=chef | |
auth = 'Pub key (ssh only)' | |
user can use = shell | |
click OK | |
**Add Firewall Rule** | |
netsh advfirewall firewall add rule name="SSH" dir=in action=allow protocol=TCP localport=22 | |
**Restart Service** | |
net stop freesshdservice | |
net start freesshdservice | |
____________________ | |
References: | |
http://m.youtube.com/watch?v=lwHktjugAYM | |
http://www.matthanson.ca/2009/08/ssh-on-windows-server-2008/ | |
http://glipho.com/janaka/how-to-configure-freesshd-on-windows-2012-and-connect-with-putty | |
http://www.freesshd.com/?ctt=overview | |
http://jeroennotebaertsblog.blogspot.com/2011/12/ssh-sftp-server-on-windows-server-2008.html?m=1 | |
https://en.wikipedia.org/wiki/Comparison_of_SSH_servers |
Comments
Post a Comment
Keep it clean and professional...