frr.frr.frr_facts – Collect facts from remote devices running Free Range Routing (FRR).¶
Note
This plugin is part of the frr.frr collection (version 1.0.3).
To install it use: ansible-galaxy collection install frr.frr
.
To use it in a playbook, specify: frr.frr.frr_facts
.
New in version 1.0.0: of frr.frr
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.
Parameters¶
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:
Authors¶
Nilashish Chakraborty (@NilashishC)