RE: Starting DHCPD

2003-01-24 Thread Barry Byrne
Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: --script starts below--- case $1 in start) echo Starting DHCP Server /usr/sbin/dhcpd ;; stop) echo Stopping DHCP Server killall dhcpd ;; *) echo Usage: $0 {start|stop} exit 1 esac exit 0

RE: Starting DHCPD

2003-01-24 Thread Danny Horne
Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: Thanks Barry, I wonder though, if this is the default way of starting it, where did my original script go 8-( To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-questions in the body of the

Re: Starting DHCPD

2003-01-24 Thread Matthew Seaman
On Fri, Jan 24, 2003 at 10:42:26AM -, Danny Horne wrote: Danny: Create a script (/usr/local/etc/rc.d/dhcpd.sh something like this: Thanks Barry, I wonder though, if this is the default way of starting it, where did my original script go 8-( If you're using the net/isc-dhcp3 port,

Re: Starting DHCPD

2003-01-24 Thread Doug Reynolds
On Fri, 24 Jan 2003 10:10:41 - (GMT), Danny Horne wrote: Hi all, I'm making changes to my network which will require using my own DHCP server. It's all set up ready to go, but I can't find any way of getting it to start on boot up. There's nothing that I can find in /etc/defaults/rc.conf