ec2 instance expirou

1

Então, eu estava usando o ssh em minha instância em execução ao tentar configurar o Postfix para envio de e-mails. Eu estava seguindo este tutorial: link . Cheguei à parte Shorewall e segui todas as instruções. Eu acho que enquanto estava fazendo isso, eu me tranquei do meu SSH.

Atualmente, gostaria de remover o firewall Shorewall que está me bloqueando do ssh. Como eu pude fazer isso?

Configurações do Shorewall:

/etc/shorewall/interfaces
net     eth0            detect          dhcp,tcpflags,logmartians,nosmurfs

/etc/shorewall/zones
Add the firewall if not there and the internet as a zone.
fw  firewall
# loc   ipv4
net     ipv4

/etc/shorewall/hosts
# loc   eth0:192.168.0.0/24

/etc/shorewall/policy
$FW             net             ACCEPT
net             $FW             DROP            info
net             all             DROP            info
# The FOLLOWING POLICY MUST BE LAST
all             all             REJECT          info

/etc/shorewall/routestopped
eth0            0.0.0.0                 routeback

/etc/shorewall/rules
Ping/ACCEPT     net             $FW

# Permit all ICMP traffic FROM the firewall TO the net zone
ACCEPT          $FW             net             icmp

# mail lines
SMTP/ACCEPT     net             $FW
SMTPS/ACCEPT    net             $FW
Submission/ACCEPT       net             $FW
IMAP/ACCEPT     net             $FW
IMAPS/ACCEPT    net             $FW

#web
Web/ACCEPT      net             $FW
    
por Sari Rahal 31.10.2014 / 16:45

1 resposta

1

A maneira correta de corrigir esse problema é iniciar uma nova instância e montar seu diretório antigo. Depois de montar o diretório antigo com a nova instância, você poderá desfazer o firewall e removê-lo da inicialização da instância. Em seguida, reinicie sua instância antiga e a parede de incêndio não será iniciada. Então ssh para dentro como normal.

Aqui está um bom tutorial sobre como fazer isso. link

    
por 31.10.2014 / 22:07