node-red-nodes/io/ping
Dave Conway-Jones d0f36dcda1
update ping node readme
(how to run in snap)
2018-12-07 16:55:16 +00:00
..
locales tidy some labels 2018-04-14 22:43:14 +01:00
88-ping.html update ping node readme 2018-12-07 16:55:16 +00:00
88-ping.js Better error catching in ping node for spawn errors... 2018-12-05 13:46:08 +00:00
LICENSE Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
README.md update ping node readme 2018-12-07 16:55:16 +00:00
package.json update ping node readme 2018-12-07 16:55:16 +00:00

README.md

node-red-node-ping

A Node-RED node to ping a remote server, for use as a keep-alive check.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-ping

Gotchas

1 Ubuntu Snap containers are strict and do not like giving external commands (like ping) external access. To allow ping to work you must manually add the network-observe interface

 sudo snap connect node-red:network-observe

2 On some versions on Raspbian (Raspberry Pi) ping seems to be a root only command. The fix is to allow it as follows

sudo setcap cap_net_raw=ep /bin/ping
sudo setcap cap_net_raw=ep /bin/ping6

Usage

Pings a machine and returns the trip time in mS as msg.payload.

Returns boolean false if no response received, or if the host is unresolveable. msg.error will contain any error message if necessary.

msg.topic contains the ip address of the target host.

Default ping is every 20 seconds but can be configured.