Note
This plugin is part of the dellemc.os10 collection.
To install it use: ansible-galaxy collection install dellemc.os10
.
To use it in a playbook, specify: dellemc.os10.mtu_validate
.
Parameter | Choices/Defaults | Comments |
---|---|---|
show_ip_intf_brief list / elements=string / required | show ip intf brief | |
show_lldp_neighbors_list list / elements=string / required | show lldp neighbor output | |
show_system_network_summary list / elements=string / required | show system network summary output |
Copy below YAML into a playbook (e.g. play.yml) and run follows: #$ ansible-playbook -i inv play.yml name: show mtu mismatch info hosts: localhost connection: local gather_facts: False tasks: - name: "Get Dell EMC OS10 MTU mismatch info" os10_command: commands: - command: "show lldp neighbors" - command: "show ip interface brief | display-xml" provider: "{{ hostvars[item].cli }}" with_items: "{{ groups['all'] }}" register: show_lldp - set_fact: output: "{{ output|default([])+ [{'host': item.invocation.module_args.provider.host, 'inv_name': item.item, 'stdout_show_lldp': item.stdout.0, 'stdout_show_ip': item.stdout.1 }] }}" loop: "{{ show_lldp.results }}" - debug: var=output - local_action: copy content={{ output }} dest=show1 - name: call lib to convert ip interface info from xml to dict format base_xml_to_dict: cli_responses: "{{ item.stdout_show_ip }}" with_items: "{{ output }}" register: show_ip_intf_list - local_action: copy content={{ show_ip_intf_list }} dest=show_ip - name: "Get Dell EMC OS10 Show system" import_role: name: os10_fabric_summary register: show_system_network_summary - debug: var=show_system_network_summary - name: call lib to process mtu_validate: show_lldp_neighbors_list: "{{ output }}" show_system_network_summary: "{{ show_system_network_summary.msg.results }}" show_ip_intf_brief: "{{ show_ip_intf_list.results }}"
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/dellemc/os10/mtu_validate_module.html