File: get-session-params.py

package info (click to toggle)
python-ncclient 0.6.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,448 kB
  • sloc: python: 9,548; xml: 476; makefile: 77; sh: 5
file content (38 lines) | stat: -rw-r--r-- 1,382 bytes parent folder | download
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
#!/usr/bin/python3
import logging
import sys

from ncclient import manager
from ncclient.transport import errors


def connect(host, port, user, password):
    try:
        conn = manager.connect(host=host,
                               port=port,
                               username=user,
                               password=password,
                               timeout=60,
                               device_params={'name': 'junos'},
                               hostkey_verify=False)

        logging.info('connected: %s ... to host %s on port %s', conn.connected, host, port)
        logging.info('session-id %s:', conn.session_id)
        logging.info('client capabilities:')
        for i in conn.client_capabilities:
            logging.info(' %s', i)
        logging.info('server capabilities:')
        for i in conn.server_capabilities:
            logging.info(' %s', i)
        conn.close_session()
    except errors.SSHError:
        logging.exception('Unable to connect to host: %s on port %s', host, port)


if __name__ == '__main__':
    LOG_FORMAT = '%(asctime)s %(levelname)s %(filename)s:%(lineno)d %(message)s'
    logging.basicConfig(stream=sys.stdout, level=logging.INFO, format=LOG_FORMAT)

    connect('router', 830, 'netconf', 'juniper!')
    connect('router', 831, 'netconf', 'juniper!')
    connect('router', 830, 'netconf', 'juniper!')