Find the answer to your Linux question:
Results 1 to 1 of 1
Anyone come across this before? Here is my named : Code: view "external" { match-clients { any; }; match-destinations { any; }; recursion no; allow-query-cache { none; }; zone "<DOMAIN>" ...
  1. #1
    Just Joined!
    Join Date
    Nov 2010
    Posts
    1

    BIND/RNDC - Why do my subzones work and my actual zone doesn't?

    Anyone come across this before?



    Here is my named :

    Code:
    view    "external"
    {
    
            match-clients           { any; };
            match-destinations      { any; };
    
            recursion no;
    
            allow-query-cache { none; };
    
    
            zone "<DOMAIN>" IN {
                    type master;
                    file "<DOMAIN>";
            };
    };
    and my <DOMAIN>

    Code:
    $TTL 86400
    @               IN      SOA    <DOMAIN>     <DOMAIN> (
                            2010111501
                            28800
                            7200
                            864000
                            86400
                            )
                    IN      NS      <DOMAIN>
                    IN      NS      <DOMAIN>
    
    @                       A       <IP>
    
    $ORIGIN <DOMAIN>
    
    @               IN      A       <IP>
    <DOMAIN>  IN      A      <IP>
    catch           IN      A       <IP>
    mail            IN      A       <IP>
    
    <DOMAIN>  IN      MX      10 <DOMAIN>
    
    ns1             IN      CNAME   catch
    ns2             IN      CNAME   catch
    *               IN      CNAME   catch
    <DOMAIN> works fine 
    
    ashfajkshfjkashfjkahskfjhasjkhfajksf<DOMAIN> works fine 
    
    <DOMAIN> doesn't work
    any ideas?
    Last edited by MikeTbob; 11-16-2010 at 12:55 AM. Reason: Added code tags

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...