Não é possível conectar-se a smtp.gmail.com na porta 465 ou 587

1

Eu tenho um Ubuntu 14.04 ( Trusty Tahr ) está montado na AWS e não consigo me conectar ao serviço SMTP GMail

SSL ( 465 ) :

## $ telnet smtp.gmail.com 465 ##
Trying 74.125.28.109...
Trying 74.125.28.108...
Trying 2607:f8b0:400e:c04::6c... 
telnet: Unable to connect to remote host: Network is unreachable

TLS ( 587 ):

## $ telnet smtp.gmail.com 587 ##
Trying 74.125.28.108...
Trying 74.125.28.109...
Trying 2607:f8b0:400e:c04::6c...
telnet: Unable to connect to remote host: Network is unreachable

Minhas portas abertas são:

## $ sudo netstat -tlnp ##
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      1069/mysqld
tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN      1050/redis-server 1
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      959/sshd
tcp6       0      0 :::80                   :::*                    LISTEN      7716/apache2
tcp6       0      0 :::22                   :::*                    LISTEN      959/sshd

O Firewall UFW está inativo

## $ sudo ufw status verbose ##
Status: inactive

Eu já salvei as regras do firewall com:

$ sudo iptables -A INPUT -p tcp --dport 587 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
$ sudo iptables -A OUTPUT -p tcp --sport 587 -m conntrack --ctstate ESTABLISHED -j ACCEPT
$ sudo iptables-save
    
por Lenin Meza 07.08.2016 / 16:47

0 respostas