LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   how to add dhcp based clients to forward and reverse zone files in fedora 4? (https://www.linuxquestions.org/questions/linux-networking-3/how-to-add-dhcp-based-clients-to-forward-and-reverse-zone-files-in-fedora-4-a-485701/)

khantahirkheli74 09-21-2006 01:07 PM

how to add dhcp based clients to forward and reverse zone files in fedora 4?
 
hi everyone,
as in my previous thread i mentioned that i've configured a small lan with only two clients i.e linux and windows machines..they have static ip addresses and have names mentioned in my fedora 4 server's forward and reverse zone files and hosts files..now the question is how can i add entry to my forward and reverse zone files of clients configured through dhcp services from my fedora 4 server..unders windows 2003 server which is being managed by me at the moment i never have to add any of my client in forward and reverse zone configuration..all i need to do to bring any of the windows clients to my domain/network is to make a user account on the server 2003 machine which automatically assigns ip addresses to my new clients and the newly added client automatically appears in "Active Directory users and computers" head...is the same thing possible on linux server without bothering too much about adding client machine ip address and name given in forward/reverse zone files...help will be cordially appreciated in this concern...thanx

leandean 09-24-2006 01:20 AM

If you want them to have dynamically assigned IPs, just add a range of IPs in dhcpd.conf.

subnet 192.168.100.0 netmask 255.255.255.0 {
range 192.168.100.200 192.168.100.240;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.100.255;
}


All times are GMT -5. The time now is 12:01 AM.