Re: DHCP Server Config Question

2001-04-11 Thread Susumu Takuwa
 On Tue, 10 Apr 2001 14:16:39 -0500
Dave Bacon writes:

DB I must be very close, but may be missing a small piece of the puzzle.
DB Can anyone help?

Can you get information from `/var/log/daemon.log' and
something?


Susumu Takuwa





Re: DHCP Server Config Question

2001-04-11 Thread Dave Bacon
OK, I just figured this one out.  (With the help of the list archives at
www.isc.org)

Each router on the other subnets must contain an ip helper-address
xxx.xxx.xxx.xx statement on their ethernet port which points back to my new
backup Debian DHCP Server.

Thank you for your help

Dave Bacon - OWLS

Susumu Takuwa wrote:

  On Tue, 10 Apr 2001 14:16:39 -0500
 Dave Bacon writes:

 DB I must be very close, but may be missing a small piece of the puzzle.
 DB Can anyone help?

 Can you get information from `/var/log/daemon.log' and
 something?

 Susumu Takuwa

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

--

_

  Dave G. Bacon
Computer Network Manager
Outagamie Waupaca Library System
 225 N. Oneida St., Appleton, WI  54911
 920/832-6193(voice),  920/832-6422(FAX)
mailto:[EMAIL PROTECTED]
http://www.owls.lib.wi.us
_




DHCP Server Config Question

2001-04-10 Thread Dave Bacon
Hello,

I'm working on creating a backup Linux DHCP server for our network.
(Our primary DHCP server is an NT server which is working just fine for
all subnets)

The Linux backup DHCP server is on the 172.32.128.0 subnet.  Any PC
located on the same subnet as the Linux server (172.32.128.0) is able to
acquire IP Addresses from the Linux server just fine.  The problem is
that computers on the other 2 subnets (172.32.130.0  172.32.131.0) are
not able to acquire IP address information from the Linux server.
Although all computers on all networks CAN ping the IP Address of the
new backup Linux DHCP server.

I must be very close, but may be missing a small piece of the puzzle.
Can anyone help?

Thank you

/etc/dhcpd.conf  information below
---

option domain-name sample.lib.wi.us;
option domain-name-servers 172.32.128.16 , 210.113.196.2;

default-lease-time 604800;
max-lease-time 604800;

subnet 172.32.128.0 netmask 255.255.255.0 {
 option routers 172.32.128.1;
 range 172.32.128.64 172.32.128.254;
 }
subnet 172.32.130.0 netmask 255.255.255.0 {
 option routers 172.32.130.1;
 range 172.32.130.64 172.32.130.254;
 }
subnet 172.32.131.0 netmask 255.255.255.0 {
 option routers 172.32.131.1;
 range 172.32.131.64 172.32.131.254;
 }



--

_

  Dave G. Bacon
Computer Network Manager
Outagamie Waupaca Library System
 225 N. Oneida St., Appleton, WI  54911
 920/832-6193(voice),  920/832-6422(FAX)
mailto:[EMAIL PROTECTED]
http://www.owls.lib.wi.us
_




dhcp server config question

2001-03-19 Thread Rob Zietlow
I am trying to set up a DHCP server for my home network to run off of my
eth1 interface while my eth0 interface receives a dhcp address from my ISP
on my DSL. I get the following message about my eth0 interface


Milhouse:/home/zietlow# /etc/init.d/dhcp start
/etc/init.d/dhcp: [: =: unary operator expected
Internet Software Consortium DHCP Server 2.0pl4
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.

Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html

Listening on LPF/eth1/00:a0:cc:e6:2d:3b/192.168.0.0
Sending on   LPF/eth1/00:a0:cc:e6:2d:3b/192.168.0.0
No subnet declaration for eth0 (172.30.12.157).
Please write a subnet declaration in your dhcpd.conf file for the
network segment to which interface eth0 is attached.
exiting.
Milhouse:/home/zietlow#


Here is my dhcp.conf file
# dhcpd.conf
#

# option definitions common to all supported networks...
option domain-name the-rob.com;

option subnet-mask 255.255.255.0;
default-lease-time 6000;
max-lease-time 72000;

subnet 192.168.0.0 netmask 255.255.255.0 {
  range  192.168.0.56 192.168.0.234;
  option broadcast-address 192.168.0.255;
}
/etc/dhcpd.conf (END)


Any suggestions on what this delaration statement that needs to be put into
the dhcp.conf file is?

TIA
Rob