写一个shell脚本。定时重启ip地址为192.168.100.1,端口为4433的防火墙
时间: 2023-05-30 12:03:13 浏览: 234
定时重启程序脚本
4星 · 用户满意度95%
#!/bin/bash
# 定义重启的IP和端口号
IP="192.168.100.1"
PORT="4433"
# 循环执行重启防火墙命令
while true
do
# 重启防火墙
echo "重启防火墙..."
ssh root@$IP -p $PORT "systemctl restart firewalld"
# 休眠5分钟
echo "休眠5分钟..."
sleep 300
done
# 保存脚本,例如命名为restart_firewall.sh
# 给脚本添加可执行权限:chmod +x restart_firewall.sh
# 执行脚本:./restart_firewall.sh
阅读全文