forked from geordie12311/nornir-python-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnorscrap-bgp-uptime.py
More file actions
30 lines (23 loc) · 1.23 KB
/
norscrap-bgp-uptime.py
File metadata and controls
30 lines (23 loc) · 1.23 KB
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
#Python script to check the uptime of BGP neighbors on hosts using the key value
#taken from structured data output
import getpass
from nornir import InitNornir
from nornir_scrapli.tasks import send_command
from nornir_utils.plugins.functions import print_result
from rich import print as rprint
nr = InitNornir(config_file="config.yaml")
password = getpass.getpass()
nr.inventory.defaults.password = password
#above section is going to prompt the user to put in their password
def pull_structured_data(task):
version_result = task.run(task=send_command, command="show ip bgp summary")
task.host["facts"] = version_result.scrapli_response.genie_parse_output()
neighbors = task.host["facts"]["vrf"]["default"]["neighbor"]
for key in neighbors:
uptime = neighbors[key]["address_family"][""]["up_down"]
rprint(f"{task.host} neighbor {key} uptime value is {uptime}")
#above function is going to create an object called pull_structured_data
#it is then going to csend the command (in this case show ip bgp summary) to the hosts
#it is then going to put the output into structured data format and look for up_down value
# of each neighbor and then then print the data to screen
results = nr.run(task=pull_structured_data)