首页 > 代码库 > SSH proxy

SSH proxy

# for Linuxssh nobody@guoliangwu.com -P 22 -C -N -D 127.0.0.1:6500# for windows(PuTTY)plink nobody@guoliangwu.com -P 22 -C -N -D 127.0.0.1:6500

其中-P为端口,-C表示压缩,-N表示不打开远程命令窗口(Don’t start a remote command or shell at all),-D表示转发端口。这样只要在本地客户端设置代理服务器为127.0.0.1:6500,SOCKS5,Firefox配合AutoProxy爽歪歪啊。PS: windows中putty.exe界面勾几个选项就OK了。

SSH proxy