mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-17 00:18:58 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
---
|
|
layout: page
|
|
title: "Ping (ICMP)"
|
|
description: "Instructions on how to integrate Ping (ICMP)-based presence detection into Home Assistant."
|
|
date: 2017-01-06 08:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: home-assistant.png
|
|
ha_category: Presence Detection
|
|
ha_release: 0.36
|
|
---
|
|
|
|
|
|
The `ping` platform offers presence detection by using `ping` to send ICMP echo requests. This can be useful when devices are running a firewall and are blocking UDP or TCP packets but responding to ICMP requests (like Android phones). This tracker doesn't need to know the MAC address since the host can be on a different subnet. This makes this an option to detect hosts on a different subnet when `nmap` or other solutions don't work since `arp` doesn't work.
|
|
|
|
To use this presence detection in your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
device_tracker:
|
|
- platform: ping
|
|
hosts:
|
|
hostone: 192.168.2.10
|
|
```
|
|
|
|
Configuration variables:
|
|
|
|
- **hosts** array (*Required*): List of device names and their corresponding IP address or hostname.
|
|
- **count** (*Optional*): Number of packet used for each device (avoid false detection).
|
|
|
|
See the [device tracker component page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|