Releases: Vadims06/topolograph
Releases · Vadims06/topolograph
v2.19 (20.06.2021)
- REST API (swagger) has been added in order to upload graphs.
The output returns:
- diff with previously uploaded graphs
- link to get all networks
- status about passed checks
import requests
from pprint import pprint as pp
with open('cisco_lsdb_output.txt') as f:
lsdb_output = f.read()
r_post = requests.post('https://topolograph.com/api/graph', auth=('[email protected]', 'your-pass'),
json={'lsdb_output': lsdb_output, 'vendor_device': 'Cisco'})
pp(r_post.json())
- added NAPALM Port variable #9
v2.18 (08.05.2021)
v2.17 (08.04.2021)
- Added device's groups from Netbox
- Import device's groups from CSV
- Improvement for RouterOS 6.44.6
- Added link to How-to on GeneralView, NetworkReactionOnFailure
v2.16 (11.03.2021)
v2.16 (11.03.2021)
Enhancements
- Added device's hostname resolve from Netbox
- Import device's hostnames from CSV
v2.15 (08.03.2021)
v2.15 (08.03.2021)
Enhancements
- Added Mikrotik and Huawei support
v2.14 01-02-2021
Enhancements
- Added Nokia support
v2.13 31-01-2021
Enhancements
- Analytics. Unidirected and Unsymmetric links
- Analytics. Unsymmetric paths
- Minor changes
- Version is added.
- Fixes with popup windows
- Loading bar and Loading Wheel in unsym paths.
v2.12 09-01-2021
Enhancements
- Added 2 buttons for changing scale of topology for working with Sparse/Dense networks. It allows squeezing Dense topologies as well as stretch Sparse ones. Additionally, it's possible to "freeze" nodes, allocate nodes as you wish, and checks connections more easily.