Scrapli

Scrapli and Flask – Part 7: Multicast Dashboard

I have added a multicast page to the web app that demonstrates the ability to pull in details for multicast. I originally planned to use this with the Nexus multicast lab, however as TextFSM or Genie do not support the parsing of the command “show ip mroute”. Side note Genie does support the command “show […]

Scrapli and Flask – Part 7: Multicast Dashboard Read More »

Scrapli and Flask – Part 5: Additional Device Details

In version2, I have made several changes to continue with this project Added device details page for each device Refresh database button for upto date device details Refresh button for each device Notification if the last refresh of device data is greater than 200 seconds Also added is a device base template cofig generator. More

Scrapli and Flask – Part 5: Additional Device Details Read More »

Scrapli Asyncio and Paramiko

Scrapli can use Asyncio instead of multi processing or multi threading. Briefly Asyncio is the ability of the script to continue running while waiting for some input/output. The reason you would prefer this over muti threading or processing is becasue Asyncio uses a single thread only reducing any resource issues. Async is not parrallelism like

Scrapli Asyncio and Paramiko Read More »