在 EC2 AWS 中开启防火墙后将自己锁定在 SSH 之外

在搭建ftp时,开启了系统防火墙的几个端口,并且设置了防火墙开机自启。当设置好之后,关闭了putty,再次连接SSH时,发现连接错误。仔细一想,防火墙没有开启22端口,这不嘎了么,自己把自己锁门外边了:<

找了一下,还是有方法把防火墙关闭掉的。

  1. 在控制台先停止实例

  2. 右键点击实例,选择"实例设置 "->"编辑用户数据",如下图所示。

  1. 在打开的页面中,选择"将用户数据修改为文本",也就是下面的内容。然后保存并重启实例就可以了。下面脚本就是禁止防火墙开机自启,并把iptable里的相关规则清空。

    Content-Type: multipart/mixed; boundary="//"
    MIME-Version: 1.0
    --//
    Content-Type: text/cloud-config; charset="us-ascii"
    MIME-Version: 1.0
    Content-Transfer-Encoding: 7bit
    Content-Disposition: attachment; filename="cloud-config.txt"
    #cloud-config
    cloud_final_modules:

    • [scripts-user, always]
      --//
      Content-Type: text/x-shellscript; charset="us-ascii"
      MIME-Version: 1.0
      Content-Transfer-Encoding: 7bit
      Content-Disposition: attachment; filename="userdata.txt"
      #!/bin/bash
      ufw disable
      iptables -L
      iptables -F
      --//
相关推荐
mengao123424 分钟前
centos 服务器 docker 使用代理
服务器·docker·centos
C-cat.33 分钟前
Linux|进程程序替换
linux·服务器·microsoft
怀澈12235 分钟前
高性能服务器模型之Reactor(单线程版本)
linux·服务器·网络·c++
学Linux的语莫39 分钟前
Ansible Playbook剧本用法
linux·服务器·云计算·ansible
skywalk81631 小时前
树莓派2 安装raspberry os 并修改成固定ip
linux·服务器·网络·debian·树莓派·raspberry
co0t2 小时前
计算机网络(14)ip地址超详解
服务器·tcp/ip·计算机网络
淡水猫.2 小时前
Fakelocation Server服务器/专业版 ubuntu
运维·服务器·ubuntu
量子网络2 小时前
debian 如何进入root
linux·服务器·debian
时光の尘2 小时前
C语言菜鸟入门·关键字·float以及double的用法
运维·服务器·c语言·开发语言·stm32·单片机·c
我言秋日胜春朝★3 小时前
【Linux】进程地址空间
linux·运维·服务器