0

When I add this line to my zone record: subdomain.example.org. IN TXT "some text here", my syslog reports the zone can't reload due to errors. subodmain IN TXT "some text here" also fails.

The zone reloads fine without this line.

StevieD
  • 474
  • 5
  • 17

1 Answers1

2

Based on the error message posted in the comments:

dns_master_load: /etc/bind/zones/example.org.hosts:30: subdomain.example.org: CNAME and other data

It appears that the name where you are trying to add the TXT record is an alias (has a CNAME record).
A name cannot both be an alias and have data of its own, so this error is the expected outcome if you try to add any other records.

(The TXT record listed in the question would otherwise be fine.)

Håkan Lindqvist
  • 33,741
  • 5
  • 65
  • 90