Advertisement
Guest User

Untitled

a guest
Sep 24th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. from pprint import pprint
  2. from jnpr.junos import Device
  3. dev=Device(host=’192.168.56.102’, user=’support’, password=’Support’ )
  4. dev.open()
  5. pprint(dev.facts)
  6. dev.close()
  7.  
  8.  
  9. E0001:invalid character in identifier (<unknown>, line 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement