Re: nameserver for class CHAOS ?

2001-03-20 Thread will trillich
On Thu, Mar 15, 2001 at 11:46:55AM +0200, Tommi Komulainen wrote:
 On Thu, Mar 15, 2001 at 09:23:02AM +, Gavin Hamill wrote:
  
  The most useful thing I can think of for the CHAOS class is the following:
  
  [EMAIL PROTECTED]:~/test$ nslookup -q=txt -class=CHAOS version.bind. 0
  
  That'll only work on real nslookup's, which doesn't include the current
  Debian one which complains about being deprecated...
 
 Well, it's time to learn to use 'dig' and 'host' anyway, so:
 
 host -c chaos -t txt version.bind. localhost
 dig @localhost version.bind. txt chaos

aha!

;; ANSWER SECTION:
VERSION.BIND.   0S CHAOS TXTdeceptive version name

okay -- i'm using the 'deception approach' to the security-rife
'bind' (according to posts i've seen here):

// in /etc/bind/named.conf (that's where slink put it, and
// potato still seems to work from there)...
options {
version something as unlike 'BIND' as i can get;
};

that's chaos? :)

-- 
It is always hazardous to ask Why? in science, but it is often
interesting to do so just the same.
-- Isaac Asimov, 'The Genetic Code'

[EMAIL PROTECTED]
http://newbieDoc.sourceforge.net/ -- we need your brain!
http://www.dontUthink.com/ -- your brain needs us!



Re: nameserver for class CHAOS ?

2001-03-15 Thread Gavin Hamill
On Wed, 14 Mar 2001, will trillich wrote:

 i've gotten a strange DNS/NAMED/BIND error message:
 
   =-=-=-=-=-=-=-=-=-=-=
   Mar 12 10:36:45 server named[2991]: No root nameservers for class CHAOS
 
 where do i look to determine whether or not this is important?
 and what to do about it, if so?

It's not terribly important, and I'd do a grep on your entire /var/named
(or wherever your zone files live) for CHAOS...

Basically, there are three classes of address that BIND supports...

From O'Reilly's DNS/BIND book:
A.1.5 Classes
(From RFC 1035, page 13)

CLASS fields appear in resource records. The following CLASS mnemonics and
values are defined:

IN
1 the Internet

CS
2 the CSNET class (obsolete - used only for examples in some obsolete
RFCs)

CH
3 the CHAOS class

HS
4 the Hesiod class

You might want to consult RFC 1035 for more info :)

The most useful thing I can think of for the CHAOS class is the following:

[EMAIL PROTECTED]:~/test$ nslookup -q=txt -class=CHAOS version.bind. 0

That'll only work on real nslookup's, which doesn't include the current
Debian one which complains about being deprecated...

gdh



Re: nameserver for class CHAOS ?

2001-03-15 Thread Tommi Komulainen
On Thu, Mar 15, 2001 at 09:23:02AM +, Gavin Hamill wrote:
 
 The most useful thing I can think of for the CHAOS class is the following:
 
 [EMAIL PROTECTED]:~/test$ nslookup -q=txt -class=CHAOS version.bind. 0
 
 That'll only work on real nslookup's, which doesn't include the current
 Debian one which complains about being deprecated...

Well, it's time to learn to use 'dig' and 'host' anyway, so:

host -c chaos -t txt version.bind. localhost
dig @localhost version.bind. txt chaos


Besides, 'host' is shorter to type than 'nslookup'... =)


-- 
Tommi Komulainen [EMAIL PROTECTED]
GPG 1024D/68388EE66FD6 DD79 EB38 BF6F 3533  09C0 04A8 9871 6838 8EE6


pgpovqi1dhB7O.pgp
Description: PGP signature


Re: nameserver for class CHAOS ?

2001-03-15 Thread Gavin Hamill
 Besides, 'host' is shorter to type than 'nslookup'... =)

But not 'nsltab' ;)))

gdh




Re: nameserver for class CHAOS ?

2001-03-15 Thread will trillich
Gavin Hamill wrote:
 
 On Wed, 14 Mar 2001, will trillich wrote:
 
  i've gotten a strange DNS/NAMED/BIND error message:
 
=-=-=-=-=-=-=-=-=-=-=
Mar 12 10:36:45 server named[2991]: No root nameservers for class 
  CHAOS
 
  where do i look to determine whether or not this is important?
  and what to do about it, if so?
 
 It's not terribly important, and I'd do a grep on your entire /var/named
 (or wherever your zone files live) for CHAOS...

hmm!

grep CH /etc/bind/*

nothing!

maybe i've got a hosed slave/master relation specification...?

-- 
mailto:[EMAIL PROTECTED]
http://www.dontUthink.com/



Re: nameserver for class CHAOS ?

2001-03-15 Thread John Galt
On Thu, 15 Mar 2001, Gavin Hamill wrote:

 Besides, 'host' is shorter to type than 'nslookup'... =)

But not 'nsltab' ;)))

count the keystrokes...

gdh





-- 

You have paid nothing for the preceding, therefore it's worth every penny
you've paid for it: if you did pay for it, might I remind you of the
immortal words of Phineas Taylor Barnum regarding fools and money?

Who is John Galt?  [EMAIL PROTECTED], that's who!



Re: nameserver for class CHAOS ?

2001-03-15 Thread Gavin Hamill
  It's not terribly important, and I'd do a grep on your entire /var/named
  (or wherever your zone files live) for CHAOS...

 hmm!

 grep CH /etc/bind/*

 nothing!

 maybe i've got a hosed slave/master relation specification...?

Your zone files live in /etc/bind? The debian default was /var/cache/bind/ I
thought?

Apart from that, I dunno :)

BIND is such a complete law unto itself, tho'

Gavin.