A SSH library for Nokia 1830-PSS NEs
Project description
A ssh library for CLI/root shell on Nokia 1830-PSS Network Elements
Install
pip install nokia1830pss
Usage
CLI interaction
from pss1830ssh.pss1830cli import PSS1830Cli
cli = PSS1830Cli('10.0.0.1', 22, 'admin', 'admin')
cli.open()
cli.execute('show version')
cli.execute('show card inv *')
cli.close()
Root interaction
from pss1830ssh.pss1830root import PSS1830Root
# Execute command on the master shelf, active EC
root = PSS1830Root('10.0.0.1', 22, 'root', 'root')
root.open()
root.execute('ps -ef')
# Execute command on standby EC of the master shelf
root.login_to_stdby()
root.execute('ps -ef')
root.logout_from_stdby()
# Execute command on the active EC of a shelf without knowing which one
root.login_to_shelf(shelf=2)
root.execute('ps -ef')
root.logout_from_shelf()
# Execute command on the active EC of a shelf assuming the active EC is EC 2/1
root.login_to_shelf(shelf=2, ec=1)
root.execute('ps -ef')
root.logout_from_shelf()
# Execute command on a specific EC of a shelf
root.login_to_shelf(shelf=3, ec=18, act=False)
root.execute('ps -ef')
root.logout_from_shelf()
# Execute command on a slot
root.login_to_slot(shelf=1, slot=3)
root.execute('ps -ef')
root.logout_from_slot()
root.close()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nokia1830pss-1.0.3.tar.gz
(4.6 kB
view details)
Built Distribution
File details
Details for the file nokia1830pss-1.0.3.tar.gz
.
File metadata
- Download URL: nokia1830pss-1.0.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.15+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22e16a67f544477e2f5479bdcc9236a4a3efddae56494f25f13687e9c7763799 |
|
MD5 | a71942fa585ab241c875013c9a5753e7 |
|
BLAKE2b-256 | 7d3bfea282267ff28c54a96c1d42b45fd3ca38957661702509815b202e3b8003 |
File details
Details for the file nokia1830pss-1.0.3-py2-none-any.whl
.
File metadata
- Download URL: nokia1830pss-1.0.3-py2-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.15+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88e1e166b3bca1c4bbb396c3738ac35bf4afc21dd32481f74bb1c08136f01e45 |
|
MD5 | d8d20181b0c6dd69c86ead2fd6594b5e |
|
BLAKE2b-256 | f0adf86b63a4c62087e02462aaf4e5c52262a743854e22a88c5469eb91cde239 |