New in version 2.4.
parameter | required | default | choices | comments |
---|---|---|---|---|
interface | yes | For the interface parameter, you can enter all to display information about all interface, an interface type such as 40GE to display information about interfaces of the specified type, or full name of an interface such as 40GE1/0/22 or vlanif10 to display information about the specific interface. |
- name: Link status test hosts: cloudengine connection: local gather_facts: no vars: cli: host: "{{ inventory_hostname }}" port: "{{ ansible_ssh_port }}" username: "{{ username }}" password: "{{ password }}" transport: cli tasks: - name: Get specified interface link status information ce_link_status: interface: 40GE1/0/1 provider: "{{ cli }}" - name: Get specified interface type link status information ce_link_status: interface: 40GE provider: "{{ cli }}" - name: Get all interface link status information ce_link_status: interface: all provider: "{{ cli }}"
Common return values are documented here Return Values, the following are the fields unique to this module:
name | description | returned | type | sample |
---|---|---|---|---|
result | Interface link status information | always | dict | {'40ge2/0/8': {'Outbound drop(pkts)': '0', 'Inbound rate(pkts/sec)': '0', 'Outbound error(pkts)': '0', 'Outbound broadcast(pkts)': '1', 'Outbound multicast(pkts)': '20152', 'Outbound rate(byte/sec)': '11', 'Inbound multicast(pkts)': '20151', 'Current IPv4 state': 'down', 'Inbound error(pkts)': '0', 'Outbound octets(bytes)': '7235021', 'Current IPv6 state': 'down', 'Inbound unicast(pkts)': '0', 'Current physical state': 'up', 'Inbound broadcast(pkts)': '0', 'Current link state': 'up', 'Outbound rate(pkts/sec)': '0', 'Inbound octets(bytes)': '7314813', 'Outbound unicast(pkts)': '0', 'Inbound drop(pkts)': '0', 'Speed': '40GE', 'Inbound rate(byte/sec)': '11'}} |
Note
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Testing Ansible and Developing Modules.
© 2012–2017 Michael DeHaan
© 2017 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/ce_link_status_module.html