#!/bin/bash
IP=172.22.1.1
PORT=3306
myfile='/etc/zabbix/data/index.html'
rm -f ${myfile}
cd /etc/zabbix/data &&
wget ${IP}:${PORT} >/dev/null 2>&1
if [ -f "${myfile}" ]; then
#删除文件
rm -f ${myfile}
#1 表示端口能通
echo 1
else
#0 表示端口不通
echo 0
fi
#!/bin/bash
IP=172.22.1.1
PORT=3306
myfile='/etc/zabbix/data/index.html'
rm -f ${myfile}
cd /etc/zabbix/data &&
wget ${IP}:${PORT} >/dev/null 2>&1
if [ -f "${myfile}" ]; then
#删除文件
rm -f ${myfile}
#1 表示端口能通
echo 1
else
#0 表示端口不通
echo 0
fi
上一篇:nginx 日志出现400错误
下一篇:mtr路由监控
SpringBoot自定义starter
zabbix 自定义端口监控 。
文章目录一、自定义监控项—SSH1.创建自上
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M