Networking Forums

Networking Forums > Computer Networking > Linux Networking > DNS & DHCPD

Reply
 
 
Hosam
Guest
Posts: n/a

 
      01-27-2008, 04:09 PM
Hello All
I have DNS And dhcpd it's work in my rhel5 and have
rhel5 , rhel4 , suse Enterprise server , windows XP
all of my client have ip from dhcpd but I need to register them auto
in my DNS how that please help
thanks
 
Reply With Quote
 
 
 
 
Dave Uhring
Guest
Posts: n/a

 
      01-27-2008, 06:13 PM
On Sun, 27 Jan 2008 09:09:07 -0800, Hosam wrote:

> I have DNS And dhcpd it's work in my rhel5 and have
> rhel5 , rhel4 , suse Enterprise server , windows XP
> all of my client have ip from dhcpd but I need to register them auto
> in my DNS how that please help


Google "dynamic dns site:ietf.org"

 
Reply With Quote
 
Lew Pitcher
Guest
Posts: n/a

 
      01-28-2008, 02:57 PM
On Jan 27, 12:09 pm, Hosam <a.ho...@gmail.com> wrote:
> Hello All
> I have DNS And dhcpd it's work in my rhel5 and have
> rhel5 , rhel4 , suse Enterprise server , windows XP
> all of my client have ip from dhcpd but I need to register them auto
> in my DNS how that please help
> thanks


In your dhcpd.conf file, add in
ddns-domainname "your.domain.name";
ddns-update-style interim;
ddns-rev-domainname "in-addr.arpa";
ignore client-updates;
key "rndc-key" {
algorithm hmac-md5;
secret "your rndc secret key value goes here";
};
zone your.domain.name. {
primary 127.0.0.1;
key "rndc-key";
}
zone your.reverse.zone.inaddr.arpa. {
primary 127.0.0.1;
key "rndc-key";
}

Substituting, of course, for the proper values for your domain name,
your rndc secret key, your primary DNS server's IP address, and your
zone and reverse zone mapping names.

IIRC, you'll also have to set the update-policy values in your
named.conf zone definitions
 
Reply With Quote
 
Stefan Monnier
Guest
Posts: n/a

 
      01-28-2008, 07:30 PM
> I have DNS And dhcpd it's work in my rhel5 and have
> rhel5 , rhel4 , suse Enterprise server , windows XP
> all of my client have ip from dhcpd but I need to register them auto
> in my DNS how that please help


Depends on the DHCP and DNS servers and the DNS clients as well.
If you use dnsmasq as the DHCP&DNS server, then it'll do
that automatically. I heard other DHCP servers can do that as well by
communicating with some other DNS server.

Of course, the clients need to provide the name they want to get
(unless you want to decide this centrally, which can be done as well,
obviously). With Debian clients, you just ned to edit the
/etc/dhclient.conf file and add "send host-name "<HOSTNAME>";".


Stefan


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
dhcpd pechoi@syr.edu Linux Networking 0 06-08-2006 03:15 PM
dhcpd Damir Galič Linux Networking 1 09-08-2005 02:31 AM
dhcpd.conf Damir Galič Linux Networking 6 08-30-2005 04:42 PM
dhcpd Henk Salomons Linux Networking 6 02-11-2005 05:08 PM
dhcpd in dmz ? peter pilsl Linux Networking 3 10-30-2004 08:35 PM



1 2 3 4 5 6 7 8 9 10 11