From owner-freebsd-current@FreeBSD.ORG Sat Aug 20 01:14:18 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 5E91816A41F for ; Sat, 20 Aug 2005 01:14:18 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [204.127.198.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id E89F543D45 for ; Sat, 20 Aug 2005 01:14:17 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from c-66-30-115-133.hsd1.ma.comcast.net ([66.30.115.133]) by comcast.net (rwcrmhc12) with ESMTP id <2005082001141301400qe5cbe>; Sat, 20 Aug 2005 01:14:17 +0000 Received: from c-66-30-115-133.hsd1.ma.comcast.net (localhost.127.in-addr.arpa [127.0.0.1]) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1) with ESMTP id j7K1E9BP014610 for ; Fri, 19 Aug 2005 21:14:10 -0400 (EDT) (envelope-from rodrigc@c-66-30-115-133.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-66-30-115-133.hsd1.ma.comcast.net (8.13.4/8.13.1/Submit) id j7K1E4ew014609 for freebsd-current@freebsd.org; Fri, 19 Aug 2005 21:14:04 -0400 (EDT) (envelope-from rodrigc) Date: Fri, 19 Aug 2005 21:14:04 -0400 From: Craig Rodrigues To: freebsd-current@freebsd.org Message-ID: <20050820011404.GA14575@crodrigues.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline User-Agent: Mutt/1.5.9i Subject: 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 01:14:18 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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", =========================================== -- Craig Rodrigues rodrigc@crodrigues.org --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ntpservers_verify.sh.txt" #!/bin/sh MENUS=/usr/src/usr.sbin/sysinstall/menus.c NTP_LIST="$(cat $MENUS | grep ntpdate_flags= | sed -e s'/\"ntpdate_enable=YES,ntpdate_flags=//g' | sed -e 's/\".*//g')" echo "Could not find following NTP servers in DNS:" echo "===========================================" for NTP_SERVER in $NTP_LIST do host $NTP_SERVER > /dev/null if [ $? -ne 0 ] then grep $NTP_SERVER $MENUS | grep -v ntpdate fi done echo "===========================================" --0F1p//8PRICkK4MW--