postfix: incapaz de Telnet na porta 25 em centos 6.7

0

Introdução

  1. Nova gota digitalocean com Centos 6.7 i686 (centos-release-6-7.el6.centos.12.3.i686)

  2. Nginx 1.1.13 (criado a partir do código-fonte):

  3. Cyrus:

    $ sudo yum install cyrus-sasl cyrus-imapd
    $ sudo vi vi /etc/cyrus.conf: 
     -> https://gist.github.com/c80609a/7190c4981365447063ce2e06a517d9fd
    $ sudo vi /etc/sasl2/smtpd.conf:
     -> pwcheck_method: auxprop
     -> auxprop_plugin: sasldb
     -> mech_list: PLAIN LOGIN CRAM-MD5 DIGEST-MD5 
     ...
    $ sudo chkconfig --level 345 cyrus-imapd on
    $ sudo service cyrus-imapd start
    $ sudo service cyrus-imapd status
     -> cyrus-imapd (pid  1851) is running...
    
  4. POSTFIX (postfix-2.6.6-6.el6_7.1.i686)

    $ sudo yum install postfix
    $ sudo vi /etc/postfix/master.cf
    -> https://gist.github.com/c80609a/07b397d2baa7455896bb704aa2a7479a 
    $ sudo vi /etc/postfix/main.cf
    -> https://gist.github.com/c80609a/831168401df84b395c393b09a3cda384 
    $ sudo vi /etc/postfix/virtual: [email protected] webmaster\@site.org
    $ sudo postmap /etc/postfix/virtual 
    $ sudo touch /etc/postfix/body_checks 
    $ sudo service postfix stop
    $ sudo service postfix reload
    $ sudo postfix upgrade-configuration
    $ sudo service postfix start
    $ sudo service postfix status
    master (pid  16811) is running...
    $ sudo postfix status
    postfix/postfix-script: the Postfix mail system is running: PID: 16811  
    
  5. Dois registros adicionados (digitalocean.com - > login - > networking):

    A mail 95.85.24.200
    MX 5 mail.site.org.
    
  6. Correio enviado com sucesso:

    $ echo 'test' | mail -s 'test' [email protected]
    

Problemas

  1. Conexão Telnet recusada:

    $ telnet localhost 25
    Trying ::1...
    telnet: connect to address ::1: Connection refused
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    

    Experimente o host do Google - OK:

    $ telnet gmail-smtp-in.l.google.com 25
    Trying 74.125.136.26...
    Connected to gmail-smtp-in.l.google.com.
    Escape character is '^]'.
    220 mx.google.com ESMTP t6si2618629wjt.255 - gsmtp
    quit
    221 2.0.0 closing connection t6si2618629wjt.255 - gsmtp
    Connection closed by foreign host.
    
  2. Saída netstat inesperada ( a última coluna está indefinida ):

    $ netstat -ln |grep :25
    tcp        0      0 0.0.0.0:25                  0.0.0.0:*                   LISTEN
    

    Resultado esperado:

    tcp        0      0 0.0.0.0:25                  0.0.0.0:*                   LISTEN      16811/master
    

Como corrijo esses problemas?

    
por c80609a 14.09.2016 / 09:36

1 resposta

1

A conexão recusada é apenas em IPv6, no endereço IPv4 (127.0.0.1) você obtém uma conexão. Se você quiser ativar o IPv6, você precisa adicionar a seguinte linha em main.cf :

inet_protocols = ipv4, ipv6

Em relação à saída netstat, você precisa usar a opção -p para mostrar nomes de processos, comparar:

mtak@dc2:~$ netstat -ln | grep 25
tcp        0      0 0.0.0.0:25       0.0.0.0:*            LISTEN     
tcp6       0      0 :::25            :::*                 LISTEN     

e

mtak@dc2:~$ sudo netstat -pln | grep 25
tcp        0      0 0.0.0.0:25    0.0.0.0:*   LISTEN      3102/master     
    
por 14.09.2016 / 09:42

Tags