From owner-freebsd-questions Tue Apr 11 14:19:26 2000 Delivered-To: freebsd-questions@freebsd.org Received: from wcug.wwu.edu (sloth.wcug.wwu.edu [140.160.164.200]) by hub.freebsd.org (Postfix) with SMTP id 36DB237BBA8 for ; Tue, 11 Apr 2000 14:19:23 -0700 (PDT) (envelope-from doc@wcug.wwu.edu) Received: (qmail 6323 invoked by uid 1074); 11 Apr 2000 21:19:21 -0000 Date: Tue, 11 Apr 2000 14:19:21 -0700 (PDT) From: David Daugherty X-Sender: doc@sloth To: stephen Cc: free BSD Subject: Re: assign a static dhcp ip In-Reply-To: <000a01bfa3f9$ab6d1460$0202a8c0@neosphere.yi.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 11 Apr 2000, stephen wrote: > how do i assign an ip to a puter dialing into my system ??? In your file /usr/local/etc/dhcpd.conf your subnet block should look like: subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.245 192.168.1.250; #range 192.168.1.245 192.168.1.245; use this line to only use 1 IP default-lease-time 86400; #24 hours by default max-lease-time 259200; #three day lease time option subnet-mask 255.255.255.0; option broadcast-address 192.168.1.255; option routers 192.168.1.1; } this is assuming you have dhcp installed and running. David Software Eng. - NetManage Work email: david.daugherty@netmanage.com Home email: doc@wcug.wwu.edu ICQ 21106703 Washington State Resident To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message