forked from network-automation/ansible-napalm-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.py
34 lines (26 loc) · 829 Bytes
/
backup.py
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
import napalm
import sys
import os
from time import gmtime, strftime
def main():
"""Grab a config for the device."""
time = strftime("%Y-%m-%d@%H-%M", gmtime())
# Use the appropriate network driver to connect to the device:
driver = napalm.get_network_driver('nxos')
# Connect:
device = driver(hostname='192.168.2.3', username='admin',
password='Bullf00d')
print 'Opening ...'
device.open()
nxos_facts = device.get_facts()
checkpoint = device._get_checkpoint_file()
#print(checkpoint)
#create the directory if it does not exist
if not os.path.exists("backup"):
os.makedirs("backup")
f = open("backup/" + nxos_facts['hostname'] + "." + time, 'w')
f.write(checkpoint)
f.close
device.close()
if __name__ == '__main__':
main()