-
Notifications
You must be signed in to change notification settings - Fork 1
/
nornir-sendconfig2.py
25 lines (22 loc) · 1.11 KB
/
nornir-sendconfig2.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
#python script using norni_scrapli plugin to send single configuration
#change to hosts
import getpass
from nornir import InitNornir
from nornir_scrapli.tasks import send_config
from nornir_utils.plugins.functions import print_result
#importing send_config from nornir_scrapli to send a configuration change
nr = InitNornir(config_file="config.yaml")
#The above line is telling nornir where the config file is located
nr = InitNornir(config_file="config.yaml")
#The above line is telling nornir where the config file is located
user = input("Enter your username: ")
password = getpass.getpass(prompt="Enter your password: ")
nr.inventory.defaults.username = user
nr.inventory.defaults.password = password
#The above lines will prompt the user to enter their username and password and use that input to connect to the devices.
def send_config_test(task):
task.run(task=send_config, config="ntp server 10.10.10.150")
#above function is going to use the send_config to send a configuration command
results = nr.run(task=send_config_test)
#above line is setting an object results that is aligned to the task output
print_result(results)