Is there an Ansible module that lets you pull down the entire running configuration, versus just certain facts?
Previously there was such a module called "fortios_config_module" but it appears to be missing from the current collection.
Nominating a forum post submits a request to create a new Knowledge Article based on the forum post topic. Please ensure your nomination includes a solution within the reply.
I was able to solve this using the NTC modules, which use netmiko for SSH connections, which have a handler for FortiGates.
Instructions to install the NTC modules:
https://github.com/networktocode/ntc-ansible
Below is sample playbook that shows how to grab the running-config from a FortiGate. Replace the values for host, username, and password. This play does not require an inventory file.
---
- hosts: localhost
connection: local
gather_facts: no
become: no
tasks:
- name: "Gather show-run from FortiGate"
ntc_show_command:
connection=ssh
platform=fortinet
command='show'
host=firewall_device_name
username=first.last
password=password
We-ve used Ansible and Napalm
http://socpuppet.blogspot.com/2021/04/ansible-and-napalm-to-get-fortios.html
Playbook example is in the above link
Ken Felix
PCNSE
NSE
StrongSwan
Select Forum Responses to become Knowledge Articles!
Select the “Nominate to Knowledge Base” button to recommend a forum post to become a knowledge article.
User | Count |
---|---|
1732 | |
1106 | |
752 | |
447 | |
240 |
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.