From owner-freebsd-current@FreeBSD.ORG Sat Aug 20 11:13:35 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E82E716A41F for ; Sat, 20 Aug 2005 11:13:34 +0000 (GMT) (envelope-from fli+freebsd-current@shapeshifter.se) Received: from mx1.h3q.net (manticore.shapeshifter.se [212.37.5.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6797B43D45 for ; Sat, 20 Aug 2005 11:13:33 +0000 (GMT) (envelope-from fli+freebsd-current@shapeshifter.se) Received: from localhost (localhost [127.0.0.1]) by mx1.h3q.net (Postfix) with ESMTP id 6077D1A73B; Sat, 20 Aug 2005 13:13:31 +0200 (CEST) Received: from mx1.h3q.net ([127.0.0.1]) by localhost (manticore.shapeshifter.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 52991-18; Sat, 20 Aug 2005 13:13:29 +0200 (CEST) Received: from [192.168.0.100] (h4n2fls31o270.telia.com [217.208.199.4]) by mx1.h3q.net (Postfix) with ESMTP id C77861A717; Sat, 20 Aug 2005 13:13:29 +0200 (CEST) Message-ID: <43071059.4080506@shapeshifter.se> Date: Sat, 20 Aug 2005 13:13:29 +0200 From: Fredrik Lindberg User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050816) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Craig Rodrigues References: <20050820011404.GA14575@crodrigues.org> In-Reply-To: <20050820011404.GA14575@crodrigues.org> Content-Type: multipart/mixed; boundary="------------050906030807030003080803" X-Virus-Scanned: at mail.hamnpolare.net Cc: freebsd-current@freebsd.org Subject: Re: Broken NTP servers in sysinstall X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Aug 2005 11:13:35 -0000 This is a multi-part message in MIME format. --------------050906030807030003080803 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Craig Rodrigues wrote: > Hi, > > I was looking at: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=75479 > > I wrote the attached script to do DNS lookups on > all the ntp servers listed in sysinstall, > and found the following ones could not be resolved. > > Can anyone suggest replacements? > > > Could not find following NTP servers in DNS: > =========================================== > { "Australia #5", "time.esec.com.au", > { "Indonesia", "ntp.incaf.net", > { "Mexico", "ntp2a.audiotel.com.mx", > { "Mexico #2", "ntp2b.audiotel.com.mx", > { "Mexico #3", "ntp2c.audiotel.com.mx", > { "Nigeria", "ntp.supernet300.com", > { "Portugal", "bug.fe.up.pt", > { "Russia #2", "sign.chg.ru", > { "Singapore", "ntp.shim.org", > { "Slovenia", "calvus.rzs-hm.si", > { "United Kingdom #9", "tick.tanac.net", > { "U.S. AR", "sushi.compsci.lyon.edu", > { "U.S. NY", "clock.linuxshell.net", > { "U.S. NY #2", "ntp.ctr.columbia.edu", > { "U.S. NY #4", "ntp1.mpis.net", > { "U.S. NY #5", "ntp2.mpis.net", > { "U.S. OK", "constellation.ecn.uoknor.edu", > { "U.S. TX", "ntp.cox.smu.edu", > { "U.S. WA", "clock.tricity.wsu.edu", > { "Venezuela", "ntp.linux.org.ve", > =========================================== > > While your at it, could you a few swedish NTP servers, there is only one in the list. ntp1.sp.se - SP Swedish National Testing and Research Institute (http://www.sp.se/metrology/timefreq/eng/tandf.htm) ntp2.sp.se - (same as above) ntp.kth.se - Royal Institute of Technology (http://www.kth.se/eng/index.html) They are all public and well established. Fredrik Lindberg --------------050906030807030003080803 Content-Type: text/plain; name="sysinstall-ntp-menus.c-20050820.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sysinstall-ntp-menus.c-20050820.patch" Index: menus.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/menus.c,v retrieving revision 1.410 diff -u -r1.410 menus.c --- menus.c 16 Jun 2005 18:16:13 -0000 1.410 +++ menus.c 20 Aug 2005 11:09:54 -0000 @@ -1702,7 +1702,16 @@ { "Russia #2", "sign.chg.ru", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=YES,ntpdate_flags=sign.chg.ru" }, - { "Sweden", "ntp.lth.se", + { "Sweden", "ntp1.sp.se", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=YES,ntpdate_flags=ntp1.sp.se" }, + { "Sweden #2", "ntp2.sp.se", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=YES,ntpdate_flags=ntp2.sp.se" }, + { "Sweden #3", "ntp.kth.se", + dmenuVarsCheck, dmenuSetVariables, NULL, + "ntpdate_enable=YES,ntpdate_flags=ntp.kth.se" }, + { "Sweden #4", "ntp.lth.se", dmenuVarsCheck, dmenuSetVariables, NULL, "ntpdate_enable=YES,ntpdate_flags=ntp.lth.se" }, { "Singapore", "ntp.shim.org", --------------050906030807030003080803--