We introduced https://www.ansible.com/blog/network-features-coming-soon-in-ansible-engine-2.9, which provided a path for users to ease network management, especially across multiple different product vendors. They contain Ansible plugins, roles and playbooks that you can use as an automation job through Red Hat Ansible Automation Platform.

The `gather` action enables users to be able to gather and display the facts for specified network resources.

├── ansible.cfg ├── bindep.txt ├── changelogs │ ├── changelog.yaml │ ├── config.yaml │ └── fragments ├── cspell.config.yaml ├── galaxy.yml ├── inventory │ ├── host_vars │ │ └── 35.155.113.92 │ │ ├── interfaces.yaml │ │ ├── l2_interfaces.yaml │ │ ├── l3_interfaces.yaml │ │ └── ospf_interfaces.yaml │ └── inventory.yaml

These actions are fundamental to the other network Ansible validated content like Network BGP and Network OSPF, which will be covered in upcoming blogs.

Related Articles