frr.frr.frr_facts module – Collect facts from remote devices running Free Range Routing (FRR).
Note
This module is part of the frr.frr collection (version 2.0.2).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install frr.frr
.
To use it in a playbook, specify: frr.frr.frr_facts
.
Note
The frr.frr collection has been deprecated and will be removed from Ansible 11. See the discussion thread for more information.
New in frr.frr 1.0.0
Synopsis
Collects a base set of device facts from a remote device that is running FRR. This module prepends all of the base network fact keys with
ansible_net_<fact>
. The facts module will always collect a base set of facts from the device and can enable or disable collection of additional facts.
Aliases: facts
Parameters
Parameter |
Comments |
---|---|
When supplied, this argument restricts the facts collected to a given subset. Possible values for this argument include Specify a list of values to include a larger subset. Use a value with an initial Default: |
Notes
Note
Tested against FRR 6.0.
Examples
- name: Collect all facts from the device
frr.frr.frr_facts:
gather_subset: all
- name: Collect only the config and default facts
frr.frr.frr_facts:
gather_subset:
- config
- name: Collect the config and hardware facts
frr.frr.frr_facts:
gather_subset:
- config
- hardware
- name: Do not collect hardware facts
frr.frr.frr_facts:
gather_subset:
- '!hardware'
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
All IPv4 addresses configured on the device Returned: when interfaces is configured |
|
All IPv6 addresses configured on the device Returned: when interfaces is configured |
|
The name of the transport Returned: always |
|
The current active config from the device Returned: when config is configured |
|
The list of fact subsets collected from the device Returned: always |
|
The configured hostname of the device Returned: always |
|
A hash of all interfaces running on the system Returned: when interfaces is configured |
|
The memory statistics fetched from the device Returned: when hardware is configured |
|
The list of MPLS LDP neighbors from the remote device Returned: when interfaces is configured and LDP daemon is running on the device |
|
The Python version that the Ansible controller is using Returned: always |
|
The FRR version running on the remote device Returned: always |