[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: BIND from Winnt Application
- To: Erez Avraham <ereza(at-nospam)meetu.com>
- Subject: Re: BIND from Winnt Application
- From: Ilya Konstantinov <linux-il(at-nospam)future.galanet.net>
- Date: Sat, 12 May 2001 12:47:04 +0300
- Cc: "'linux-il(at-nospam)linux.org.il'" <linux-il(at-nospam)linux.org.il>
- Delivered-To: linux.org.il-linux-il@linux.org.il
- In-Reply-To: <C324936EB503D41191890090278D3F82026AFF@YOQNEAM>; from ereza@meetu.com on Sat, May 12, 2001 at 10:22:11AM +0200
- References: <C324936EB503D41191890090278D3F82026AFF@YOQNEAM>
- Sender: linux-il-bounce(at-nospam)cs.huji.ac.il
- User-Agent: Mutt/1.2.4i
On Sat, May 12, 2001 at 10:22:11AM +0200, Erez Avraham wrote:
> Greetings
>
> i'm looking for a way to write records to bind (any version, any flavor)
> from winnt.
> our company is developing a collaboration server that uses DNS (winnt
> mainly) , for each user registered we write a CNAME record on the DNS,
To achieve this, you should enable dynamic DNS updates from the WinNT
machine in the Bind configuration for the zone you intend to update.
e.g.
zone "microsoft.com" {
type master;
allow-update { 10.0.0.10; };
file "/var/named/primary/microsoft.com";
};
To perform the updates, use the Dynamic DNS protocol (RFC 2136). Bind
comes with an 'nsupdate' tool to achieve this, and there's a Perl
Net::DNS::Update module too.
Note that there's no authentication in this case (only by IP), so if
you're looking for more security, either make sure your network is well
protected or use the Secure DNS features of Bind 9.
--
Best regards,
Ilya Konstantinov
=================================================================
To unsubscribe, send mail to linux-il-request@linux.org.il with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail linux-il-request@linux.org.il