├── LICENSE ├── NOTICE ├── README.md ├── documentation └── FACTS │ └── CAMPUS │ └── CORE │ ├── CORE_IOS_Facts.yml │ ├── CORE_IOS_Facts_Nice.json │ ├── CORE_IOS_Facts_RAW.json │ ├── CORE_IOS_facts.csv │ ├── CORE_IOS_facts.html │ ├── CORE_IOS_facts.md │ ├── CORE_IP_facts.csv │ ├── CORE_IP_facts.html │ ├── CORE_IP_facts.md │ ├── CORE_Interface_facts.csv │ ├── CORE_Interface_facts.html │ ├── CORE_Interface_facts.md │ ├── CORE_Neighbor_facts.csv │ ├── CORE_Neighbor_facts.html │ └── CORE_Neighbor_facts.md ├── group_vars ├── CampusAccess.yml ├── CampusCore.yml └── CampusDist.yml ├── hosts ├── playbooks ├── CiscoAccessFacts.yml ├── CiscoCoreFacts.yml ├── CiscoDistFacts.yml └── ansible.cfg └── topology.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Cisco IOS Ansible ios_facts Playbooks: 2 | Copyright (c) 2020 John Capobianco 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/README.md -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts.yml -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts_Nice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts_Nice.json -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts_RAW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_Facts_RAW.json -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.csv -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.html -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IOS_facts.md -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IP_facts.csv: -------------------------------------------------------------------------------- 1 | IP Addresses -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IP_facts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IP_facts.html -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_IP_facts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_IP_facts.md -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.csv -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.html -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_Interface_facts.md -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Neighbor_facts.csv: -------------------------------------------------------------------------------- 1 | Interface,Neighbor,Port -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Neighbor_facts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_Neighbor_facts.html -------------------------------------------------------------------------------- /documentation/FACTS/CAMPUS/CORE/CORE_Neighbor_facts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/documentation/FACTS/CAMPUS/CORE/CORE_Neighbor_facts.md -------------------------------------------------------------------------------- /group_vars/CampusAccess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/group_vars/CampusAccess.yml -------------------------------------------------------------------------------- /group_vars/CampusCore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/group_vars/CampusCore.yml -------------------------------------------------------------------------------- /group_vars/CampusDist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/group_vars/CampusDist.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/hosts -------------------------------------------------------------------------------- /playbooks/CiscoAccessFacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/playbooks/CiscoAccessFacts.yml -------------------------------------------------------------------------------- /playbooks/CiscoCoreFacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/playbooks/CiscoCoreFacts.yml -------------------------------------------------------------------------------- /playbooks/CiscoDistFacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/playbooks/CiscoDistFacts.yml -------------------------------------------------------------------------------- /playbooks/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/playbooks/ansible.cfg -------------------------------------------------------------------------------- /topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automateyournetwork/CiscoIOSFacts/HEAD/topology.png --------------------------------------------------------------------------------