hello,
I have ubuntu server joined to windows domain and behind the router
for example my internal windows domain is loc.network
but my public domain is systems.ru with public ip 77.77.77.77
mail server internal ip is 192.168.8.10 and name is 'mail'
so my /etc/hosts now is
Code:
127.0.0.1 localhost
192.168.8.10 mail.loc.network mail
also I configure bind with 2 external dns servers, bind zone config is
Code:
;
; BIND data file for systems.ru
;
$TTL 604800
@ IN SOA mail.systems.ru. admin.systems.ru. (
2008122523
1500
600
2419200
3600 )
;
@ IN NS mail
IN MX 10 mail
IN A 77.77.77.77 ; public ip
mail IN A 77.77.77.77 ; public ip
systems.ru. IN NS ns4.nic.ru. ; external secondary dns
systems.ru. IN NS ns8.nic.ru. ; external another secondary dns so as server not in dmz I have to use public IP 77.77.77.77
when i check dns with dnsreport.com or intodns.com, all is ok
but when I try to install ZCS I get the error:
Code:
Create Domain: [systems.ru] systems.ru
MX: mail.systems.ru (77.77.77.77)
Interface: 192.168.8.10
Interface: 127.0.0.1
DNS ERROR - none of the MX records for systems.ru
resolve to this host
It is suggested that the MX record resolve to this host
Re-Enter domain name? [Yes]
Create Domain: [systems.ru] mail.systems.ru
if I try to change to mail.systems.ru I got the same error:
Code:
Re-Enter domain name? [Yes]
Create Domain: [systems.ru] mail.systems.ru
DNS ERROR resolving MX for mail.systems.ru
It is suggested that the domain name have an MX record configured in DNS
nslookup show me that all is ok with with dns
Code:
nslookup systems.ru 127.0.0.1
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: systems.ru
Address: 77.77.77.77
nslookup mail.systems.ru 127.0.0.1
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: mail.systems.ru
Address: 77.77.77.77
nslookup mail.systems.ru ns4.nic.ru
Server: ns4.nic.ru
Address: 194.226.96.8#53
Name: mail.systems.ru
Address: 77.77.77.77
if i'll change public ip (77.77.77.77) in zone record to private (192.168.8.10), i'll complete instalation, if i'll change dns zone again to public IP, I can to send mail from internal network, but i cant to receive mail.. when I try to send something for example from gmail, i got the next error:
Quote:
This is the mail system at host mail.loc.network.
I'm sorry to have to inform you that your message could not
be delivered to one or more recipients. It's attached below.
For further assistance, please send mail to postmaster.
If you do so, please include this problem report. You can
delete your own text from the attached returned message.
The mail system : Host or domain name not found. Name service error for
name=mail.loc.network type=A: Host not found
Final-Recipient: rfc822; chain@systems.ru
Original-Recipient: rfc822;chain@systems.ru
Action: failed
Status: 5.4.4
Diagnostic-Code: X-Postfix; Host or domain name not found. Name service error
for name=mail.loc.network type=A: Host not found
|
help,please, I have only this weekend to resolve the problem