gpt4 book ai didi

linux - IP up时如何通知?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:50:28 24 4
gpt4 key购买 nike

我想 ping 一个 IP 地址并希望收到通知。

系统:Linux Fedora。

有人有想法或软件吗?

最佳答案

使用这个 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 运行脚本。您可以发送通知而不是回显。

关于linux - IP up时如何通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32010253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com