The Network Operator's Toolkit for Command-line Hacking
Project description
Notch brings a programmatic interface to all your network equipment like switches, routers and firewalls. Its Agent manages the command-line interfaces of network equipment in your network so that you can write powerful network management applications using the included Python library or from other languages by using the JSON-RPC interface.
For example, to get the version information from every cisco-ish device on your network (via a Notch Agent running at localhost:8080):
#!/usr/bin/env python import notch.client def callback(request): """Called by the Notch Client when a request is complete.""" if request.error: print 'Exception: ', str.error.__class__.__name__ print str(request.error) else: print request.result nc = notch.client.Connection('localhost:8080') # Gets a list of devices from the Notch Agent. try: all_devices = nc.devices_matching('^.*$') except notch.client.Error: print 'Error querying for devices.' all_devices = [] # Send the command to each device, asynchronously receiving results. for device in all_devices: nc.command(device, 'show version', callback=callback) # Wait for all outstanding requests to complete. nc.wait_all()
Installation
Use pip to install both the Notch Agent or Client library.
You’ll need both packages to start with, but in larger installations, only machines acting as Agents require the notch.agent package.
$ pip install notch.agent $ pip install notch.client
This will install all but one dependency, which can be then installed using:
$ pip install -e git+https://github.com/joshmarshall/tornadorpc.git@fda3e0e4#egg=tornadorpc-dev
You can also use easy_install, but we don’t recommend that. If you don’t have pip, install it with easy_install first.
Configuration
The Notch Agent requires some configuration to get started, and things are easiest if you already use the RANCID system, as the Notch Agent will read its router.db configuration file to populate its inventory.
Then, you can start a Notch Agent using the built-in testing server:
$ notch-agent --config=/path/to/your/notch.yaml
The built-in testing server does not support parallel operation, so you must use a WSGI compatible server for production operation. Apache2 with mod_wsgi is used for many installations and an example configuration can be found in config/notch-mod_wsgi.sample.conf. The WSGI application object itself is defined in wsgi/notch.wsgi.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file notch.agent-0.5.tar.gz
.
File metadata
- Download URL: notch.agent-0.5.tar.gz
- Upload date:
- Size: 34.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 121de34585feb62ec069588526c37ff85b2c5ec7a1872e9356fb56120f173145 |
|
MD5 | e6b3bd7deb70ececb2be969fd703f542 |
|
BLAKE2b-256 | 62a89453babfe63ff089987acbf7873f771bd0e0167c98b8a4e3457c1f43dbc7 |