Current time: 05-08-2024, 01:09 AM Hello There, Guest! (LoginRegister)


Post Reply 
Manual lines in DNS zone file
Author Message
tuxStyle Offline
Junior Member
*

Posts: 37
Joined: May 2009
Reputation: 0
Post: #123
RE: Manual lines in DNS zone file
I have a problem with the MX records:

Code:
May 26 12:02:25 sync named[3773]: dns_master_load: /var/cache/bind/sync.uni.cc.db:63: ftp.sync.uni.cc: CNAME and other data
May 26 12:02:25 sync named[3773]: zone sync.uni.cc/IN: loading from master file /var/cache/bind/sync.uni.cc.db failed: CNAME and other data

Zone file:
Code:
$TTL 12H
$ORIGIN sync.uni.cc.
@               IN              SOA             ns1.sync.uni.cc. postmaster.sync.uni.cc. (
; dmn [sync.uni.cc] timestamp entry BEGIN.
                2009052600     ; Serial
; dmn [sync.uni.cc] timestamp entry END.
                8H              ; Refresh
                30M             ; Retry
                4W              ; Expire
                3H              ; Minimum TTL
)
                IN              NS              ns1.sync.uni.cc.
                IN              NS              ns2.sync.uni.cc.

sync.uni.cc.     IN              A               69.197.162.131
sync.uni.cc.     IN              TXT             "v=spf1 a mx ip4:69.197.162.131 ~all"

localhost       IN              A               127.0.0.1
ns1             IN              A               69.197.162.131
ns2             IN              A               193.230.197.29
; CNAME for VHCS compatibility
ns              IN              CNAME           ns1
; sub [{SUB_NAME}] entry BEGIN.
; sub [{SUB_NAME}] entry END.

; dns [1] entry BEGIN.
admin   IN      A       69.197.162.131
; dns [1] entry END.

; dns [2] entry BEGIN.
mail    IN      A       69.197.162.131
; dns [2] entry END.

; dns [3] entry BEGIN.
imap    IN      CNAME   mail
; dns [3] entry END.

; dns [4] entry BEGIN.
pop3    IN      CNAME   mail
; dns [4] entry END.

; dns [5] entry BEGIN.
pop     IN      CNAME   mail
; dns [5] entry END.

; dns [6] entry BEGIN.
relay   IN      CNAME   mail
; dns [6] entry END.

; dns [7] entry BEGIN.
smtp    IN      CNAME   mail
; dns [7] entry END.

; dns [8] entry BEGIN.
www     IN      A       69.197.162.131
; dns [8] entry END.

; dns [9] entry BEGIN.
ftp     IN      CNAME   www
; dns [9] entry END.

; dns [11] entry BEGIN.
        IN      MX      10      mail.sync.uni.cc.
; dns [11] entry END.

; dns [{MANUAL_DNS_ID}] entry BEGIN.
; dns [{MANUAL_DNS_ID}] entry END.

Moving the IN MX record on top, under name servers solve the problem.
Also i think:
Code:
sync.uni.cc.     IN              TXT             "v=spf1 a mx ip4:69.197.162.131 ~all"
should be change to something like:
Code:
sync.uni.cc.     IN              TXT             "v=spf1 a mx ip4:69.197.162.131 include:mail.sync.uni.cc ~all"

