diff options
author | Ujwal Komarla <ujwalkomarla@gmail.com> | 2019-03-27 09:44:04 -0400 |
---|---|---|
committer | Ricardo Carrillo Cruz <ricardo.carrillo.cruz@gmail.com> | 2019-03-27 14:44:04 +0100 |
commit | 9384773e1e472acd278d378b3fd6c8ebf5d91fae (patch) | |
tree | 23dc08a147a02c998333ac9739bf52308f616830 /docs | |
parent | b002f3e416ec96c6d0da09c670ace2d2d2a3a0fe (diff) | |
download | ansible-9384773e1e472acd278d378b3fd6c8ebf5d91fae.tar.gz |
Exos httpapi (#54405)
* Modify EXOS module utils to utilize 'httpapi' or 'network-cli' connection
* Changes to cliconf plugin to support 'json' or 'text' output for compatibility between network-cli and httpapi
* Add HTTPAPI plugin supportng JSONRPC and RESTCONF for EXOS
* exos_facts modify commands with run script cli2json.py to command dictionary specifying 'json' output
Load appropriate fixtures
* Update exos_config module to utilize the get_diff and get_default_flag functionality.
JSONRPC doesn't work well with pipes, regex MULTILINE
* Support for NOS agnostic 'cli_config' module by implementing 'get_default_flag' and 'get_diff' functionality
* Update Ansible Documentation regarding the connections available for EXOS
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/network/user_guide/platform_exos.rst | 83 | ||||
-rw-r--r-- | docs/docsite/rst/network/user_guide/platform_index.rst | 2 |
2 files changed, 59 insertions, 26 deletions
diff --git a/docs/docsite/rst/network/user_guide/platform_exos.rst b/docs/docsite/rst/network/user_guide/platform_exos.rst index 842bbcb6b4..9cc6e2916e 100644 --- a/docs/docsite/rst/network/user_guide/platform_exos.rst +++ b/docs/docsite/rst/network/user_guide/platform_exos.rst @@ -4,37 +4,37 @@ EXOS Platform Options *************************************** -Extreme EXOS Ansible modules only support CLI connections today. This page offers details on how to -use ``network_cli`` on EXOS in Ansible. +Extreme EXOS Ansible modules support multiple connections. This page offers details on how each connection works in Ansible and how to use it. .. contents:: Topics Connections Available ================================================================================ -+---------------------------+-----------------------------------------------+ -|.. | CLI | -+===========================+===============================================+ -| **Protocol** | SSH | -+---------------------------+-----------------------------------------------+ -| | **Credentials** | | uses SSH keys / SSH-agent if present | -| | | | accepts ``-u myuser -k`` if using password | -+---------------------------+-----------------------------------------------+ -| **Indirect Access** | via a bastion (jump host) | -+---------------------------+-----------------------------------------------+ -| | **Connection Settings** | | ``ansible_connection: network_cli`` | -| | | | | -| | | | | -| | | | | -| | | | | -+---------------------------+-----------------------------------------------+ -| | **Enable Mode** | | not supported by EXOS | -| | (Privilege Escalation) | | | -+---------------------------+-----------------------------------------------+ -| **Returned Data Format** | ``stdout[0].`` | -+---------------------------+-----------------------------------------------+ - -EXOS does not support ``ansible_connection: local``. You must use ``ansible_connection: network_cli``. ++---------------------------+-----------------------------------------------+-----------------------------------------+ +|.. | CLI | EXOS-API | ++===========================+===============================================+=========================================+ +| **Protocol** | SSH | HTTP(S) | ++---------------------------+-----------------------------------------------+-----------------------------------------+ +| | **Credentials** | | uses SSH keys / SSH-agent if present | | uses HTTPS certificates if present | +| | | | accepts ``-u myuser -k`` if using password | | | ++---------------------------+-----------------------------------------------+-----------------------------------------+ +| **Indirect Access** | via a bastion (jump host) | via a web proxy | ++---------------------------+-----------------------------------------------+-----------------------------------------+ +| | **Connection Settings** | | ``ansible_connection: network_cli`` | | ``ansible_connection: httpapi`` | +| | | | | | | +| | | | | | | +| | | | | | | +| | | | | | | ++---------------------------+-----------------------------------------------+-----------------------------------------+ +| | **Enable Mode** | | not supported by EXOS | | not supported by EXOS | +| | (Privilege Escalation) | | | | | +| | | | | | | ++---------------------------+-----------------------------------------------+-----------------------------------------+ +| **Returned Data Format** | ``stdout[0].`` | ``stdout[0].messages[0].`` | ++---------------------------+-----------------------------------------------+-----------------------------------------+ + +EXOS does not support ``ansible_connection: local``. You must use ``ansible_connection: network_cli`` or ``ansible_connection: httpapi`` Using CLI in Ansible ==================== @@ -65,4 +65,37 @@ Example CLI Task commands: show version when: ansible_network_os == 'exos' + + +Using EXOS-API in Ansible +========================= + +Example EXOS-API ``group_vars/exos.yml`` +---------------------------------------- + +.. code-block:: yaml + + ansible_connection: httpapi + ansible_network_os: exos + ansible_user: myuser + ansible_password: !vault... + proxy_env: + http_proxy: http://proxy.example.com:8080 + +- If you are accessing your host directly (not through a web proxy) you can remove the ``proxy_env`` configuration. +- If you are accessing your host through a web proxy using ``https``, change ``http_proxy`` to ``https_proxy``. + + +Example EXOS-API Task +--------------------- + +.. code-block:: yaml + + - name: Retrieve EXOS OS version + exos_command: + commands: show version + when: ansible_network_os == 'exos' + +In this example the ``proxy_env`` variable defined in ``group_vars`` gets passed to the ``environment`` option of the module used in the task. + .. include:: shared_snippets/SSH_warning.txt diff --git a/docs/docsite/rst/network/user_guide/platform_index.rst b/docs/docsite/rst/network/user_guide/platform_index.rst index 16df681906..300b8837c6 100644 --- a/docs/docsite/rst/network/user_guide/platform_index.rst +++ b/docs/docsite/rst/network/user_guide/platform_index.rst @@ -54,7 +54,7 @@ Settings by Platform +-------------------+-------------------------+-------------+---------+---------+----------+ | Dell OS10 | ``dellos10`` | ✓ | | | ✓ | +-------------------+-------------------------+-------------+---------+---------+----------+ -| Extreme EXOS | ``exos`` | ✓ | | | | +| Extreme EXOS | ``exos`` | ✓ | | ✓ | | +-------------------+-------------------------+-------------+---------+---------+----------+ | Extreme IronWare | ``ironware`` | ✓ | | | ✓ | +-------------------+-------------------------+-------------+---------+---------+----------+ |