PuTTY是一个Telnet/SSH/rlogin/纯TCP以及串行阜连线软件。较早的版本仅支援Windows平台,在最近的版本中开始支援各类Unix平台,并打算移植至Mac OS X上。除了官方版本外,有许多非官方的团体或个人将PuTTY移植到其他平台上,像是以Symbian为基础的移动电话。
PuTTY为一开放源代码软件,主要由Simon Tatham维护,使用MIT licence

PuTTY 0.63 主要是安全方面的问题修复,包括:
- Security fix: prevent a nefarious SSH server or network attacker from crashing PuTTY at startup in three different ways by presenting a maliciously constructed public key and signature.
- Security fix: PuTTY no longer retains the private half of users' keys in memory by mistake after authenticating with them.
- Revamped the internal configuration storage system to remove all fixed arbitrary limits on string lengths. In particular, there should now no longer be an unreasonably small limit on the number of port forwardings PuTTY can store.
- Port-forwarded TCP connections which close one direction before the other should now be reliably supported, with EOF propagated independently in the two directions. This also fixes some instances of port-forwarding data corruption (if the corruption consisted of losing data from the very end of the connection) and some instances of PuTTY failing to close when the session is over (because it wrongly thought a forwarding channel was still active when it was not).
- The terminal emulation now supports xterm's bracketed paste mode (allowing aware applications to tell the difference between typed and pasted text, so that e.g. editors need not apply inappropriate auto-indent).
- You can now choose to display bold text by both brightening the foreground colour and changing the font, not just one or the other.
- PuTTYgen will now never generate a 2047-bit key when asked for 2048 (or more generally n−1 bits when asked for n).
- Some updates to default settings: PuTTYgen now generates 2048-bit keys by default (rather than 1024), and PuTTY defaults to UTF-8 encoding and 2000 lines of scrollback (rather than ISO 8859-1 and 200).
- Unix: PSCP and PSFTP now preserve the Unix file permissions, on copies in both directions.
- Unix: dead keys and compose-character sequences are now supported.
- Unix: PuTTY and pterm now permit font fallback (where glyphs not present in your selected font are automatically filled in from other fonts on the system) even if you are using a server-side X11 font rather than a Pango client-side one.
- Bug fixes too numerous to list, mostly resulting from running the code through Coverity Scan which spotted an assortment of memory and resource leaks, logic errors, and crashes in various circumstances.
引用来自“西北疯”的评论
引用来自“牛仔豆”的评论
总算将默认编码改为utf-8了
引用来自“燃灯”的评论
引用来自“voov”的评论
xshell
Xshell更强大,个人用也免费。
引用来自“dworry”的评论
偶一直是winscp + putty。
引用来自“牛仔豆”的评论
总算将默认编码改为utf-8了
谢谢先!
引用来自“笨二十一”的评论
引用来自“dworry”的评论
偶一直是winscp + putty。
引用来自“dworry”的评论
偶一直是winscp + putty。
另外WinSCP和PuTTY都支持免安装(都是开源软件).
WinSCP配置保存在当前目录下的WinSCP.ini
PuTTY配置保存在注册表[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
Ubuntu上通过终端和自带的文件管理器Nautilus来进行管理,为了方便启动,可以弄个脚本:
#!/bin/bash
chmod 600 key
ssh-add key
nautilus sftp://user@ip/
运行脚本后就会自动用文件管理器Nautilus打开远程服务器目录,如果key有密码短语,则需要输入,接着就可以进行可视化管理,右键打开远程终端即可用命令行管理服务器.(估计OSX的文件管理器应该也支持sftp协议)
端口转发可以这样写(远程3306转发到本地13306,远程10000转发到本地10000)
#!/bin/bash
chmod 600 key
ssh -L 13306:127.0.0.1:3306 -L 10000:127.0.0.1:10000 user@ip -N -i key
echo "SSH Port Forwarding ..."
生成密钥对运行ssh-keygen即可,生成的密钥对位于~/.ssh/
ssh配置位于/etc/ssh/sshd_config
sudo nano /etc/ssh/sshd_config
PubkeyAuthentication yes # 启用公钥认证
PasswordAuthentication no # 禁止密码认证
引用来自“笨二十一”的评论
引用来自“dworry”的评论
偶一直是winscp + putty。
引用来自“dworry”的评论
偶一直是winscp + putty。
引用来自“voov”的评论
xshell