Giter VIP home page Giter VIP logo

myparamiko's Introduction

import paramiko import time

def connect(server_ip, server_port, user, passwd): ssh_client = paramiko.SSHClient() ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) print(f'Connecting to {server_ip}') ssh_client.connect(hostname=server_ip, port=server_port, username=user, password=passwd, look_for_keys=False, allow_agent=False) return ssh_client

def get_shell(ssh_client): shell = ssh_client.invoke_shell() return shell

def send_command(shell, command, timout=1): print(f'Sending command: {command}') shell.send(command + '\n') time.sleep(timout)

def show(shell, n=10000): output = shell.recv(n) return output.decode()

def close(ssh_client): if ssh_client.get_transport().is_active() == True: print('Closing connection') ssh_client.close()

if name == 'main': router1 = {'server_ip': '192.168.122.30', 'server_port': '22', 'user':'u1', 'passwd':'cisco'} client = connect(**router1) shell = get_shell(client)

send_command(shell, 'enable')
send_command(shell, 'cisco') # this is the enable password
send_command(shell, 'term len 0')
send_command(shell, 'sh version')
send_command(shell, 'sh ip int brief')

output = show(shell)
print(output)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.