just in case the MX points to a different IP address.
05-27-2009 02:19 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Manual lines in DNS zone file - Blondak - 07-10-2008, 08:45 PM
RE: Manual lines in DNS zone file - nuno - 07-12-2008, 05:28 AM
RE: Manual lines in DNS zone file - nuno - 07-18-2008, 01:24 AM
RE: Manual lines in DNS zone file - gutek - 08-14-2008, 02:46 AM
RE: Manual lines in DNS zone file - suw - 09-06-2008, 07:57 AM
RE: Manual lines in DNS zone file - mpages - 09-16-2008, 05:20 AM
RE: Manual lines in DNS zone file - Juz - 10-27-2008, 03:26 AM
RE: Manual lines in DNS zone file - Juz - 10-29-2008, 05:33 AM
RE: Manual lines in DNS zone file - BeNe - 10-29-2008, 07:21 AM
RE: Manual lines in DNS zone file - Juz - 10-29-2008, 03:51 PM
RE: Manual lines in DNS zone file - hnn - 11-20-2008, 07:28 PM
RE: Manual lines in DNS zone file - kaotix - 12-12-2008, 04:15 AM
RE: Manual lines in DNS zone file - TXC - 12-22-2008, 02:46 AM
RE: Manual lines in DNS zone file - TXC - 01-08-2009, 03:51 AM
RE: Manual lines in DNS zone file - TXC - 01-08-2009, 06:27 AM
RE: Manual lines in DNS zone file - xister - 01-28-2009, 02:42 AM
RE: Manual lines in DNS zone file - tango - 02-20-2009, 10:11 PM
RE: Manual lines in DNS zone file - FeG - 02-20-2009, 10:30 PM
RE: Manual lines in DNS zone file - CHBIE - 02-09-2009, 05:46 AM
RE: Manual lines in DNS zone file - tango - 02-20-2009, 10:56 PM
RE: Manual lines in DNS zone file - xister - 02-21-2009, 06:34 PM
RE: Manual lines in DNS zone file - tango - 02-21-2009, 07:36 PM
RE: Manual lines in DNS zone file - hnn - 02-24-2009, 07:01 PM
RE: Manual lines in DNS zone file - quash - 03-06-2009, 01:31 AM
RE: Manual lines in DNS zone file - quash - 03-09-2009, 10:07 PM
RE: Manual lines in DNS zone file - quash - 03-12-2009, 01:16 AM
RE: Manual lines in DNS zone file - quash - 03-17-2009, 09:03 PM
RE: Manual lines in DNS zone file - quash - 03-24-2009, 12:22 AM
RE: Manual lines in DNS zone file - quash - 03-25-2009, 12:18 AM
RE: Manual lines in DNS zone file - quash - 03-25-2009, 12:53 AM
RE: Manual lines in DNS zone file - quash - 03-27-2009, 07:50 AM
RE: Manual lines in DNS zone file - Foggy - 03-27-2009, 07:17 PM
RE: Manual lines in DNS zone file - Foggy - 03-27-2009, 10:02 PM
RE: Manual lines in DNS zone file - Foggy - 03-27-2009, 11:07 PM
RE: Manual lines in DNS zone file - Zothos - 03-28-2009, 01:10 AM
RE: Manual lines in DNS zone file - Foggy - 03-28-2009, 07:01 PM
RE: Manual lines in DNS zone file - sunsus - 05-04-2009, 08:15 PM
RE: Manual lines in DNS zone file - Haeber - 05-14-2009, 03:14 AM
RE: Manual lines in DNS zone file - sfera - 05-22-2009, 10:24 PM
RE: Manual lines in DNS zone file - sfera - 05-23-2009, 01:43 AM
RE: Manual lines in DNS zone file - sfera - 05-25-2009, 11:55 PM
RE: Manual lines in DNS zone file - sfera - 05-26-2009, 07:30 PM
RE: Manual lines in DNS zone file - tuxStyle - 05-27-2009 02:19 AM
RE: Manual lines in DNS zone file - bpratt - 06-04-2009, 09:07 AM
RE: Manual lines in DNS zone file - Foggy - 06-22-2009, 06:09 PM
RE: Manual lines in DNS zone file - BeNe - 06-22-2009, 07:16 PM
RE: Manual lines in DNS zone file - tango - 06-22-2009, 10:19 PM
RE: Manual lines in DNS zone file - BeNe - 06-22-2009, 11:11 PM
RE: Manual lines in DNS zone file - tango - 06-23-2009, 02:26 AM
RE: Manual lines in DNS zone file - Foggy - 06-23-2009, 07:19 AM
RE: Manual lines in DNS zone file - Foggy - 06-26-2009, 02:51 PM
RE: Manual lines in DNS zone file - Foggy - 06-28-2009, 05:47 PM
RE: Manual lines in DNS zone file - BeNe - 06-30-2009, 03:51 PM
RE: Manual lines in DNS zone file - Foggy - 07-02-2009, 04:53 PM
RE: Manual lines in DNS zone file - BeNe - 07-28-2009, 04:52 PM
RE: Manual lines in DNS zone file - TSG - 08-30-2009, 10:28 AM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)