IP up时如何通知?
How to be notified when IP is up?
我想 ping 一个 IP 地址并希望收到通知。
系统:LinuxFedora.
有人有想法或软件吗?
使用此 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 的脚本。
您可以发送通知而不是回应。
我想 ping 一个 IP 地址并希望收到通知。
系统:LinuxFedora.
有人有想法或软件吗?
使用此 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 的脚本。 您可以发送通知而不是回应。