BTW, your NS record should be an FQDN, not an IP address, otherwise you might unwittingly end up with a stealth master.
so
IN NS ns.jzeller.com.
and thus you need to setup the A record:
ns IN A 192.168.1.110
convention is to make NS the first records, it doesn't really matter though.
IN A 192.168.1.110 ; local ip
^^ this record inherits SOA space but I think should really be:
@ IN A 192.168.1.110
mail IN A 192.168.1.110
IN MX 10 mail.jzeller.com. ;MXrecord
^^ these are fine.
And if this is Bind9, you should have $TTL set:
$TTL 1d
this should be first line in the zone file
while you're testing, reduce this:
$TTL 60; i think this means 60sec? |