flagify-com / OctoMation

OctoMation是一款免费的,具有可视化拖拽功能的编排与自动化产品。通过精心编排的Playbook,OctoMation能够联动数百款安全、网络、IT和SaaS等产品的基础能力。其主要特点包括低代码剧本编排、自动化事件响应、标准化流程操作以及可视化过程监控。 借助OctoMation,运营团队能够开展7x24小时自动化事件响应,不仅可以大幅减少对人员的过度依赖,还能确保团队工作质量始终维持在较高的水准上,最终实现“极速降本增效”。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

现在一安装firewalld 所有端口就关闭了 服务器都上不去

wuzhi-dev opened this issue · comments

请试试以下执行,将22端口提前到到防火墙

firewalld 停止后执行:

  1. 离线模式打开22端口
    firewall-offline-cmd --direct --add-rule ipv4 filter INPUT 0 -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT

  2. 延迟5分钟重启系统,避免防火墙不让连ssh时自动重启系统

shutdown -r +5 "Enabling firewall. If access is lost, server will restart in 2 minutes."

3.启动防火墙

systemctl start firewalld

  1. 测试是否可以连接ssh

  2. 第4步没有问题的话,取消第二步的系统重启
    shutdown -c

  3. 配置自启动防火墙,并将firewall-offline-cmd策略刷到持久策略中
    systemctl enable firewalld
    firewall-cmd --runtime-to-permanent

研究了一下 系统自带的ufw防火墙先关闭了 就不会这样了