Re: BIND9 Syntax?

2007-01-15 Thread Nate Peck

Thanks Derek and Reko!

BIND works, and is resolving.

Nate Peck

On 1/14/07, Derek Ragona [EMAIL PROTECTED] wrote:


 Once you get the syntax corrected, make sure you are picking up the correct
named.conf file by doing:
 ps -ax| grep name

 If you don't have /etc/rc.conf setup correctly, you may not be getting the
correct named.conf.

 -Derek



 At 11:40 AM 1/14/2007, Reko Turja wrote:

- Original Message - From: Nate Peck [EMAIL PROTECTED]
 To: freebsd-questions@freebsd.org
 Sent: Sunday, January 14, 2007 6:39 PM
 Subject: BIND9 Syntax?



Dear All,

 I've been having trouble with BIND(version 9.3.2-P1), and I'm not sure
 where the problem is. When I try to use nslookup, it spits out:


server 127.0.0.1Default server: 127.0.0.1
 Address: 127.0.0.1#53

blue.home.lanServer: 127.0.0.1
 Address:127.0.0.1#53

 ** server can't find blue.home.lan: SERVFAIL


 I have my server(blue.home.lan), set up on a LAN.

 These are my config files:

 db.home.lan:
 $TTL 3h
 home.lan. IN SOA blue.home.lan. (
  1; Serial
  3h   ; Refresh after 3 hours
  1h   ; Retry after 1 hour
  1w   ; Expire after 1 week
  1h ) ; Negative caching TTL of 1 hour

 And you can define the SOA to be home.lan.
 Missing the email address of responsible administrator - should be like:

 home.lan. IN SOA home.lan.  email.blue.home.lan
^^^

 Notice that first dot only in email-address is substituted by @

 Usually a good idea is naming the serial like 2007011401 - year, month, day
and serial is easier that way in the long run :)


named.conf:
 options {
 If this was public I would consider adding either a recursion no; or
allow-recursion {}; clauses in options in order to avoid some attack
techniques utilizing nameservers.


zone . IN {
type hint;
file named.ca;
 };
 You have moved the named.root into named.ca?

 No need for IN in these either.



 zone localhost IN {
type master;
file pri/localhost.zone;
allow-update { none; };
notify no;
 };
 Again if public, I would add allow-transfer rules to allow the full dump of
domains in questions only at appropriate peering servers. Maybe allow-query
{ any; }; for every domain as well.

 I might have missed some bugs at cursory glance, but these should help to
get you started.

 -Reko

 (By the way Greg Leheys nowadays publicly available book about FreeBSD has
pretty good walkthrough about basic nameserver configuration)
 ___
 freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
[EMAIL PROTECTED]

 --
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.
 MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


BIND9 Syntax?

2007-01-14 Thread Nate Peck

Dear All,

I've been having trouble with BIND(version 9.3.2-P1), and I'm not sure
where the problem is. When I try to use nslookup, it spits out:


server 127.0.0.1

Default server: 127.0.0.1
Address: 127.0.0.1#53

blue.home.lan

Server: 127.0.0.1
Address:127.0.0.1#53

** server can't find blue.home.lan: SERVFAIL




I have my server(blue.home.lan), set up on a LAN.

These are my config files:

db.home.lan:
$TTL 3h
home.lan. IN SOA blue.home.lan. (
 1; Serial
 3h   ; Refresh after 3 hours
 1h   ; Retry after 1 hour
 1w   ; Expire after 1 week
 1h ) ; Negative caching TTL of 1 hour

home.lan.  IN NS  blue.home.lan.

hp.home.lan. IN A 10.10.10.3
blue.home.lan.   IN A 10.10.10.5
gateway.home.lan.IN A 10.10.10.1

db.127.0.0:
$TTL 3h
0.0.127.in-addr.arpa. IN SOA toystory.movie.edu. al.movie.edu. (
 1; Serial
 3h   ; Refresh after 3 hours
 1h   ; Retry after 1 hour
 1w   ; Expire after 1 week
 1h ) ; Negative caching TTL of 1 hour

0.0.127.in-addr.arpa.IN NS  blue.zin.

1.0.0.127.in-addr.arpa.  IN PTR localhost.

db.10.10.10:
$TTL 3h
10.10.10.in-addr.arpa. IN SOA blue.home.lan. admin.home.lan. (
 1; Serial
 3h   ; Refresh after 3 hours
 1h   ; Retry after 1 hour
 1w   ; Expire after 1 week
 1h ) ; Negative caching TTL of 1 hour
;
; Name servers
;
10.10.10.in-addr.arpa. IN NS  blue.zin.

;
; Addresses point to canonical name
;
1.10.10.10.in-addr.arpa. IN PTR gateway.home.lan.
5.10.10.10.in-addr.arpa. IN PTR blue.home.lan.
3.10.10.10.in-addr.arpa. IN PTR hp.home.lan.

named.conf:
options {
   directory /var/bind;

   forwarders {
   68.87.76.178;
   68.87.78.130;

};

   listen-on-v6 { none; };
   listen-on { 127.0.0.1; 10.10.10.5; };


   pid-file /var/run/named/named.pid;
};

zone . IN {
   type hint;
   file named.ca;
};

zone localhost IN {
   type master;
   file pri/localhost.zone;
   allow-update { none; };
   notify no;
};


zone home.lan IN {
   type master;
   file db.home.lan;

};

zone 10.10.10.in-addr.arpa in {
   type master;
   file db.10.10.10;
};

Any suggestions? Help would be gratly appreciated!

From,
Nate Peck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Atheros Wireless Chipsets?

2006-11-18 Thread Nate Peck

That's good. Thanks for the help!

But I forgot to ask: Is WPA managed through some other layer(like
wpa_supplicant), or is it integrated into iwconfig?

From,
Nate Peck

On 11/16/06, Christian Walther [EMAIL PROTECTED] wrote:

Hi,

it's not about the ath-chipset in this case. The chip works fine, but
you should take care of the card you buy. Even if the chipset is
supported the card might not work at all. So read the manpage and
choose a card that is listed there -- including the revision number!
I'm using a DWL G650 which is equipped with the Atheros chipset, too.
The signal quality is great and it works flawlessly.

HTH
Christian


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Atheros Wireless Chipsets?

2006-11-16 Thread Nate Peck

Dear All,

How is the FreeBSD support for Atheros Chipsets? Is there 54 megabit speed?

And also, how is WEP and/or WPA support?

Nate Peck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Right-to-Left Language Support

2006-08-26 Thread Nate Peck

In FreeBSD, is there good support for right to left languages such as
Hebrew and Arabic?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]