[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: dhcp



On Sat, Feb 27, 1999 at 11:12:56AM -0500, Thomas and Donna Lopolito wrote:
> has anyone successsfully gotten dhcp to run on a box with 2 ethernet cards?
> If so, then what did you use and how did you setup the dhcpd.conf file?

Hmm. I used the HOWTO. The only problem I had was that the ethernet cards
were 3c509's and were configured to use the same resources (irq, io). I had
to get some utilities to set up the cards, then add some params to LILO to 
make them act right. 


# dhcpd.conf
#
# Configuration file for ISC dhcpd
#

subnet 192.168.1.0 netmask 255.255.255.128 {
	range 192.168.1.10 192.168.1.20;
	range dynamic-bootp 192.168.1.21 192.168.1.30;
	option subnet-mask 255.255.255.128;
	option broadcast-address 192.168.1.127;
	option routers 192.168.1.1;
	option domain-name-servers 192.168.1.1;
	option domain-name "you.lick.cx";
	}

subnet 25.4.117.0 netmask 255.255.255.0 {
	}

-- Lilo command --
append="mem=128M ether=3,0x280,eth0 ether=10,0x300,eth1"

Hope that helps
-- 


Reply to: