Open josecastillagallardo opened 9 months ago
@josecastillagallardo Fortimanager is not supported by Netmiko. Someone would need to create a Netmiko driver for this platform.
Hi, Netmiko driver?. Can you explain this?. Thanks
Each platform has underlying code that supports the given platform. For Fortinet there is code to support the Fortinet firewalls, but not the Fortimanager.
Consequently, a driver would need to be implemented to support this.
The process for creating a driver is here:
Description of Issue/Question
ConnectHandler don't work for fortimanager
I change ssh_autodetect.py with this: "fortinet": { "cmd": "get system status", "search_patterns": [r"FortiOS", r"FortiGate", r"Platform Full Name\s+:\sFortiManager" , r"Platform Full Name\s+:\sFortiAnalyzer"], "priority": 99, "dispatch": "_autodetect_std", },
for detect fortimanager and get the correct best_match but ConnectHandler get next error:
Error: Unexpected FortiOS Version encountered.
Can you support me?