Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
TetraWiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Dynamic Host Configuration Protocoal (DHCP) - DR Ahmedabad
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
[[category:Punjab's IFMS-IWDMS Project]] = Dynamic Host Configuration Protocoal-DR Ahmedabad = Navdeep Mathur Tetra Information Services Pvt. Ltd New Delhi =='''Overview'''== Dynamic Host Configuration Protocol (DHCP) automatically assigns IP addresses and other network configuration information (subnetmask, broadcast address, etc) to computers on a network. A client configured for DHCP will send out a broadcast request to the DHCP server requesting an address. The DHCP server will then issue a "lease" and assign it to that client. The time period of a valid lease can be specified on the server. DHCP reduces the amount of time required to configure clients and allows one to move a computer to various networks and be configured with the appropriate IP address, gateway and subnet mask. For ISP's it conserves the limited number of IP addresses it may use. DHCP servers may assign a "static" IP address to specified hardware. Microsoft NetBios information is often included in the network information sent by the DHCP server. =='''Server'''== '''IP : 172.22.10.60''' '''Hostname : pbdrntp.pbifmsiwdms.pjb''' =='''Installation'''== <nowiki># yum install dhcp*</nowiki> =='''Server Configuration'''== '''Copy the sample configuration file from''' '''/usr/share/doc/dhcp-4.1.1/dhcpd.conf.sample''' '''<nowiki># cp /usr/share/doc/dhcp-4.1.1/dhcpd.conf.sample /etc/dhcp/dhcpd.conf</nowiki>''' <nowiki># vim /etc/dhcp/dhcpd.conf</nowiki> Add these lines '''<nowiki># Default DNS to be used by DHCP</nowiki>''' option domain-name-servers 172.22.10.53; '''<nowiki># Specify a WINS server for MS/Windows clients.</nowiki>''' option netbios-name-servers 172.22.10.60; '''<nowiki># </nowiki>Range of IP addresses to be issued to DHCP clients''' subnet 192.168.10.0 netmask 255.255.255.0 { range 192.168.10.100 192.168.10.200; subnet 192.168.20.0 netmask 255.255.255.0 { range 192.168.10.100 192.168.10.200; subnet 192.168.70.0 netmask 255.255.255.0 { range 192.168.70.100 192.168.70.200; subnet 172.22.10.0 netmask 255.255.255.0 { range 172.22.10.100 172.22.10.200; '''Starting the service''' <nowiki># /</nowiki>etc/init.d/dhcpd start ; chkconfig dhcpd on ==Test Configuration== Test configuration file for errors with the following command: #/etc/rc.d/init.d/dhcpd configtest Syntax: OK
Summary:
Please note that all contributions to TetraWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
TetraWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)