Hi everyone,
Finally, I got it solved.
The issue was my named.conf file. pls see below.
zone "example77.com
" IN {
type master;
file "master/example77.com.zone";
};
The below error happened
Jul 5 15:50:32 gateway named[3548]: master/example77.com.zone:11:
> example77.com\032: bad owner name (check-names)
in the above zone line, between example.com , double quotes should be included. But trailing double quotes was with a ONE SPACE.
I rectified as follows.
zone "example77.com" IN {
type master;
file "master/example77.com.zone";
};
Thanks, EVERYONE.
--
Thank you
Indunil Jayasooriya