推荐学习书目
› Learn Python the Hard Way
Python Sites
› PyPI - Python Package Index
› http://diveintopython.org/toc/index.html
› Pocoo
值得关注的项目
› PyPy
› Celery
› Jinja2
› Read the Docs
› gevent
› pyenv
› virtualenv
› Stackless Python
› Beautiful Soup
› 结巴中文分词
› Green Unicorn
› Sentry
› Shovel
› Pyflakes
› pytest
Python 编程
› pep8 Checker
Styles
› PEP 8
› Google Python Style Guide
› Code Style from The Hitchhiker's Guide
ml2737150
V2EX  ›  Python

怎么用 Python 登录 ssh 然后获取 ssh 的 banner

  •  
  •   ml2737150 · Dec 7, 2017 · 4384 views
    This topic created in 3214 days ago, the information mentioned may be changed or developed.
    10 replies  •  2017-12-08 17:24:39 +08:00
    ml2737150
        1
    ml2737150  
    OP
       Dec 7, 2017
    如题
    congminghaoxue92
        2
    congminghaoxue92  
       Dec 7, 2017
    ml2737150
        3
    ml2737150  
    OP
       Dec 7, 2017
    @congminghaoxue92 大佬 我看过了 没看懂 你能给个例子吗
    julyclyde
        4
    julyclyde  
       Dec 7, 2017
    @ml2737150 你也太懒了
    QQ2171775959
        5
    QQ2171775959  
       Dec 7, 2017
    老铁,扎心了,自己好好看看吧。。。。学习一下。。
    ml2737150
        6
    ml2737150  
    OP
       Dec 7, 2017
    @julyclyde 我主要是看不懂英文 要用翻译软件一点点弄
    cevincheung
        7
    cevincheung  
       Dec 7, 2017
    wangxn
        8
    wangxn  
       Dec 7, 2017 via Android
    程序员看不懂英文也太说不过去了。
    litter123
        9
    litter123  
       Dec 7, 2017
    带上你的 Chrome+Google Tranlate 插件,一次把整个网页译了不就得了
    congminghaoxue92
        10
    congminghaoxue92  
       Dec 8, 2017
    from paramiko import SSHClient
    client = SSHClient()
    client.load_system_host_keys()
    client.connect('192.168.2.225',22,'user','passwd')
    stdin, stdout, stderr = client.exec_command('ls -l')
    for line in stdout:
    print('... ' + line.strip('\n'))
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   2656 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 36ms · UTC 02:36 · PVG 10:36 · LAX 19:36 · JFK 22:36
    ♥ Do have faith in what you're doing.