From owner-freebsd-questions@FreeBSD.ORG Thu Jun 26 12:27:05 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D03B437B401 for ; Thu, 26 Jun 2003 12:27:05 -0700 (PDT) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id E412F44008 for ; Thu, 26 Jun 2003 12:27:04 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([141.149.47.46]) by out005.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030626192704.YYPB20032.out005.verizon.net@mac.com>; Thu, 26 Jun 2003 14:27:04 -0500 Message-ID: <3EFB4906.1060407@mac.com> Date: Thu, 26 Jun 2003 15:27:02 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030612 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Xpression References: <006201c33c0e$b7aaf930$0501a8c0@bloodlust> In-Reply-To: <006201c33c0e$b7aaf930$0501a8c0@bloodlust> X-Enigmail-Version: 0.76.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [141.149.47.46] at Thu, 26 Jun 2003 14:27:04 -0500 cc: FreeBSD-questions Subject: Re: Real time??? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2003 19:27:06 -0000 Xpression wrote: > Hi again...another problem is burning up mi brain, all my servers > have the time updated, the router too, now when I send a mail, send-time is > very different of the real-time, for example, now in my country 2:12 p.m. by > my workstation (my servers 2:10 / 2:10 p.m.)...any idea or somebody with the > same trouble??? You want to enable the Network Time Protocol; see "man ntpd". You can do so via /stand/sysinstall or enabling NTP in /etc/rc.conf: 4-sec% grep ntp /etc/defaults/rc.conf ntpdate_enable="NO" # Run ntpdate to sync time on boot (or NO). ntpdate_program="/usr/sbin/ntpdate" # path to ntpdate, if you want a different one. ntpdate_flags="-b" # Flags to ntpdate (if enabled). xntpd_enable="NO" # Run ntpd Network Time Protocol (or NO). xntpd_program="/usr/sbin/ntpd" # path to ntpd, if you want a different one. xntpd_flags="-p /var/run/ntpd.pid" # Flags to ntpd (if enabled). -Chuck