- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- DNS MX record
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 01:14 PM
09-07-2006 01:14 PM
I have a public domain and would like to create the correct MX record on my DNS server BIND 9
the MAIL server should run on the same machine like DNS server.
my MX record:
# cat /etc/bind/domain.net.hosts
$ttl 38400
domain.net. IN SOA ns.domain.net. admin.domain.net. (
2006090525
10800
3600
604800
38400 )
IN NS ns.domain.net.
IN NS ns1.isp.net.
IN NS ns3.isp.net.
IN A 202.X.X.10
ns IN A 202.X.X.10
www IN A 202.X.X.10
IN MX 1 202.X.XX.10
but if I do a DNS test at:
http://www.dnsreport.com
I get the following error:
MX Category ERROR: I couldn't find any MX records for domain.net. If you want to receive E-mail on this domain, you should have MX record(s). Without any MX records, mailservers should attempt to deliver mail to the A record for domain.net. I can't continue in a case like this, so I'm assuming you don't receive mail on this domain.
what's wrong and howto solve this problem ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 02:05 PM
09-07-2006 02:05 PM
Re: DNS MX record
At first glance, the format of the file that you posted looks like a secondary (slave) file for a domain. Are you sure you're modifying the file on the primary (master) server for that domain? Also, make sure you're reloading the zone after incrementing the serial number in the master file. You can do an rndc reload domain.net or restart your named.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 08:02 PM
09-07-2006 08:02 PM
Re: DNS MX record
Since you ommit the first parameter that stands for domain/host, it's copied from a previous one (www in your case).
Add the name of your domain in the beginning of the last line, so it'll look like the following:
domain.net. IN MX 1 202.X.XX.10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2006 01:28 AM
09-08-2006 01:28 AM
Re: DNS MX record
# cat /etc/bind/domain.net.hosts
$ttl 38400
domain.net. IN SOA ns.domain.net. admin.domain.net. (
2006090525
10800
3600
604800
38400 )
IN NS ns.domain.net.
IN NS ns1.isp.net.
IN NS ns3.isp.net.
IN MX 1 202.X.XX.10
IN A 202.X.X.10
ns IN A 202.X.X.10
www IN A 202.X.X.10
That is, move your MX record below NS records. You don't need dnsreport.com to test it, just use:
dig @localhost ns.domain.net MX
You should get the MX address in the ANSWER SECTION.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2006 04:33 AM
09-08-2006 04:33 AM
Re: DNS MX record
yep,
this is master zone file and I'm 100% sure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2006 04:49 AM
09-08-2006 04:49 AM
Re: DNS MX record
mail IN A 202.X.X.10
domain.net. IN MX 1 mail.domain.net.
and if I do a test now, then I'm getting:
SPF record
Your domain does not have an SPF record. This means that spammers can easily send out E-mail that looks like it came from your domain, which can make your domain look bad (if the recipient thinks you really sent it), and can cost you money (when people complain to you, rather than the spammer). You may want to add an SPF record ASAP, as 01 Oct 2004 was the target date for domains to have SPF records in place (Hotmail, for example, started checking SPF records on 01 Oct 2004).
howto create SPF record ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2006 05:03 AM
09-08-2006 05:03 AM
Re: DNS MX record
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2006 05:17 AM
09-08-2006 05:17 AM
Re: DNS MX record
named-checkconf named-checkzone
Don't use dndsreport.com to check your work, use OS utilities. There is a very common delay in data getting to the checksites.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2006 08:36 PM
09-09-2006 08:36 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 06:19 AM
09-10-2006 06:19 AM
Re: DNS MX record
in my case named-checkzone showed evrytime OK, but was not OK.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 02:16 AM
09-11-2006 02:16 AM
Re: DNS MX record
$ttl 38400
$ORIGIN domain.net.
domain.net. IN SOA ns.domain.net. admin.domain.net. (
2006090525
10800
3600
604800
38400 )
IN NS ns.domain.net.
IN NS ns1.isp.net.
IN NS ns3.isp.net.
IN MX 1 202.0.0.10
$ORIGIN domain.net.
IN A 202.0.0.10
ns IN A 202.0.0.10
www IN A 202.0.0.10
That first A record is incomplete.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2006 01:12 PM
09-23-2006 01:12 PM
Re: DNS MX record
there are my zone entries:
# cat /etc/bind/domain.net.hosts
$ttl 38400
domain.net. IN SOA ns.domain.net. admin.domain.net. (
2006090525
10800
3600
604800
38400 )
IN NS ns.domain.net.
IN NS ns1.isp.net.
IN NS ns3.isp.net.
IN A 202.X.X.10
ns IN A 202.X.X.10
www IN A 202.X.X.10
mail IN A 202.X.X.10
IN MX 1 mail.domain.net.