Postfix 전송 메일 문제 "연결 시간 초과"

Postfix 전송 메일 문제 "연결 시간 초과"

Windows 7 로컬 머신과 virtualbox Ubuntu 가상 머신이 있습니다. Postfix를 설치하고 구성했지만 테스트 이메일을 보내려고 하면 다음 오류가 발생합니다(var/log/mail.log 파일에서).

경고: 릴레이 호스트 구성 문제

6027284D93:[이메일 보호됨], 릴레이=없음, 지연=54797, 지연=54797/0.22/0.06/0, dsn=4.3.5, 상태=지연(호스트 또는 도메인 이름을 찾을 수 없습니다. 이름=testubu.com 유형=AAAA 이름 서비스 오류: 호스트 없음 발견됨)

내 postfix main.cf 파일:

    # See /usr/share/postfix/main.cf.dist for a commented, more complete version


# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no

# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h

readme_directory = no

# See http://www.postfix.org/COMPATIBILITY_README.html -- default to 2 on
# fresh installs.
compatibility_level = 2

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
myhostname = mail.testubu.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydomain=testubu.com
myorigin = $mydomain
mydestination = $myhostname, testubu.com, smtp-VirtualBox, localhost.localdomain, localhost,
#relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = ipv4
mail_spool_directory = /var/spool/mail
#proxy_interfaces = 

testubu.com은 실제 도메인 이름이 아닙니다

접미사 확인

접미사 상태에 오류가 없습니다.

Relayhost에 댓글을 달았는데 '경고: Relayhost 구성 문제'가 해결되었으나 메일을 보낼 수 없습니다. 이제 내 /var/log/myl.log 파일에서:

> connect to rilf-cz.mail.protection.outlook.com[213.199.154.202]:25:
> Connection timed out

터미널에서 이것을 시도하면 :

추적 경로 -p 25 rilf-cz.mail.protection.outlook.com

다음 메시지가 나타납니다.

traceroute to rilf-cz.mail.protection.outlook.com (213.199.154.202), 64 hops max
  1   10.0.2.2  0,206ms  0,149ms  0,149ms 
  2   10.0.2.2  4,566ms  4,498ms  2,496ms

가상 머신에서는 아무 일도 일어나지 않는 것 같습니다. 모든 방화벽을 비활성화하고 브리지의 NAT를 변경했습니다. 이제 Traceroute가 훨씬 좋아 보이지만 문제는 여전히 존재합니다.

connect to alt2.gmail-smtp-in.l.google.com[74.125.68.27]:25: Connection timed out

이 문제를 어떻게 해결할 수 있나요?

관련 정보