I'm using BIND98 and my domain is example.com. I installed two DNS servers.
Server 1: master.example.local - network: 192.168.1.50/24
	
	
	
		
Server 1: ns2.support.example.local. - network: 10.0.0.50/24
	
	
	
		
When I 
Logging:
	
	
	
		
So, can someone tell me what's wrong in this configuration and how to fix?
Thanks anyway.
				
			Server 1: master.example.local - network: 192.168.1.50/24
		Code:
	
	zone "example.local" {
    type master;
    file "/etc/namedb/dynamic/example.local";
};
zone "1.168.192.in-addr.arpa" {
    type master;
    file "/etc/namedb/dynamic/1.168.192.in-addr.arpa";
};
$ORIGIN .
$TTL 3600       ; 1 hour
example.local              IN SOA  master.example.local. admin1.example.local. (
        2013102702 ; serial
        10800      ; refresh (3 hours)
        3600       ; retry (1 hour)
        604800     ; expire (1 week)
        300        ; minimum (5 minutes)
        )
        NS      master.example.local.
        A       192.168.1.50
        MX      1 mail.example.local.
$ORIGIN example.local.
master        A    192.168.1.50
$ORIGIN support.example.local.
@    IN    NS    ns2.support.example.local.
ns2    IN    A    10.0.0.50  ;Glue Record
		Code:
	
	zone "support.example.local" {
    type master;
    file "/etc/namedb/dynamic/support.example.local";
};
zone "0.0.10.in-addr.arpa" {
    type master;
    file "/etc/namedb/dynamic/0.0.10.in-addr.arpa";
};
$ORIGIN support.example.local.
$TTL 3600       ; 1 hour
@             IN SOA  ns2.support.example.local. admin1.support.example.local. (
        2013102702 ; serial
        10800      ; refresh (3 hours)
        3600       ; retry (1 hour)
        604800     ; expire (1 week)
        300        ; minimum (5 minutes)
        )
        NS      ns2.support.example.local.
        A       10.0.0.50
        MX      1 mail.support.example.local.
ns2        A       10.0.0.50
$ORIGIN example.local.
@        IN        NS    master.example.local.
master        IN        A    192.168.1.50 nslookup at server 1 (master.example.local.), I can resolve ns2.support.example.local. When I  nslookup at server 2 (ns2.support.example.local.), I can't resolve example.local.Logging:
		Code:
	
	warning: /etc/namedb/dynamic/support.example.local:16: ignoring out-of-zone data (example.local)
warning: /etc/namedb/dynamic/support.example.local:17: ignoring out-of-zone data (master.example.local)Thanks anyway.
