Community Forums
Connect with us on LinkedIn
Community Notice
+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    Member
    Join Date
    May 2006
    Posts
    39

    Default [SOVLED] BIND Placing Zones outside external view

    Just as the title reads, lately BIND has been placing new zones outside the external view, just appending them to the end of the file.

    Does anyone have any ideas what could be causing this?

    Here's the named.conf, minus all the zones except two. One is obviously where it should be, and the second is an example of where bind has been placing them.

    Code:
    include "/etc/rndc.key";
    
    controls {
    	inet 127.0.0.1 allow { localhost; } keys { "rndc-key"; };
    };
    
    options
    {
        /* make named use port 53 for the source of all queries, to allow
             * firewalls to block all ports except 53:
             */
        query-source    port 53;    
        
        // Put files that named is allowed to write in the data/ directory:
        directory "/var/named"; // the default
        dump-file             "data/cache_dump.db";
        statistics-file     "data/named_stats.txt";
        memstatistics-file     "data/named_mem_stats.txt";
    };
    
    logging 
    {
    /*      If you want to enable debugging, eg. using the 'rndc trace' command,
     *      named will try to write the 'named.run' file in the $directory (/var/named).
     *      By default, SELinux policy does not allow named to modify the /var/named directory,
     *      so put the default debug log file in data/ :
     */
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };    
    };
    
    // All BIND 9 zones are in a "view", which allow different zones to be served
    // to different types of client addresses, and for options to be set for groups
    // of zones.
    //
    // By default, if named.conf contains no "view" clauses, all zones are in the 
    // "default" view, which matches all clients.
    // 
    // If named.conf contains any "view" clause, then all zones MUST be in a view; 
    // so it is recommended to start off using views to avoid having to restructure
    // your configuration files in the future.
    
    View    "external"
    {
    /* This view will contain zones you want to serve only to "external" clients
     * that have addresses that are not on your directly attached LAN interface subnets:
     */
    	match-clients        { !localnets; !localhost; any; };
    	match-destinations    { localhost; };
    
        recursion no;
        // you'd probably want to deny recursion to external clients, so you don't
        // end up providing free DNS service to all takers
    
        // all views must contain the root hints zone:
        zone "." IN {
            type hint;
            file "/var/named/named.ca";
        };
    
        // These are your "authoritative" external zones, and would probably
        // contain entries for just your web and mail servers:
    
        // BEGIN external zone entries
    	
    	zone "domain.tld" {
    		type master;
    		file "/var/named/domain.tld";
    	};
    
    };
    
    zone "domain2.tld" {
    	type master;
    	file "/var/named/domain2.tld";
    };

    Thanks.
    Last edited by Starcraftmazter; 11-08-2007 at 03:52 AM.

  2. #2
    cPanel Development cpanelkenneth's Avatar
    Join Date
    Apr 2006
    Posts
    3,768
    cPanel/Enkompass Access Level

    Root Administrator

    Default

    What is your cPanel version number and Operating System?

  3. #3
    Member
    Join Date
    May 2006
    Posts
    39

    Default

    Quote Originally Posted by cpanelkenneth View Post
    What is your cPanel version number and Operating System?
    WHM 11.11.0 cPanel 11.15.0-C17665
    CENTOS Enterprise 5 x86_64 on virtuozzo - WHM X v3.1.0

  4. #4
    Member
    Join Date
    May 2006
    Posts
    39

    Default

    Any...ideas?

  5. #5
    Member
    Join Date
    May 2006
    Posts
    39

    Default

    Solution:

    Change

    Code:
    View    "external"
    To

    Code:
    view    "external"
    (Notice the lowercase v)

Similar Threads & Tags
Similar threads

  1. how to make cpanel sync zones with another bind server
    By madpato in forum cPanel and WHM Discussions
    Replies: 2
    Last Post: 10-12-2009, 05:20 PM
  2. Replies: 1
    Last Post: 08-27-2006, 11:49 AM
  3. Bind wrong dns zones number
    By MikeMc in forum cPanel and WHM Discussions
    Replies: 1
    Last Post: 10-13-2003, 11:46 AM
  4. Problems with BIND and DNS zones
    By allwin in forum cPanel and WHM Discussions
    Replies: 0
    Last Post: 10-04-2002, 01:22 PM
Linkedin       Facebook       Twitter       RSS       Flickr       YouTube