Results 1 to 2 of 2

Thread: bind Resource Record problems

  1. #1

    bind Resource Record problems

    Hi there I'm currently configurating bind I have learned the basic bind config from Oreilly's great "dns and bind" book, but when I try to define my subdomains I get problems
    in named.conf I have definied a master zone
    Code:
    zone "foo.com IN {
            type master;
            file "/var/named/master/foo.net";
            notify yes;
    };
    and my foo.net looks like this :
    Code:
    $TTL 86400
    @ 1D IN SOA dns.foo.com. electra.foo.com. (
        20040421 ;serial
        21600    ;refresh_time
        3600     ;retry time
        604800   ;expire
        86400  ) ;negative caching of TTL
    
       IN NS dns.foo.com.
       IN NS dns1.foo.com.
      dns     IN A 217.211.255.204
    I also have an reverse file which loads without problems, but I can the master file to load I get this in my log:
    Code:
    dns_master_load: /var/named/master/foo.net:12: unknown RR type 'dns'
    thnx for any input.

  2. #2

    Re:bind Resource Record problems

    [quote author=Mor_gath link=board=4;threadid=9079;start=0#msg82166 date=1082651015]
    Code:
    $TTL 86400
    @ 1D IN SOA dns.foo.com. electra.foo.com. (
        20040421 ;serial
        21600    ;refresh_time
        3600     ;retry time
        604800   ;expire
        86400  ) ;negative caching of TTL
    
       IN NS dns.foo.com.
       IN NS dns1.foo.com.
      dns     IN A 217.211.255.204
    [/quote]

    I think the problem where he points to is in the last line here.
    Try just without this "dns". As far as i know every record must start with a class like "IN" and so on. Should look like this.
    Code:
        IN A 217.211.255.204
    Chris

Similar Threads

  1. fedora core 5 and bind V9
    By barfota2000 in forum Linux - Hardware, Networking & Security
    Replies: 0
    Last Post: 04-22-2007, 03:11 PM
  2. Creating Visio Drawings from Text Files
    By The Donald in forum Windows - General Topics
    Replies: 0
    Last Post: 01-05-2005, 06:24 AM
  3. Active Directory LDAP Compliance
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-04-2005, 02:34 AM
  4. Fixing 95/98 Networking problems
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 01:35 AM
  5. Problems setting up Web/Mail/DNS
    By Vagrant in forum Linux - General Topics
    Replies: 2
    Last Post: 03-09-2003, 10:49 PM

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
  •