community.network.eric_eccli_command – Run commands on remote devices running ERICSSON ECCLI¶
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.eric_eccli_command
.
Synopsis¶
Sends arbitrary commands to an ERICSSON eccli node and returns the results read from the device. This module includes an argument that will cause the module to wait for a specific condition before returning or timing out if the condition is not met.
This module also support running commands in configuration mode in raw command style.
Parameters¶
Notes¶
Note
Tested against IPOS 19.3
For more information on using Ansible to manage network devices see the Ansible Network Guide
For more information on using Ansible to manage Ericsson devices see the Ericsson documents.
Starting with Ansible 2.5 we recommend using
connection: network_cli
.For more information please see the ERIC_ECCLI Platform Options guide.
Examples¶
tasks:
- name: Run show version on remote devices
community.network.eric_eccli_command:
commands: show version
- name: Run show version and check to see if output contains IPOS
community.network.eric_eccli_command:
commands: show version
wait_for: result[0] contains IPOS
- name: Run multiple commands on remote nodes
community.network.eric_eccli_command:
commands:
- show version
- show running-config interfaces
- name: Run multiple commands and evaluate the output
community.network.eric_eccli_command:
commands:
- show version
- show running-config interfaces
wait_for:
- result[0] contains IPOS
- result[1] contains management
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Ericsson IPOS OAM team (@itercheng)