设为首页 收藏本站
查看: 667|回复: 0

[经验分享] 系统运维工程师的法宝:python paramiko-python爱好者

[复制链接]

尚未签到

发表于 2018-8-5 11:48:34 | 显示全部楼层 |阅读模式
  系统运维工程师的法宝:python paramiko
  python视频培训班
  安装:pip install Paramiko
  paramiko是用python语言写的一个模块,遵循SSH2协议,支持以加密和认证的方式,进行远程服务器的连接。
  使用paramiko可以很好的解决以下问题:
  需要使用windows客户端,
  远程连接到Linux服务器,查看上面的日志状态,批量配置远程服务器,文件上传,文件下载等
  "paramiko" is a combination of the esperanto words for "paranoid" and
  "friend".  it's a module for python 2.5+ that implements the SSH2 protocol
  for secure (encrypted and authenticated) connections to remote machines.
  unlike SSL (aka TLS), SSH2 protocol does not require hierarchical
  certificates signed by a powerful central authority. you may know SSH2 as
  the protocol that replaced telnet and rsh for secure access to remote
  shells, but the protocol also includes the ability to open arbitrary
  channels to remote services across the encrypted tunnel (this is how sftp
  works, for example).
  it is written entirely in python (no C or platform-dependent code) and is
  released under the GNU LGPL (lesser GPL).
  the package and its API is fairly well documented in the "doc/" folder
  that should have come with this archive.
  Requirements
  ------------
  - python 2.5 or better <http://www.python.org/>
  - pycrypto 2.1 or better <https://www.dlitz.net/software/pycrypto/>
  If you have setuptools, you can build and install paramiko and all its
  dependencies with this command (as root)::
  easy_install ./
  Portability
  -----------
  i code and test this library on Linux and MacOS X. for that reason, i'm
  pretty sure that it works for all posix platforms, including MacOS. it
  should also work on Windows, though i don't test it as frequently there.
  if you run into Windows problems, send me a patch: portability is important
  to me.
  some python distributions don't include the utf-8 string encodings, for
  reasons of space (misdirected as that is). if your distribution is
  missing encodings, you'll see an error like this::
  LookupError: no codec search functions registered: can't find encoding
  this means you need to copy string encodings over from a working system.
  (it probably only happens on embedded systems, not normal python
  installs.) Valeriy Pogrebitskiy says the best place to look is
  ``.../lib/python*/encodings/__init__.py``.
  Bugs & Support
  --------------
  Please file bug reports at https://github.com/paramiko/paramiko/. There is currently no mailing list but we plan to create a new one ASAP.
  Demo
  ----
  several demo scripts come with paramiko to demonstrate how to use it.
  probably the simplest demo of all is this::
  import paramiko, base64
  key = paramiko.RSAKey(data=base64.decodestring('AAA...'))
  client = paramiko.SSHClient()
  client.get_host_keys().add('ssh.example.com', 'ssh-rsa', key)
  client.connect('ssh.example.com', username='strongbad', password='thecheat')
  stdin, stdout, stderr = client.exec_command('ls')
  for line in stdout:
  print '... ' + line.strip('\n')
  client.close()
  ...which prints out the results of executing ``ls`` on a remote server.
  (the host key 'AAA...' should of course be replaced by the actual base64
  encoding of the host key.  if you skip host key verification, the
  connection is not secure!)
  the following example scripts (in demos/) get progressively more detailed:
  :demo_simple.py:
  calls invoke_shell() and emulates a terminal/tty through which you can
  execute commands interactively on a remote server.  think of it as a
  poor man's ssh command-line client.
  :demo.py:
  same as demo_simple.py, but allows you to authenticiate using a
  private key, attempts to use an SSH-agent if present, and uses the long
  form of some of the API calls.
  :forward.py:
  command-line script to set up port-forwarding across an ssh transport.
  (requires python 2.3.)
  :demo_sftp.py:
  opens an sftp session and does a few simple file operations.
  :demo_server.py:
  an ssh server that listens on port 2200 and accepts a login for
  'robey' (password 'foo'), and pretends to be a BBS.  meant to be a
  very simple demo of writing an ssh server.
  :demo_keygen.py:
  an key generator similar to openssh ssh-keygen(1) program with
  paramiko keys generation and progress functions.
  Use
  ---
  the demo scripts are probably the best example of how to use this package.
  there is also a lot of documentation, generated with epydoc, in the doc/
  folder.  point your browser there.  seriously, do it.  mad props to
  epydoc, which actually motivated me to write more documentation than i
  ever would have before.
  there are also unit tests here::
  $ python ./test.py
  which will verify that most of the core components are working correctly.
  -、执行远程命令:
  #!/usr/bin/python
  #coding:utf-8
  import paramiko
  port =22
  ssh = paramiko.SSHClient()
  ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  ssh.connect(&quot;*.*.*.*&quot;,port,&quot;username&quot;, &quot;password&quot;)
  stdin, stdout, stderr = ssh.exec_command(&quot;你的命令&quot;)
  print stdout.readlines()
  ssh.close()
  二、上传文件到远程
  #!/usr/bin/python
  #coding:utf-8
  import paramiko
  port =22
  t = paramiko.Transport((&quot;IP&quot;,port))
  t.connect(username = &quot;username&quot;, password = &quot;password&quot;)
  sftp = paramiko.SFTPClient.from_transport(t)
  remotepath='/tmp/test.txt'
  localpath='/tmp/test.txt'
  sftp.put(localpath,remotepath)
  t.close()
  三、从远程下载文件
  #!/usr/bin/python
  #coding:utf-8
  import paramiko
  port =22
  t = paramiko.Transport((&quot;IP&quot;,port))
  t.connect(username = &quot;username&quot;, password = &quot;password&quot;)
  sftp = paramiko.SFTPClient.from_transport(t)
  remotepath='/tmp/test.txt'
  localpath='/tmp/test.txt'
  sftp.get(remotepath, localpath)
  t.close()
  四、执行多个命令
  #!/usr/bin/python
  #coding:utf-8
  import sys
  sys.stderr = open('/dev/null')       # Silence silly warnings from paramiko
  import paramiko as pm
  sys.stderr = sys.__stderr__
  import os
  class AllowAllKeys(pm.MissingHostKeyPolicy):
  def missing_host_key(self, client, hostname, key):
  return
  HOST = '127.0.0.1'
  USER = ''
  PASSWORD = ''
  client = pm.SSHClient()
  client.load_system_host_keys()
  client.load_host_keys(os.path.expanduser('~/.ssh/known_hosts'))
  client.set_missing_host_key_policy(AllowAllKeys())
  client.connect(HOST, username=USER, password=PASSWORD)
  channel = client.invoke_shell()
  stdin = channel.makefile('wb')
  stdout = channel.makefile('rb')
  stdin.write('''
  cd tmp
  ls
  exit
  ''')
  print stdout.read()
  stdout.close()
  stdin.close()
  client.close()
  五、获取多个文件
  #!/usr/bin/python
  #coding:utf-8
  import paramiko
  import os
  ssh = paramiko.SSHClient()
  ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  ssh.connect('localhost',username='****')
  apath = '/var/log'
  apattern = '&quot;*.log&quot;'
  rawcommand = 'find {path} -name {pattern}'
  command = rawcommand.format(path=apath, pattern=apattern)
  stdin, stdout, stderr = ssh.exec_command(command)
  filelist = stdout.read().splitlines()
  ftp = ssh.open_sftp()
  for afile in filelist:
  (head, filename) = os.path.split(afile)
  print(filename)
  ftp.get(afile, './'+filename)
  ftp.close()
  ssh.close()
  本文由python视频培训班黄老师编写。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-546971-1-1.html 上篇帖子: CentOS 6.4 安装python2.7/mysqldb/ipython 下篇帖子: 用Python实现随机验证码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表