From owner-freebsd-questions@FreeBSD.ORG Tue Oct 13 15:54:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CB50106566B for ; Tue, 13 Oct 2009 15:54:57 +0000 (UTC) (envelope-from caramba696@googlemail.com) Received: from mail-yx0-f184.google.com (mail-yx0-f184.google.com [209.85.210.184]) by mx1.freebsd.org (Postfix) with ESMTP id 1636F8FC08 for ; Tue, 13 Oct 2009 15:54:56 +0000 (UTC) Received: by yxe14 with SMTP id 14so21280740yxe.7 for ; Tue, 13 Oct 2009 08:54:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=p1QqJrKDcasI6nLyR2oe5FczyuTQvkilGOhtudXuI1w=; b=BZnDWo0KubyQEFTMl2ciEu3D4kZW8YU7tcYxEPT57NbVlRc77POKDWM6ssdbKWGRM4 Rtr74P+gSMEDylnpF1lZqBJfOGNpyTKmT7pVA1ry314U1zCtprNPfHL/yq10YyZB6b7C fvniCFVMWyVJ0ED+ci5tQFoDkzjjthtYEEwRs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=w1KHis1o9Is/yVt+dOs/Y1DofkKeHCgVLB9S9jtXiFlfBDcrOpqJan8sCyVbRuAXDf CQDyzNhTPRxNW7VhV1U7mmlsQA69yFLj23V6iVNVNOkarWZy6OanzpJqcoNF9cG9UTwQ GmcGdoxjK4TzggRCY9xsiHbJ6OJYlhmu/zrHE= MIME-Version: 1.0 Received: by 10.90.58.2 with SMTP id g2mr4422663aga.73.1255449296424; Tue, 13 Oct 2009 08:54:56 -0700 (PDT) In-Reply-To: <2345d18f0910130813j6a2bbde0sec59647f44d43585@mail.gmail.com> References: <2345d18f0910130813j6a2bbde0sec59647f44d43585@mail.gmail.com> Date: Tue, 13 Oct 2009 17:54:56 +0200 Message-ID: <2345d18f0910130854l363f157eob42e3253c7dad202@mail.gmail.com> From: Jacques Henry To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: NTP Client synchronization with a Windows 2003/2008 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Oct 2009 15:54:57 -0000 Hello, I am using a System based on FreeBSD 6.3. On this System an automatically generated ntpd.conf file is generated in order to synchronize the System clock with a NTP Server. I want to use a Windows 2003 or 2008 Server to act as the NTP Server. On the Windows System the NTP Server (Windows Time Service) is *correctly* running. The thing is that even if there are NTP traffic between the client and the Server (NTP Client and Server IP packet), My FreeBSD is not synchronizing at all: freebsd-client>ntpq -p 127.0.0.1 remote refid st t when poll reach delay offset jitter ======================================================= NTP_server 192.168.10.6 2 u 103 1024 1 1.037 -587367 0.002 As you can see the offset is huge and never decreases as in a normal way... My ntpd.conf file looks like: ----------- # File is automatically generated # Do not edit tinker panic 1 tinker step 1 # ntp servers list server 172.30.1.5 # files informations driftfile /etc/ntp.drift # restriction informations restrict default ignore # do not allow request by default restrict 127.0.0.1 # allow localhost for debugging restrict 172.30.1.5 nomodify ------------ my ntp.drift file ------------ -101.101 ------------ I know that maybe the Microsoft NTP/SNTP implementation is not RFC-compliant, but is there a way to configure my NTP client in a more "compatible" (less strict) way to adjust its time with a Windows Server? Thanks