传奇哥'S BLOG传奇哥'S BLOG

使用AI生成的Fail2ban解锁IP脚本

#!/bin/bash
# 检查参数数量是否正确
if [ $# -ne 1 ]; then
    echo "用法: $0 <IP地址>"
    exit 1
fi
ip="$1"
# 验证IP地址格式(严格模式)
if [[ ! $ip =~ ^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])$ ]]; then
    echo "错误:无效的IPv4地址格式"
    exit 1
fi

Windows server 开启SSH登录

#安装OpenSSH

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

# 启动服务

使用Deepseek生成的Linux系统SSH登录修复脚本

代码保存为fix_ssh.sh

chmod +x ssh_repair.sh
./ssh_repair.sh


回到首页 发表评论 回到顶部