Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2441637
  • 博文数量: 328
  • 博客积分: 4302
  • 博客等级: 上校
  • 技术积分: 5486
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-01 11:14
个人简介

悲剧,绝对的悲剧,悲剧中的悲剧。

文章分类

全部博文(328)

文章存档

2017年(6)

2016年(18)

2015年(28)

2014年(73)

2013年(62)

2012年(58)

2011年(55)

2010年(28)

分类: WINDOWS

2013-12-02 14:11:21

plink是putty套件中的一个工具。大家应该都很熟悉putty的工作方式,就是先通过填写用户名和密码登录到远程的Unix系统上,然后再交互式对远程机器进行操作。和putty不同,plink提供了一种非交互的使用模式。使用时,用户名和密码被包含在参数中,直接执行用户需要的操作。
  1. C:\Program Files\putty>plink
  2. PuTTY Link: command-line connection utility
  3. Release 0.63
  4. Usage: plink [options] [user@]host [command]
  5.        ("host" can also be a PuTTY saved session name)
  6. Options:
  7.   -V print version information and exit
  8.   -pgpfp print PGP key fingerprints and exit
  9.   -v show verbose messages
  10.   -load sessname Load settings from saved session
  11.   -ssh -telnet -rlogin -raw -serial
  12.             force use of a particular protocol
  13.   -P port connect to specified port
  14.   -l user connect with specified username
  15.   -batch disable all interactive prompts
  16. The following options only apply to SSH connections:
  17.   -pw passw login with specified password
  18.   -D [listen-IP:]listen-port
  19.             Dynamic SOCKS-based port forwarding
  20.   -L [listen-IP:]listen-port:host:port
  21.             Forward local port to remote address
  22.   -R [listen-IP:]listen-port:host:port
  23.             Forward remote port to local address
  24.   -X -x enable / disable X11 forwarding
  25.   -A -a enable / disable agent forwarding
  26.   -t -T enable / disable pty allocation
  27.   -1 -2 force use of particular protocol version
  28.   -4 -6 force use of IPv4 or IPv6
  29.   -C enable compression
  30.   -i key private key file for authentication
  31.   -noagent disable use of Pageant
  32.   -agent enable use of Pageant
  33.   -m file read remote command(s) from file
  34.   -s remote command is an SSH subsystem (SSH-2 only)
  35.   -N don
介绍下常用参数:

-P 指定服务器端口,这里是大写P;
-l 指定以哪个用户身份执行命令;
-pw 指定用户密码;
-i keyfile指定私钥文件;
-m file如果需要执行的命令比较多,可以将命令保存到一个文件,通过-m参数指定文件.

下面是一个小例子,在DOS下查询远程机器的时间
  1. C:\Users\linghzha\Program Files\putty>PLINK.EXE -l root -pw password 192.168.0.23 date
  2. Mon Dec 2 14:04:13 CST 2013
详细的介绍,参考官方文档:
阅读(3127) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~