Python interface to Ericsson's amos/moshell programs
Project description
AMOSHELL
Python convenience class to interface with Ericsson’s amos/moshell commands.
Install
pip install amoshell
Synopsis
import amoshell mo = amoshell.Amos() rval, out, err = mo.moshell('RBS003', 'lt all; alt') if rval: print err else: print out
API
- Amos(kwargs)
bin_path: keyword-arg to set a non-standard path where the moshell binaries may be installed (optional).
parallel: keyword-arg to set max number of parallel sessions that mobatch may run (defaults to 10).
Amos.moshell(name, command, kwargs)
Run a moshell command on a node.
name: recognized node name or node ip address.
command: command string. multiple commands are delimited with semicolon.
kwargs: any valid options that are normally set with the ‘-v’ on the moshell command line can be entered here. See Ericsson AMOS user guide for more.
- Return value is a tuple, containing:
exit code: 0 = ok, non-zero = a failure.
stdout text:
stderr text:
Amos.mobatch(nodes, command, kwargs)
Run mobatch commands against many nodes simultaneously.
nodes: a list of node names (or ip addresses), or a string pointing to an existing sitefile.
command: command string, or a string identifying the path to an existing moshell command file.
kwargs: any valid options that are normally set with the ‘-v’ on the moshell command line can be entered here. See Ericsson AMOS user guide for more.
- Return value is a list of tuples. Each 3 element tuple contains:
node name: node this tuple’s info relates to.
exit code: 0 = ok, non-zero = a failure.
path to log: path to the file containing the moshell results for this node.
Examples
import amoshell mo = amoshell.Amos() # moshell example rval, out, err = mo.moshell('RBS003', 'lt all; alt') # mobatch example results = mo.mobatch(['ERBS001', 'ERBS002'], 'lt all; get security', ip_database=/tmp/ipdb.dat, corba_class=5 ) for r in results: node, rval, logfile = r if not rval: print "node %s results found in log %s" % (node, logfile)
Known Issues
Node Passwords: Some commands in moshell require a password. This tool is not designed to have an interactive shell, and a password request will cause this to hang indefinitely.
To prevent this, you should use a custom ip_database file containing nodes and their passwords. The file is then referenced with the “ip_database” optional arg.
Amos.moshell(node, command, ip_database='/path/to/file')
See Ericsson documentation for more information about these ip_database files.
To Do
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 amoshell-0.1.tar.gz
.
File metadata
- Download URL: amoshell-0.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8067efcb149fee63a01e0270d95c02d86074540dab95444f1f59d4d4bc32ab0f |
|
MD5 | 3f83b17d894ca9e16531013eb97131cc |
|
BLAKE2b-256 | 2b3580cc89d9e4981baf24c4359f89f8243c7998e6644be822cbc56d881c1f2a |