标签:zabbix
#!/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
本文出自 “砖家博客” 博客,请务必保留此出处http://wsxxsl.blog.51cto.com/9085838/1973811
标签:zabbix
原文地址:http://wsxxsl.blog.51cto.com/9085838/1973811