Results 1 to 3 of 3

Thread: Check my bind zone file please...

  1. #1
    Join Date
    May 2005
    Location
    Russia
    Beans
    537

    Check my bind zone file please...

    Good day everyone!
    I've just clean installed Lucid server with my config files and it seems that Lucid's bind 9.7.0 became more severe on syntax errors my zone files had (as I learnt). I corrected it, but want to make sure that I was right this time.

    So the setup is: I have a server that has mirrored Ubuntu repos. I redirect archive.ubuntu.com and ru.archive.ubuntu.com to server transparently. My zone file for that is:
    Code:
    $TTL    604800
    @       IN      SOA     archive.ubuntu.com. root.archive.ubuntu.com. (
    	4         ; Serial
    	604800    ; Refresh
    	86400     ; Retry
    	2419200   ; Expire
    	604800 )  ; Negative Cache TTL
    		NS localhost.
    
    	IN	A	192.168.0.1
    ru	IN	A	192.168.0.1
    Here an extract from named.conf that refers to this file:
    Code:
      // http://archive.ubuntu.com forward zone
      zone "archive.ubuntu.com" {
        type master;
        file "/etc/bind/zones/forward/db.archive.ubuntu.com";
        allow-update{none;};
        notify no;
      };
    Would you be so kind to check it out and correct if needed? Thank you in advance!
    Last edited by PryGuy; May 12th, 2010 at 06:48 PM.

  2. #2
    Join Date
    May 2007
    Location
    Phoenix, Arizona USA
    Beans
    2,909
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Check my bind zone file please...

    Looks OK to me. Just be sure to increment the serial each time you change it and restart bind or the changes won't apply.

    -Tim
    www.pcchopshop.net

    Hard to find and obsolete PC and server parts. "If we can't find it, it probably doesn't exist"

  3. #3
    Join Date
    May 2005
    Location
    Russia
    Beans
    537

    Re: Check my bind zone file please...

    Thanks, pal!

Tags for this Thread

Bookmarks

Posting Permissions

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