• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What's wrong with this DNS zone?

Red Squirrel

No Lifer
I copied this pretty much EXACT from my online DNS server and just changed the name/IPs. It just wont start.

$TTL 600

@ IN SOA @ borg2.loc. admin.borg.loc. (
1000000000 ; serial
1D ; refresh
1H ; retry
1W ; expire
3H ) ; minimum

IN NS borg.loc.
IN MX 10 mail.borg.loc.
@ IN A 10.1.1.10

www IN A 10.1.1.10
mail IN A 10.1.1.10

router IN A 10.1.1.1





I get this error:

Starting named:
Error in named configuration:
dns_rdata_fromtext: zones/borg.loc:3: near 'admin.borg.loc.': not a valid number
zone borg.loc/IN: loading from master file zones/borg.loc failed: not a valid number
_default/borg.loc/IN: not a valid number



What number? there's not even suppose to be a number on that line. (line 3 is the SOA line)
 
Managed to get it working:

Code:
$TTL 600
@ IN SOA borg2.loc. admin.borg2.loc. (
                                        1000000000       ; serial
                                        1D      ; refresh
                                        1H      ; retry
                                        1W      ; expire
                                        3H     ; minimum
                                        )



@       IN      NS      ns1
        IN      MX      10 mail

@ IN A 10.1.1.210

www IN A 10.1.1.210
mail IN A 10.1.1.210

ns1 IN A 10.1.1.210
test IN A 1.2.3.4
 
Back
Top