Python Network Automation | Netmiko!

preview_player
Показать описание
In this video, we explore the use of Python and Netmiko to Automate an OSPF network deployment!
If you find these videos useful, please consider liking, subscribing and sharing to support the channel. Thank you!
Timestamp, script is run at 14:10
Рекомендации по теме
Комментарии
Автор

Links to my new Network Automation training at CBT Nuggets:

UNDERSTAND THE NORNIR AUTOMATION FRAMEWORK


AUTOMATE NETWORK CONFIGURATIONS WITH NORNIR


UNDERSTAND AUTOMATION SECURITY

IPvZero
Автор

Just want to say thanks, this help me understand python on a network level. Keep up the great work

fred-
Автор

Cool as always! Any chance for ci/cd pipelines with gitlab or Jenkins? I know it's next level but maybe you had chance to work with it. I'm trying to figure it out and would be awesome to get step by step tutorial from you! I was mentioning Hanks Preston demos under your other material and ci/cd is that what he used for auto confg deployment.

linkflap
Автор

plz sir make more vedio for network automation
thanks

shuaibakhtar
Автор

Thanks, could you please explain how to convert the following config to netmiko format, i need to ssh to multiple devices in a network subnet and push a config to multiple hosts
for n in range (72, 77):
print "Telnet to host" + str(n)
HOST = "192.168.122." + str(n)
tn = telnetlib.Telnet(HOST)

tn.read_until("Username: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")

djaywadhwa