From owner-freebsd-questions Thu Jan 22 18:06:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA14137 for questions-outgoing; Thu, 22 Jan 1998 18:06:11 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA14123 for ; Thu, 22 Jan 1998 18:06:01 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id BAA21362; Fri, 23 Jan 1998 01:57:14 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id CAA10888; Fri, 23 Jan 1998 02:57:14 +0100 (MET) Message-ID: <19980123025713.00521@follo.net> Date: Fri, 23 Jan 1998 02:57:13 +0100 From: Eivind Eklund To: Joe Morgan Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Auth and Time Sync Servers. References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88e In-Reply-To: ; from Joe Morgan on Thu, Jan 22, 1998 at 07:55:27PM -0500 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk On Thu, Jan 22, 1998 at 07:55:27PM -0500, Joe Morgan wrote: > ** High Priority ** > > I hope someone can help I am probably just lost in terminology. > I have need to run FreeBSD as a time-sync server and as a authorization > server can any one help me. I am not new to unix but green as grass to > FreeBSD. For the time server part, you'll just have to run xntpd - do a 'man xntpd' and then set the appropriate flags in /etc/rc.conf. I'm using the following config file for my NTP server: # Change xxx.xxx.xxx.xxx to the IP address of the NTP host you want to # synchronize from, preferably one that has a low 'stratum' (will be # shown when you do ntptrace) and is close to you netwise. server xxx.xxx.xxx.xxx driftfile /var/run/ntp.drift I've put the above file with an appropriate IP address in /etc/ntp.conf, and set the appropriate part of rc.conf as follows: ntpdate_enable="NO" # Run the ntpdate to sync time (or NO). ntpdate_flags="" # Flags to ntpdate (if enabled). xntpd_enable="YES" # Run xntpd Network Time Protocol (or NO). xntpd_flags="" # Flags to xntpd (if enabled). Be aware that xntpd takes quite a while to connect - often several minutes. As for the authentication server, I don't know what kind of authorization you want to do, so I can't help you there. Eivind.