用于ping监控的Raspberry Pi Debian工具

时间:2015-09-12 07:16:22

标签: debian raspberry-pi ping monitor

我正在寻找工具。我有一些设备连接到本地网络:温度控制器,路由器,NAS等。每个设备都有静态IP。我需要工具ping设备。当ping失败时,工具必须向我发送电子邮件。 需要缓慢的Raspberry Pi微笑工具。

2 个答案:

答案 0 :(得分:1)

您可以使用shell脚本轻松地使用linux设置此类工具。使用此代码循环遍历所有静态IP地址。您可以使用ssmtp包定义外部smtp服务器,这里是描述如何执行此操作的link。您还可以创建一个cron作业来安排脚本。希望这会对你有所帮助。

#!/bin/bash
ip_address="192.168.1.1"
if ping -c1 "$ip_address" &>/dev/null
then
    echo "success"
else
    echo "PING to $ip_address failed" | mail -s "ping error" someone@example.com
fi

答案 1 :(得分:0)