如何在IP启动时收到通知?

时间:2015-08-14 12:35:08

标签: linux ip ping

我想ping IP-Adress想要收到通知。

系统:Linux Fedora。

有人有想法或软件吗?

1 个答案:

答案 0 :(得分:1)

使用此shell脚本。找到http://jeromejaglale.com/doc/unix/shell_scripts/ping

#! /bin/sh

# -q quiet
# -c nb of pings to perform

ping -q -c5 google.com > /dev/null

if [ $? -eq 0 ]; then
    echo "ok"
fi

将ping置于循环中或使用cron运行脚本。 您可以发送通知而不是回应。