用plink将ssh做socket代理


WINDOWS:

下载plink,xp用户放入x:/windows下 windows7用户放入x:\Users\当前用户  目录下 (X为当前系统安装目录)。

开始-运行-cmd

plink -N -D Users@IP

 

plink指令

  1. Options:
  2.   -V        打印版本并退出
  3.   -pgpfp    打印PGP masterkeys并退出
  4.   -v        显示详细信息
  5.   -load sessname  从已保存的session读取配置文件
  6.   -ssh -telnet -rlogin -raw
  7.             强制指定使用哪种协议 默认是ssh
  8.   -P port   连接指定的端口 默认是22
  9.   -l user   连接指定的用户名 默认是root
  10.   -batch    关闭交互式
  11. 下面的选项只应用于ssh连接
  12.   -pw passwloginwithspecifiedpassword
  13.   -D 动态的socket转发
  14.   -L 转发本地的端口到远程机器
  15.   -R 转发远程端口到本地
  16.   -X -x     开启/关闭 X11 数据包转发
  17.   -A -a     开启/关闭 代理转发
  18.   -t -T     开启/关闭 PTY控制台
  19.   -1 -2     强制指定哪种协议 默认是ssh2
  20.   -4 -6     强制指定IPV4还是IPV6
  21.   -C        启用压缩功能
  22.   -i key    使用ssh-key进行验证
  23.   -m file   从文件读取远程命令? 这个没用过,不太清楚
  24.   -s        远程命令是一个ssh的子进程( 只支持SSH-2 )  这个也没用过..
  25.   -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)


标签: none


添加新评论