用plink将ssh做socket代理
WINDOWS:
下载plink,xp用户放入x:/windows下 windows7用户放入x:\Users\当前用户 目录下 (X为当前系统安装目录)。
开始-运行-cmd
plink -N -D Users@IP
plink指令
- Options:
- -V 打印版本并退出
- -pgpfp 打印PGP masterkeys并退出
- -v 显示详细信息
- -load sessname 从已保存的session读取配置文件
- -ssh -telnet -rlogin -raw
- 强制指定使用哪种协议 默认是ssh
- -P port 连接指定的端口 默认是22
- -l user 连接指定的用户名 默认是root
- -batch 关闭交互式
- 下面的选项只应用于ssh连接
- -pw passwloginwithspecifiedpassword
- -D 动态的socket转发
- -L 转发本地的端口到远程机器
- -R 转发远程端口到本地
- -X -x 开启/关闭 X11 数据包转发
- -A -a 开启/关闭 代理转发
- -t -T 开启/关闭 PTY控制台
- -1 -2 强制指定哪种协议 默认是ssh2
- -4 -6 强制指定IPV4还是IPV6
- -C 启用压缩功能
- -i key 使用ssh-key进行验证
- -m file 从文件读取远程命令? 这个没用过,不太清楚
- -s 远程命令是一个ssh的子进程( 只支持SSH-2 ) 这个也没用过..
- -N 不启动shell ( 只支持SSH-2)
原版
PuTTY Link: command-line connection utility
Unidentified build, Oct 17 2011 17:11:37
Usage: plink [options] [user@]host [command]
("host" can also be a PuTTY saved session name)
Options:
-V print version information and exit
-pgpfp print PGP key fingerprints and exit
-v show verbose messages
-load sessname Load settings from saved session
-ssh -telnet -rlogin -raw -serial
force use of a particular protocol
-P port connect to specified port
-l user connect with specified username
-batch disable all interactive prompts
The following options only apply to SSH connections:
-pw passw login with specified password
-D [listen-IP:]listen-port
Dynamic SOCKS-based port forwarding
-L [listen-IP:]listen-port:host:port
Forward local port to remote address
-R [listen-IP:]listen-port:host:port
Forward remote port to local address
-X -x enable / disable X11 forwarding
-A -a enable / disable agent forwarding
-t -T enable / disable pty allocation
-1 -2 force use of particular protocol version
-4 -6 force use of IPv4 or IPv6
-C enable compression
-i key private key file for authentication
-noagent disable use of Pageant
-agent enable use of Pageant
-m file read remote command(s) from file
-s remote command is an SSH subsystem (SSH-2 only)
-N don't start a shell/command (SSH-2 only)
-nc host:port
open tunnel in place of session (SSH-2 only)
-sercfg configuration-string (e.g. 19200,8,n,1,X)
Specify the serial configuration (serial only)