Install DHCP server under RedHat 

rpmih dhcp-3.0pl1-9.i386.rpm
 rpmqm dhcp
sed 's/\.1\.1/.0.1/g' /usr/share/doc/dhcp-3.0pl1/dhcpd.conf.sample > /etc/dhcpd.conf
l /etc/dhcpd.conf
ifdown eth0
ifconfig eth0 192.168.0.1 broadcast 192.168.0.255 netmask 255.255.255.0
service dhcpd start

Try to be my own client 

No, didn't get it going. The following was what I changed:

rm /var/lib/dhcp/dhclient.leases
% dhclient eth0
Listening on LPF/eth0/00:07:95:37:6d:13
Sending on   LPF/eth0/00:07:95:37:6d:13
Sending on   Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6
DHCPOFFER from 192.168.0.1
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPACK from 192.168.0.1
bound to 192.168.0.255 -- renewal in 10748 seconds.
% cat /var/lib/dhcp/dhclient.leases
lease {
  interface "eth0";
  fixed-address 192.168.0.255;
  option subnet-mask 255.255.255.0;
  option time-offset -18000;
  option routers 192.168.0.1;
  option dhcp-lease-time 21600;
  option dhcp-message-type 5;
  option domain-name-servers 192.168.0.1;
  option dhcp-server-identifier 192.168.0.1;
  option nis-domain "domain.org";
  option domain-name "domain.org";
  renew 5 2002/12/13 07:03:31;
  rebind 5 2002/12/13 09:19:23;
  expire 5 2002/12/13 10:04:23;
}