From e9e7f3d8fd4f418669f64f361332c65c06ff5db7 Mon Sep 17 00:00:00 2001 From: Thomas Le Gentil <20202649+kifeo@users.noreply.github.com> Date: Thu, 4 Jun 2020 15:43:52 +0200 Subject: [PATCH] removed fortigate integration --- source/_integrations/fortios.markdown | 44 --------------------------- 1 file changed, 44 deletions(-) delete mode 100644 source/_integrations/fortios.markdown diff --git a/source/_integrations/fortios.markdown b/source/_integrations/fortios.markdown deleted file mode 100644 index 7a6a324f1a8f..000000000000 --- a/source/_integrations/fortios.markdown +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: FortiOS -description: Instructions on how to use Fortinet FortiOS to track devices in Home Assistant. -ha_category: - - Presence Detection -ha_release: 0.97 -ha_iot_class: Local Polling -ha_codeowners: - - '@kimfrellsen' -ha_domain: fortios ---- - -This integration enables Home Assistant to do device tracking of devices with a MAC address connected to a FortiGate from [Fortinet](https://www.fortinet.com). - -The integration relies on the [fortiosapi](https://pypi.org/project/fortiosapi/). -The integration has been tested both on FortiGate appliance and FortiGate VM running SW FortiOS v. 6.0.x and 6.2.0. - -All devices with a MAC address identified by FortiGate would be tracked, this covers both Ethernet and Wi-Fi devices, including devices detected by LLDP. - -The integration is based on the Home Assistant `device_tracker` platform. - -```yaml -# Example configuration.yaml entry -device_tracker: - - platform: fortios - host: YOUR_HOST - token: YOUR_API_USER_KEY -``` - -{% configuration %} -host: - description: Hostname or IP address of the FortiGate. - required: true - type: string -token: - description: "See [Fortinet Developer Network](https://fndn.fortinet.net) for how to create an API token. Remember this integration only needs read access to a FortiGate, so configure the API user to only to have limited and read-only access." - required: true - type: string -verify_ssl: - description: If the SSL certificate should be verified. In most home cases users do not have a verified certificate. - required: false - type: boolean - default: false -{% endconfiguration %}