Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: serverinstalization
Description: it will give some brief to install the dhcp server

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


Install and configure DHCP server on centos 6
Setup DHCP server on Centos 6 :
Dynamic Host Configuration Protocol
(DHCP) is used to assign IP addresses and
other stuff like gateway and DNS details
automatically to the clients
...


Installing DHCP server on Centos 6:
After installing Centos 6 (Centos 6
installation step by step screenshots ) and configuring network (How to setup network in
centos 6)
Update yum repositories and packages by typing the below command
[root@localhost ~]# yum update

Step 1 » Install dhcp server and client using the below command
[root@localhost ~]# yum install dhcp

Step 2 » After installing dhcp server packages along with dependencies
...
168
...
11”) in the same DHCP range for the listening interface ( eg : “eth0″ )
...


DEVICE="eth0"
HWADDR="00:0C:29:F1:01:4B"
NM_CONTROLLED="yes"
ONBOOT="yes"
BOOTPROTO="none"

IPADDR=192
...
1
...
255
...
0
GATEWAY=192
...
1
...
conf file and paste the below lines and save it
...
com";
#specify DNS server ip and additional DNS server ip
option domain-name-servers 192
...
1
...
67
...
222;
#specify default lease time
default-lease-time 600;
#specify Max lease time
max-lease-time 7200;
#specify log method
log-facility local7;
#Configuring subnet and iprange
subnet 192
...
1
...
255
...
0 {
range 192
...
1
...
168
...
254;
option broadcast-address 192
...
1
...
168
...
1;
}
#Fixed ip address based on MAC id
host Printer01 {
hardware ethernet 02:34:37:24:c0:a5;
fixed-address 192
...
1
...

[root@localhost ~]# chkconfig --levels 235 dhcpd on

That’s it
...



Title: serverinstalization
Description: it will give some brief to install the dhcp server