Simple, fully programmable, shell-based network automation utility
Project description
Autoshell
A simple, fully programmable, shell-based network automation utility
Quick Install: pip install autoshell
Get started fast with the Autoshell Tutorial
VERSION
The version of Autoshell documented here is: 0.0.19
TABLE OF CONTENTS
WHAT IS AUTOSHELL
Autoshell is a Command-Line Utility and Python Library built to make quick automation tasks of a network easy.
Autoshell is a "shell" application in that it handles a part of the automation process, mainly parsing user arguments and connecting to hosts. It then depends on bundled and/or user-written modules to perform desired tasks on the connected hosts. Since Autoshell does the heavy lifting (connecting to devices, importing modules, sorting through credentials, providing module libraries, etc) it allows the modules to be very short and simple while making their effects quite powerful.
INSTALLATION
The installation process is also covered in the Autoshell Tutorial
Autoshell Binaries (Easiest)
You can download and use the Autoshell binaries if you do not want to install the Python interpreter. This is the quickest way to start using Autoshell, but since more advanced usage of Autoshell requires you to write your own modules using Python, it is recommended that you follow the below process to install Python and PIP on your operating system, then use PIP to install Autoshell.
Prepare Your OS
Windows
- If you have not yet installed Python on your Windows OS, then download and install the latest Python2 or Python3 from Python Downloads Page
- Make sure to check the box during installation which adds Python to PATH. Labeled something like
Add Python 3.7 to PATH
- Make sure to check the box during installation which adds Python to PATH. Labeled something like
- Once Python is installed, you should be able to open a command window, type
python
, hit ENTER, and see a Python prompt opened. Typequit()
to exit it. You should also be able to run the commandpip
and see its options. If both of these work, then move on to install Autoshell.- If this does not work, you will need to add the Python installation directory path to the Windows PATH variable
- The easiest way to do this is to find the new shortcut for Python in your start menu, right-click on the shortcut, and find the folder path for the
python.exe
file- For Python2, this will likely be something like
C:\Python27
- For Python3, this will likely be something like
C:\Users\<USERNAME>\AppData\Local\Programs\Python\Python37
- For Python2, this will likely be something like
- Open your Advanced System Settings window, navigate to the "Advanced" tab, and click the "Environment Variables" button
- Create a new system variable:
- Variable name:
PYTHON_HOME
- Variable value: <your_python_installation_directory>
- Variable name:
- Now modify the PATH system variable by appending the text
;%PYTHON_HOME%\;%PYTHON_HOME%;%PYTHON_HOME%\Scripts\
to the end of it. - Close out your windows, open a command window and make sure you can run the commands
python
andpip
- The easiest way to do this is to find the new shortcut for Python in your start menu, right-click on the shortcut, and find the folder path for the
- If this does not work, you will need to add the Python installation directory path to the Windows PATH variable
MacOS
MacOS often comes with a native version of Python, but we likely want to upgrade that and install PIP. The best way to do this is with a MacOS Linux-like package manager called Homebrew. You can visit the below pages to walk you through installing Homebrew and an updated Python interpreter along with it
- Open Terminal and run:
xcode-select --install
. This will open a window. Click 'Get Xcode' and install it from the app store. - Install Homebrew. Run:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install latest Python2:
brew install python@2
- Install latest Python3:
brew install python
- Link your default Python path to the new install
brew link --overwrite python
- Close Terminal and reopen it. You should see Python 2.7.15 when you run
python -V
- Once Python is installed, you should be able to open Terminal, type
python
, hit ENTER, and see a Python prompt opened. Typequit()
to exit it. You should also be able to run the commandpip
and see its options. If both of these work, then move on to Install Autoshell- Additional resources on Installing Python 2 on Mac OS X
- Additional resources on Installing Python 3 on Mac OS X
Linux
- Install required OS packages
- Raspberry Pi may need Python and PIP
sudo apt install -y python-pip
as well assudo apt-get install libffi-dev
- Debian (Ubuntu) distributions may need Python and PIP
- Install Python and PIP:
sudo apt install -y python-pip
- Install Python and PIP:
- RHEL (CentOS) distributions usually need PIP
- Install the EPEL package:
sudo yum install -y epel-release
- Install PIP:
sudo yum install -y python-pip
- Install the EPEL package:
- Raspberry Pi may need Python and PIP
Install Autoshell using PIP (Recommended)
- Install Autoshell using pip by running the command
pip install autoshell
- Once the install completes, you should be able to run the command
autoshell -h
and see the help menu. Autoshell is now ready to use.
Install Autoshell from source (Advanced)
- Retrieve the source code repository using one of the two below methods
- Method #1: Install a Git client (process differs depending on OS) and clone the Autoshell repository using Git
git clone https://github.com/packetsar/autoshell.git
- Change to the branch you want to install using
git checkout <branch_name>
- Change to the branch you want to install using
- Method #2: Download and extract the repository files from the Github Repo
- Make sure to download the branch you want to install
- Method #1: Install a Git client (process differs depending on OS) and clone the Autoshell repository using Git
- Move into the autoshell project directory
cd autoshell
- Run the setup.py file to build the package into the ./build/ directory
python setup.py build
- Use PIP to install the package
pip install .
- Once the install completes, you should be able to run the command
autoshell -h
and see the help menu. Autoshell is now ready to use.
GETTING STARTED
Below are some nuts and bolts to help you understand how to use Autoshell. If you want a quick 'how-to', then check out the Autoshell Tutorial.
Once you have installed Autoshell, you can see the command guide with autoshell -h
.
Since modules are able to add their own arguments into the argument parser when they are imported, you can see a module's help by importing it (ie: -m crawl
) and then adding the -h
argument. You can see this by trying autoshell -m crawl -h
, there you will see a section of argument descriptions for the Crawl module.
The simplest way to connect to a host is to point Autoshell directly at it (autoshell 192.168.1.1
). If you do not provide credentials, it will prompt you for them. It is easy to add them inline with -c username:password
. You are able to add as many hosts and credentials as you want and they are processed in the order you provide them.
Credentials
Credentials can be provided to Autoshell in a few different ways:
- At the command line as a string. The default full format for credentials is
-c <username>:<password>:<secret>@<device_type>
. This default format has optional values included. A credential string can have just one value (ie:-c admin
) and Autoshell will use thatadmin
value for the username, password, and secret; it will leave the device_type blank unless provided. You can instead provide-c admin:password
and Autoshell will use the provided password for both the password and secret values. More examples are provided in the command help guide at the command line. - As a structured JSON or YAML file. You can use the examples/example_structured_credentials_file.json and examples/example_structured_credentials_file.yml files as examples, then reference them from the command-line like
-c example_structured_credentials_file.json
. You can reference as many credential files as you want. - As an unstructured file. See examples/example_unstructured_credentials.txt for an example. In the unstructured format, each line in the file will contain a credential string in the standard command-line format. You can then reference the file from the command-line like
-c example_unstructured_credentials.txt
. You can reference as many credential files as you want.
Addresses
Addresses are provided to Autoshell at the command-line using positional arguments (without a prepended -x
or --xxxx
tag). You are able to provide as many addresses as you want here and they will processed in the order you give them. Below are some examples of how you can provide addresses.
- As a simple string at the command-line. Addresses use the format of
<address>@<device_type>
where the device_type value is optional. A simple example is just using the IP address or dns-name like192.168.1.1
or with a device_type like192.168.1.1@cisco_ios
. - As a structured JSON or YAML file. You can use the examples/example_structured_addresses_file.json and examples/example_structured_addresses_file.yml files as examples, then reference them from the command-line like
example_structured_addresses_file.json
. You can reference as many address files as you want. - As an unstructured file. See examples/example_unstructured_addresses_file.txt for an example. In the unstructured format, each line in the file will contain an address string in the standard command-line format. You can then reference the file from the command-line like
example_unstructured_addresses_file.txt
. You can reference as many address files as you want.
Using Config Files
Since you may often need to define many command-line arguments, it is often easier to provide command-line arguments using a config file. You can use a structured JSON or YAML config file (examples can be found at examples/example_config_file.json and examples/example_config_file.yml) to define your arguments and reference the config file using -f
or --config_file
at the command-line (like -f example_config_file.json
). The example config files can also be found in the examples project folder.
You can define known or unknown arguments in the config file and both will be passed into the program and into any modules you import. You can also define multiple config files which will either overwrite or append to each others settings (depending on if the argument can have multiple values).
Arguments can still be defined at the command-line even when using config files. If the argument is a single value (like the debugging level) then the command-line value will overwrite any config file values. If the argument allows multiple entries (like credentials) then the command-line values will prepend any config-file values.
TIP: If you want to take your working autoshell command and convert the inline options to a config file, you can run your command with level 4 (
-dddd
) or level 5 (-ddddd
) debugging enabled and look for the###### INPUT ARGUMENTS #######
section. You can copy that JSON data into a file and use that file as your config file. Remember to readjust your debugging level in the config file as it will show as 4 or 5.
MODULES
The power and flexibility of Autoshell is realized by the use of modules. Modules are python files or libraries which are used to manipulate the hosts connected to by Autoshell. Autoshell includes some modules bundled in the installation. These bundled modules can be found in the modules folder at path autoshell/modules/
. Modules can also be user-written using Python to do whatever the user wants. Modules can be imported in two different ways:
- Using a command-line argument like
-m neighbors
. - Using a config-file. See the Using Config Files section for more info.
Modules may [optionally] introduce their own arguments into the argument parser when they are imported. These module-specific arguments are recognized by the argparser and will have a help-menu displayed when using the -h
argument. You can see an example of this by issuing autoshell -m crawl -h
.
Bundled Modules
Bundled modules are included in the default installation of Autoshell and can be imported for use immediately after installation. The bundled module files can be found in the modules folder at path autoshell/modules/
. You can use these bundled modules as a reference when writing your own module as they too must adhere to the Autoshell module API.
User-Written Modules
If you are not able to accomplish the automation tasks you want using the bundled modules (which is common), then you can write your own module to accomplish your task. Autoshell makes this quite easy since much of the difficult work will have been done by the time the code in your module is called. User-written modules can be imported using its file path (ie: -m mymods/mymodule.py
) or you can reference the file name in a config-file.
Autoshell Module API
Autoshell will attempt to call any imported module at three (3) points during execution.
-
add_parser_options(parser)
: The first call against your module will be done against youradd_parser_options
function. This is an optional call and will only be done if theadd_parser_options
function exists in your code. This call will hand program control over to your module and allow you to populate custom arguments into the Autoshell argument parser. This call is made before the arguments are parsed and before we connect to hosts. -
load(ball)
: The second call against your module will be done against yourload
function. This is an optional call and will only be done if theload
function exists in your code. This call will hand program control over to your module to allow you to perform input checks on user-provided arguments before Autoshell starts connecting to hosts. Theload
call exists to permit your module to perform input checks and throw warnings/errors early on in the program instead of waiting until all hosts have been connected and all other modules have run. You can also use theload
function to do some pre-processing of user inputs and store them in a namespace object to be used later when the module is run. -
run(ball)
: The third and final call against your module will be done against yourrun
function. This is a required call and your module must include arun
function in order to operate. Therun
function is called after all hosts have been processed/connected and after all previously imported modules (since modules are processed in the order in which they are referenced from the CLI) have completed. Therun
function is where you want to perform your custom tasks on connected hosts.- Threading: Autoshell includes a queueing/threading library called
autoqueue
which can be very useful when wanting to perform your custom tasks on many hosts in parallel. Autoqueue can be imported and used in your module by importing the autoshell library (import autoshell
) and instantiating an autoqueue object (autoshell.common.autoqueue.autoqueue(<arguments>)
). You can reference the example modules for examples on how to use autoqueue.
- Threading: Autoshell includes a queueing/threading library called
Once the module's run
function returns control of the main thread back to the Autoshell program, Autoshell will call the run
function of the next module if there is a module in order after this one. Once all modules complete and the last module returns control, Autoshell will perform a final processing of all active hosts by gracefully disconnecting from them and quitting the program.
The Autoqueue Library
Autoqueue is an Autoshell library which makes threading and queueing much easier than using the threading and queue libraries separately. Autoqueue also provides functions for blocking the main thread until the queue is empty and the threads are idle.
To use Autoqueue in a module. You can import autoshell as a library (import autoshell
) and referece autoqueue at queue = autoshell.common.autoqueue.autoqueue(thread_count, worker_func, worker_args)
.
Autoqueue Arguments
- thread_count: A integer defining how many worker threads you want to use. All threads are supervised and managed by Autoqueue and you don't need to worry about dealing with them.
- worker_func: The worker function which will be run inside each thread. Since each thread is monitored and maintained by autoqueue's supervisor, any returned object will be discarded. If you need to return any object/data out of your worker function, you will have pass in and write them to a namespace object or something similar.
- worker_args: A tuple containing any arguments you want to have passed into your worker function by the thread supervisor in addition to the default arguments which get passed in (
parent_object
andqueue_item
)
Once the queue has been instantiated, it will begin waiting for items to be put into the queue. When items begin being .put(item)
into the queue, the thread supervisors will begin calling the worker functions, passing the queue items into them.
EXAMPLE FILES
Below are some example files you can use for reference. You can find these files in the examples project folder.
examples/example_structured_credentials_file.json
[
{
"username": "file_admin1",
"password": "file_password1"
},
{
"username": "file_admin2",
"password": "file_password2"
}
]
examples/example_structured_credentials_file.yml
- username: file_admin3
password: file_password3
- username: file_admin4
password: file_password4
examples/example_unstructured_credentials.txt
unst_admin1:unst_password1
unst_admin2:unst_password2@cisco_ios
examples/example_structured_addresses_file.json
[
{
"address": "192.168.1.1",
"type": "cisco_ios"
},
{
"address": "192.168.1.2"
}
]
examples/example_structured_addresses_file.yml
- address: 192.168.1.1
type: cisco_ios
- address: 192.168.1.2
examples/example_unstructured_addresses_file.txt
192.168.1.10
192.168.1.11@cisco_ios
examples/example_config_file.json
{
"modules": [
"neighbors",
"cli"
],
"debug": 5,
"addresses": [
"192.168.1.1",
"192.168.1.2"
],
"credentials": [
"cfg_file_admin1:cfg_file_password1",
"cfg_file_admin2:cfg_file_password2@cisco_ios",
"examples/example_structured_credentials_file.json"
],
"dump_hostinfo": false,
"logfiles": [
"autoshell_log1.log",
"autoshell_log2.log"
]
}
examples/example_config_file.yml
modules:
- neighbors
- cli
debug: 5
addresses:
- 192.168.1.1
- 192.168.1.2
credentials:
- admin1:password1
- admin2:password2@cisco_ios
- examples/example_structured_credentials_file.json
dump_hostinfo: false
logfiles:
- autoshell_log1.log
- autoshell_log2.log
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
Built Distributions
File details
Details for the file autoshell-0.0.19.tar.gz
.
File metadata
- Download URL: autoshell-0.0.19.tar.gz
- Upload date:
- Size: 47.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8920c3ff8564fac38831810e6130afadd4d51ca242836c0f0e22ea198508c7db |
|
MD5 | 58bf0c2c9fdee3c718d3efe0b3f53eb8 |
|
BLAKE2b-256 | 067e99ac706f73907a888e723ba04b8d0a2c4c5fa71b3f82e0181f516a9a0942 |
File details
Details for the file autoshell-0.0.19-py3-none-any.whl
.
File metadata
- Download URL: autoshell-0.0.19-py3-none-any.whl
- Upload date:
- Size: 52.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18176fa035f6909abce0f4cb953bf10a2933e07803c27df068d7dd6da7f32485 |
|
MD5 | 5e0375ceb493199bd86124c1bd1f99a3 |
|
BLAKE2b-256 | 1d8e7a56f9e522559785593b56a15e14c44e74e4de7b194ce8e26931ee5ed272 |
File details
Details for the file autoshell-0.0.19-py2-none-any.whl
.
File metadata
- Download URL: autoshell-0.0.19-py2-none-any.whl
- Upload date:
- Size: 64.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 404c977603ce1ca831045359c67f4ae3ab48838db4683a992327fab2cef79cec |
|
MD5 | 13ab8cc810eac668d97ac014dee5e2cf |
|
BLAKE2b-256 | e9a33da051458882f9d9db9a8fc95a37ccb1f36ddda8e49cb9a0a58b87ab5a99 |