On Tue, 2003-09-02 at 22:39, Vidiot wrote:
> I'm running RH7.1 and now need to get DHCP running over the 2nd NIC (internal
> network).  I tried installing the dhcpd RPM, but was told it was already
> installed, yet there are no man pages, no way to start dhcp in init.d and
> chkconfig doesn't list it either.
> 
> Anyone know what gives?
> 
You're looking for /etc/dhcpd.conf
2 basic entries you need is a definition for the external network (ie:
don't give ips) and the internal network.

ie:
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.

subnet 206.163.192.64 netmask 255.255.255.192 {
}

# Internal network
# This is a very basic subnet declaration.

subnet 10.1.1.0 netmask 255.255.255.0 {
  range 10.1.1.200 10.1.1.220;
  option routers 10.1.1.1;
}

Then start up dhcpd (by typing dhcpd)

-- 
NfoCipher <[EMAIL PROTECTED]>
ChickenWare, LLC
Co-lo or dedicated Linux box as low as $35/month - www.SpeedWorks.com


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to