Git Product home page Git Product logo

cisco-mapper's Introduction

cisco-mapper

Draw the scheme of your cisco network, all you need is telnet access and cdp enabled.

IMPORTANT: Before running this, please make sure that CDP is disabled on all untrusted ports. If someone pretends as a CDP neighbor, he/she can steal all your passwords! Use this approach at your own risk!

First of all, please, install "ciscotelnet" module:

pip install git+https://github.com/sergeyzelyukin/cisco-telnet.git

Now you can use this module.

Calling the:

browse_cisco_network(start_ip, dictionary1, [], auth_tokens)

function, you will finally have a dictionary like:

dictionary1["CAT111222"]["hostname"]	= "R1"
dictionary1["CAT111222"]["ip"]		= "192.168.10.99"
dictionary1["CAT111222"]["depths"]	= "3"
dictionary1["CAT111222"]["children"]	= ["CHK333555", "FD0777888"]
...
dictionary1["CHK333555"]["hostname"]	= "C5"
...
dictionary1["FD0777888"]["hostname"]	= "R99"
...

Just calling the:

for board_id in dictionary1.keys():
	print dictionary1[board_id]["hostname"]
	print dictionary1[board_id]["ip"]

you will have all cisco devices in you network.

You can save this dictionary to yaml or json file and next time preload it, instead of new browsing.

Having this dictionary, you can call:

print_cisco_network(dictionary1) 

and draw scheme like this:

C9 (10.10.9.254)
        C6 (10.20.0.6)
        C8 (10.20.0.8)
                C21 (10.200.1.21)
                R1 (10.12.3.61)
                R2 (192.168.5.1)
        C10 (10.12.3.153)
                R10 (10.17.0.166)
                R30 (10.18.2.193)
                C11 (10.0.49.11)
                        R12 (10.17.40.221)
                C13 (10.20.45.13)
                        R9 (10.12.5.37)

If you want to look at the network from other point of view, you can recompile the hierarchy and print it again:

change_root(dictionary1, "CAT01234567")
print_cisco_network(dictionary1, show_ip=False) 

You should specify the board_id value of new root device to uniquely identify it. The board_id can be found directly in the dictionary (it is a key) or can be printed with:

print_cisco_network(dictionary1, show_board_id=True)

By default "browse_cisco_network()" function uses "depths first" algorithm, it is useful for drawing instant (while crawling) schemes, but it can lead to wrong schemes in ring topologies.
There is also "breadth first" algorithm, which creates schemes much closer to reality, but it cannot draw hierarchy during the network crawling.
Both methods could be called directly:

browse_cisco_network_depth1st(start_ip, dictionary1, [], auth_tokens) # "depth first" algorithm
# or
browse_cisco_network_breadth1st(start_ip, dictionary1, [], auth_tokens) # "breadth first" algorithm

Full params list:

browse_cisco_network(start_ip, devices_map, skip_neighbors, auth_tokens, max_deep, verbose, call_for_every_device)

Please find examples in sample.py.

cisco-mapper's People

Contributors

sergeyzelyukin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.