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
|
#!/usr/bin/python3
import logging
import sys
from ncclient import manager
def connect(host, port, user, password):
conn = manager.connect(host=host,
port=port,
username=user,
password=password,
timeout=60,
device_params={'name': 'junos'},
hostkey_verify=False)
logging.info('show system users')
logging.info('*' * 30)
result = conn.command(command='show system users', format='text')
logging.info(result)
logging.info('show version')
logging.info('*' * 30)
result = conn.command('show version', format='text')
logging.info(result.xpath('output')[0].text)
logging.info('bgp summary')
logging.info('*' * 30)
result = conn.command('show bgp summary')
logging.info(result)
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', '22', 'netconf', 'juniper!')
|