Como saber se a porta 25 está bloqueada? [fechadas]

3

Estou executando o Debian Jessie 8.1. O provedor VPS diz que a porta 25 está aberta. No entanto, quando instalei o Rainloop e não consigo usá-lo com os usuários do sistema.

No painel de administração do RainLoop, fui para Domínios e adicionei: localhost , 127.0.0.1 , 123.123.123.123 (como o endereço IP do meu servidor) e example.com (como meu domínio principal).

Todos os 4 domínios têm as mesmas configurações: O nome do servidor IMAP / SMTP tem o localhost / 127.0.0.1 / 123.123.123.123 / example.com . E o IMAP tem a porta 143 e a porta SMTP 25. Mas quando clico no botão Testar, os domínios localhost e 127.0.0.1 estão passando o IMAP e o SMTP. Mas o 123.123.123.123 e example.com o IMAP passa, e o SMTP falha com:

stream_socket_client(): unable to connect oto tcp:123.123.123.123:25 (connection refused)

Quando tento fazer o login usando root ou info como usuários do servidor, e sua senha de servidor, recebo Authentication Failed .

Fron putty, eu digito iptables -L e

Chain INPUT (policy ACCEPT)
target     prot opt source               destination
fail2ban-postfix-sasl  tcp  --  anywhere             anywhere             multiport dports smtp
fail2ban-pureftpd  tcp  --  anywhere             anywhere             multiport dports ftp
fail2ban-dovecot-pop3imap  tcp  --  anywhere             anywhere             multiport dports pop3,pop3s,imap2,imaps
fail2ban-ssh  tcp  --  anywhere             anywhere             multiport dports ssh

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

Chain fail2ban-dovecot-pop3imap (1 references)
target     prot opt source               destination
REJECT     all  --  123.123.123.123.vultr.com  anywhere             reject-with icmp-port-unreachable
RETURN     all  --  anywhere             anywhere

Chain fail2ban-postfix-sasl (1 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere

Chain fail2ban-pureftpd (1 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere

Chain fail2ban-ssh (1 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere

atualização A saída de sudo netstat -tnlp é:

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:110             0.0.0.0:*               LISTEN      502/dovecot
tcp        0      0 0.0.0.0:143             0.0.0.0:*               LISTEN      1/init
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      490/sshd
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      981/exim4
tcp        0      0 127.0.0.1:9050          0.0.0.0:*               LISTEN      571/tor
tcp        0      0 127.0.0.1:9051          0.0.0.0:*               LISTEN      571/tor
tcp        0      0 0.0.0.0:993             0.0.0.0:*               LISTEN      1/init
tcp        0      0 0.0.0.0:995             0.0.0.0:*               LISTEN      502/dovecot
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      540/mysqld
tcp        0      0 0.0.0.0:106             0.0.0.0:*               LISTEN      493/inetd
tcp        0      0 127.0.0.1:11211         0.0.0.0:*               LISTEN      488/memcached
tcp6       0      0 :::110                  :::*                    LISTEN      502/dovecot
tcp6       0      0 :::143                  :::*                    LISTEN      1/init
tcp6       0      0 :::8080                 :::*                    LISTEN      622/apache2
tcp6       0      0 :::80                   :::*                    LISTEN      622/apache2
tcp6       0      0 :::8081                 :::*                    LISTEN      622/apache2
tcp6       0      0 :::21                   :::*                    LISTEN      538/vsftpd
tcp6       0      0 :::22                   :::*                    LISTEN      490/sshd
tcp6       0      0 ::1:25                  :::*                    LISTEN      981/exim4
tcp6       0      0 :::443                  :::*                    LISTEN      622/apache2
tcp6       0      0 :::993                  :::*                    LISTEN      1/init
tcp6       0      0 :::995                  :::*                    LISTEN      502/dovecot

Eu não sei ler a saída acima, está bloqueando a porta 25? Ou o problema é outra coisa?

    
por KingsInnerSoul 31.12.2015 / 21:49

2 respostas

0

Honestamente, não tenho ideia de qual foi o problema. Eu tive que remover e limpar todos os pacotes relacionados. É importante para purge porque remove apenas remove os arquivos, mas não os arquivos de configuração, portanto, a estrutura da pasta permanecerá em qualquer arquivo conf. O comando purge remove os arquivos e os arquivos de configuração. Eu aprendi isso de Bencane.com .

Primeiramente, executei dpkg-query -l *postfix* para ver todos os pacotes relacionados. Em seguida, removi tudo por apt-get remove *postfix* e, em seguida, apt-get purge *postfix* . Eu repeti a mesma coisa para remover dovecot também.

Por fim, instalei o postfix e o dovecot novamente e executei a configuração normal e agora funciona.

    
por 03.01.2016 / 19:31
-2

Use as ferramentas do site mxtoolbox. existe um scanner de porta nomeado que ajudará

    
por 01.01.2016 / 00:38