Ejemplo n.º 1
0
def config_two_switch(device):
   
    conn_device = SSHConnection(device.hostname, device.username, device.password)

    #conn_device_connect = conn_device.establish_connection()
    #conn_device_connect.send('show version\n')
    #time.sleep(1)
    #output = conn_device_connect.recv(1000)

    conn_device.determine_device_type()
    output = conn_device.send_command('show version')

    print output
Ejemplo n.º 2
0
def config_two_switch(device):

    conn_device = SSHConnection(device.hostname, device.username,
                                device.password)

    #conn_device_connect = conn_device.establish_connection()
    #conn_device_connect.send('show version\n')
    #time.sleep(1)
    #output = conn_device_connect.recv(1000)

    conn_device.determine_device_type()
    output = conn_device.send_command('show version')

    print output