Metadata-Version: 2.1
Name: Ftntconfig
Version: 1.1
Summary: Package Ftntconfig
Home-page: https://github.com/cgustave/Ftntconfig
Author: Cedric GUSTAVE
Author-email: cgustave@free.fr
License: UNKNOWN
Description: # Ftntconfig
        
        ##### Disclaimer :
        This is not a Fortinet official product. It is provided as-is without official support.  
        I have made this tool for my own use. It can be used at your own risk.  
        
        ##### Author :
        Cedric GUSTAVE
        
        #### Description :
        Ftntconfig is a simple python library to automate Fortinet device configuration. 
        It has been created for lab testing scenario where Fortinet devices requires configuration loops.
        All configuration is done through an SSH connection.
        It is an evolutive framework where each new configuration requirement can be added in an organized framework. 
        Each device configuration section is accessed through a corresponding attribut:
        Example to access 'config firewall policy' section:
        ~~~
        from Ftntconfig import Ftntconfig
        fgt = Ftntconfig(ip='10.5.51.200', port='22', user='admin', password='', debug=True)
        fgt.firewall.policy()
        ~~~
        
        For more details on the configuration syntax, refer to corresponding module:
        
        Ftntconfig_firewall.py : `config firewall`
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Natural Language :: English
Classifier: Topic :: System :: Networking
Requires-Python: >=3.5
Description-Content-Type: text/markdown
