参考文献:
http://www.cnblogs.com/gannan/archive/2012/02/06/2339883.html
pydoc paramiko
paramiko简介
paramiko是用python语言写的一个模块,遵循SSH2协议,支持以加密和认证的方式,进行远程服务器的连接。
由于使用的是python这样的能够跨平台运行的语言,所以所有python支持的平台,如Linux, Solaris, BSD, MacOS X, Windows等,paramiko都可以支持,因此,如果需要使用SSH从一个平台连接到另外一个平台,进行一系列的操作时,paramiko是 最佳工具之一。
举个常见的例子,现有这样的需求:需要使用windows客户端,远程连接到Linux服务器,查看上面的日志状态,大家通常使用的方法会是:
1:用telnet
2:用PUTTY
3:用WinSCP
4:用XManager等…
那现在如果需求又增加一条,要从服务器上下载文件,该怎么办?那常用的办法可能会是:
1:Linux上安装FTP并配置
2:Linux上安装Sambe并配置…
大家会发现,常见的解决方法都会需要对远程服务器必要的配置,如果远程服务器只有一两台还好说,如果有N台,还需要逐台进行配置,或者需要使用代码进行以上操作时,上面的办法就不太方便了。
使用paramiko可以很好的解决以上问题,比起前面的方法,它仅需要在本地上安装相应的软件(python以及PyCrypto),对远程服务器没有配置要求,对于连接多台服务器,进行复杂的连接操作特别有帮助。
paramiko安装
本人用的最简单的安装方式:
1
|
$ easy_install paramiko |
paramiko函数简介
目前仅仅用的下面的这两个class,如果以后还使用其他的模块的话,继续添加!
transport
简介:
An SSH Transport attaches to a stream (usually a socket), negotiates an encrypted session, authenticates, and then creates stream tunnels, called `channels <.Channel>`, across the session. Multiple channels can be multiplexed across a single session (and often are, in the case of port forwardings).
channel
简介:
1
|
A secure tunnel across an SSH `.Transport`. A Channel is
meant to behave like a socket, and
has an API that should be indistinguishable from
the Python socket API.
|
paramiko简单实例应用
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#/usr/bin/env python import
paramiko
import
sys
import
traceback
import
socket
import
os
import
getpass
# setup logging paramiko.util.log_to_file( ‘demo.log‘ )
hostname =
‘192.168.1.253‘
port =
22
username =
‘apache‘
# now connect try :
sock =
socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((hostname, port))
except
Exception as e:
print ( "**** Connect failed ****" )
traceback.print_exc()
sys.exit( 1 )
try :
t =
paramiko.Transport(sock)
try :
t.start_client()
except
paramiko.SSHException:
print ( ‘**** SSH negotiation failed. ****‘ )
sys.exit( 1 )
try :
keys = paramiko.util.load_host_keys(os.path.expanduser( ‘~/.ssh/known_hosts‘ ))
except
IOError:
try :
keys =
paramiko.util.load_host_keys(os.path.expanduser( ‘~/ssh/known_hosts‘ ))
except
IOError:
print ( ‘**** Unable to open host keys file ****‘ )
keys =
{}
# check server‘s host key -- this is important.
key =
t.get_remote_server_key()
if
hostname not
in keys:
print ( ‘*** WARNING: Unknown host key!‘ )
elif
key.get_name() not
in keys[hostname]:
print ( ‘*** WARNING: Unknown host key!‘ )
elif
keys[hostname][key.get_name()] ! =
key:
print ( ‘*** WARNING: Host key has changed!!!‘ )
sys.exit( 1 )
else :
print ( ‘*** Host key OK.‘ )
pw =
getpass.getpass( ‘Password for %s@%s: ‘
% (username, hostname))
t.auth_password(username, pw)
chan =
t.open_session()
chan.get_pty()
chan.invoke_shell()
print ( ‘**** Here we go! \n‘ )
chan.send( ‘pwd‘ )
print
chan.recv( 9999 )
chan.close()
t.close()
except
Exception as e:
print ( ‘*** Caught exception: ‘
+ str (e.__class__) +
‘: ‘ + str (e))
traceback.print_exc()
try :
t.close()
except :
pass
sys.exit( 1 )
|