<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic xntpd in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963820#M118979</link>
    <description>Hello.  I am trying to get xntpd working on an L2000 (hp-ux 11.0)&lt;BR /&gt;&lt;BR /&gt;here is my /etc/ntp.conf :&lt;BR /&gt;&lt;BR /&gt;server tock.usnogps.navy.mil   &lt;BR /&gt;version 2 prefer&lt;BR /&gt;broadcast 201.201.2.255 version 2&lt;BR /&gt;broadcastclient no&lt;BR /&gt;broadcast 201.201.2. version 3&lt;BR /&gt;&lt;BR /&gt;When I execute /sbin/init.d/xntpd start I get an error /sbin/init.d/xntpd[36]: ROUTE_COUNT:: not found.&lt;BR /&gt;1 May 12:11:52 ntpdate[20962]: step time server 204.34.198.41 offset -0.000150 sec .&lt;BR /&gt;&lt;BR /&gt;xntpd daemon doesn't appear in ps -eaf.  &lt;BR /&gt;&lt;BR /&gt;/etc/rc.config.d/netconf shows this :&lt;BR /&gt;ROUTE_DESTINATION[0]=default&lt;BR /&gt;ROUTE_MASK[0]=""&lt;BR /&gt;ROUTE_GATEWAY[0]=201.201.2.2&lt;BR /&gt;ROUTE_COUNT[0]=1&lt;BR /&gt;&lt;BR /&gt;I can't start this server from sam either.  Basically, what I need to do is have the hp boxen sync with the mil. time server and broadcast to the internal network (201.201.2.0/24).  Thank you for any insight to my problems.&lt;BR /&gt;&lt;BR /&gt;Matthew Bettinger&lt;BR /&gt;Champion Elevators, Inc.&lt;BR /&gt;Houston, Texas 77061&lt;BR /&gt;713.640.8500</description>
    <pubDate>Thu, 01 May 2003 16:18:25 GMT</pubDate>
    <dc:creator>matthew bettinger</dc:creator>
    <dc:date>2003-05-01T16:18:25Z</dc:date>
    <item>
      <title>xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963820#M118979</link>
      <description>Hello.  I am trying to get xntpd working on an L2000 (hp-ux 11.0)&lt;BR /&gt;&lt;BR /&gt;here is my /etc/ntp.conf :&lt;BR /&gt;&lt;BR /&gt;server tock.usnogps.navy.mil   &lt;BR /&gt;version 2 prefer&lt;BR /&gt;broadcast 201.201.2.255 version 2&lt;BR /&gt;broadcastclient no&lt;BR /&gt;broadcast 201.201.2. version 3&lt;BR /&gt;&lt;BR /&gt;When I execute /sbin/init.d/xntpd start I get an error /sbin/init.d/xntpd[36]: ROUTE_COUNT:: not found.&lt;BR /&gt;1 May 12:11:52 ntpdate[20962]: step time server 204.34.198.41 offset -0.000150 sec .&lt;BR /&gt;&lt;BR /&gt;xntpd daemon doesn't appear in ps -eaf.  &lt;BR /&gt;&lt;BR /&gt;/etc/rc.config.d/netconf shows this :&lt;BR /&gt;ROUTE_DESTINATION[0]=default&lt;BR /&gt;ROUTE_MASK[0]=""&lt;BR /&gt;ROUTE_GATEWAY[0]=201.201.2.2&lt;BR /&gt;ROUTE_COUNT[0]=1&lt;BR /&gt;&lt;BR /&gt;I can't start this server from sam either.  Basically, what I need to do is have the hp boxen sync with the mil. time server and broadcast to the internal network (201.201.2.0/24).  Thank you for any insight to my problems.&lt;BR /&gt;&lt;BR /&gt;Matthew Bettinger&lt;BR /&gt;Champion Elevators, Inc.&lt;BR /&gt;Houston, Texas 77061&lt;BR /&gt;713.640.8500</description>
      <pubDate>Thu, 01 May 2003 16:18:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963820#M118979</guid>
      <dc:creator>matthew bettinger</dc:creator>
      <dc:date>2003-05-01T16:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963821#M118980</link>
      <description>Verify your configuration with this procedure which uses NTP within your intranet.&lt;BR /&gt;&lt;BR /&gt;NTP Time server &lt;BR /&gt;=========== &lt;BR /&gt;# cd /etc/ &lt;BR /&gt;# /sbin/init.d/xntp stop &lt;BR /&gt;# vi ntp.conf &lt;BR /&gt;server 127.127.1.1 minpoll 3 maxpoll 4 prefer &lt;BR /&gt;fudge 127.127.1.1 stratum 10 &lt;BR /&gt;broadcast ip &lt;X.X.X.255&gt; &lt;BR /&gt;&lt;BR /&gt;# /sbin/init.d/xntp start &lt;BR /&gt;&lt;BR /&gt;NTP Client &lt;BR /&gt;====== &lt;BR /&gt;# cd /etc/rc.config.d &lt;BR /&gt;# /sbin/init.d/xntp stop &lt;BR /&gt;# vi netdaemons &lt;BR /&gt;&lt;BR /&gt;export NTPDATE_SERVER=node name &lt;BR /&gt;export XNTPD=1 &lt;BR /&gt;&lt;BR /&gt;# ntpdate &lt;NTP server=""&gt; &lt;BR /&gt;# /sbin/init.d/xntp start &lt;BR /&gt;&lt;BR /&gt;Wait for about 5-8 min, run the follwoing to check the status: &lt;BR /&gt;# ntpq -p &lt;BR /&gt;chk for output of "reftime" it should not be zero if the servers are in sync. &lt;BR /&gt;&lt;/NTP&gt;&lt;/X.X.X.255&gt;</description>
      <pubDate>Thu, 01 May 2003 19:54:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963821#M118980</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-05-01T19:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963822#M118981</link>
      <description>Followed directions.  ntpq -p displays :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#ntpq -p &lt;BR /&gt; ntpq: read: Can't assign requested address&lt;BR /&gt;&lt;BR /&gt;Matthew Bettinger&lt;BR /&gt;Champion Elevators,Inc.&lt;BR /&gt;Houston, Texas 77061&lt;BR /&gt;713.640.8500&lt;BR /&gt;</description>
      <pubDate>Thu, 01 May 2003 20:23:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963822#M118981</guid>
      <dc:creator>matthew bettinger</dc:creator>
      <dc:date>2003-05-01T20:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963823#M118982</link>
      <description>edit your &lt;BR /&gt;&lt;BR /&gt;/etc/rc.config.d/netdaemons file&lt;BR /&gt;&lt;BR /&gt;there is 3 variables&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;export NTPDATE_SERVER="firewall.server.com"&lt;BR /&gt;export XNTPD=1&lt;BR /&gt;export XNTPD_ARGS=" -c /etc/ntp.conf"&lt;BR /&gt;&lt;BR /&gt;then in your /etc/ntp.config file&lt;BR /&gt;&lt;BR /&gt;just 3 servers&lt;BR /&gt;&lt;BR /&gt;server ipadress&lt;BR /&gt;server ipadress&lt;BR /&gt;server ipadress&lt;BR /&gt;&lt;BR /&gt;driftfile /etc/ntp.drift&lt;BR /&gt;&lt;BR /&gt;in the /etc/ntp.drift file&lt;BR /&gt;&lt;BR /&gt;put one line&lt;BR /&gt;5.613 0&lt;BR /&gt;&lt;BR /&gt;then start the baby&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/xntpd start&lt;BR /&gt;&lt;BR /&gt;wowla&lt;BR /&gt;&lt;BR /&gt;ntpq -p&lt;BR /&gt;&lt;BR /&gt;peace&lt;BR /&gt;Donny&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 May 2003 22:15:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963823#M118982</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2003-05-01T22:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963824#M118983</link>
      <description>Sounds like your port is block.  'XNTPD' uses udp 123, while ntpdate used tcp 123.&lt;BR /&gt;&lt;BR /&gt;Is your NTP server within your local lan or a NIST time server for instance?&lt;BR /&gt;&lt;BR /&gt;check your ports with:&lt;BR /&gt;&lt;BR /&gt;netstat -an&lt;BR /&gt;&lt;BR /&gt;lsof -i udp:123&lt;BR /&gt;lsof -i tcp:123</description>
      <pubDate>Fri, 02 May 2003 01:31:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963824#M118983</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-05-02T01:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963825#M118984</link>
      <description>Sounds like your port is block.  'XNTPD' uses udp 123, while ntpdate used tcp 123.&lt;BR /&gt;&lt;BR /&gt;check your ports with:&lt;BR /&gt;&lt;BR /&gt;netstat -an&lt;BR /&gt;&lt;BR /&gt;lsof -i udp:123&lt;BR /&gt;lsof -i tcp:123&lt;BR /&gt;&lt;BR /&gt;Is your NTP server within your local lan or a NIST time server for instance?&lt;BR /&gt;&lt;BR /&gt;Also, check your loopback line in /etc/hosts.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 May 2003 01:32:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963825#M118984</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-05-02T01:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963826#M118985</link>
      <description>I would recommend using a different ntp server, preferably a stratum 2 server, and one that is closer to you.&lt;BR /&gt;&lt;BR /&gt;If you don't have one on your network, then look at &lt;BR /&gt;&lt;A href="http://www.eecis.udel.edu/~mills/ntp/clock2a.html" target="_blank"&gt;http://www.eecis.udel.edu/~mills/ntp/clock2a.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;for a list of public ntp servers and find one that's not too far from you (in terms of latency and hops; traceroute and ping the host to determine this)&lt;BR /&gt;&lt;BR /&gt;Often times your ISP or upstream provider will have n NTP server you can sync to.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Also, simplify your ntp.conf file:&lt;BR /&gt;&lt;BR /&gt;server some.host.com&lt;BR /&gt;driftfile /some/ntp.driftfile&lt;BR /&gt;&lt;BR /&gt;should be enough to get you synced up.</description>
      <pubDate>Fri, 02 May 2003 03:14:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963826#M118985</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-05-02T03:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: xntpd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963827#M118986</link>
      <description>Thank you all for the help.  We got it now.  Cost Accounting department is going to like this.  Time clocks and labor scheduled to jobs will be all synced up.  Thanks a million.&lt;BR /&gt;&lt;BR /&gt;Matthew Bettinger&lt;BR /&gt;Champion Elevators, Inc.&lt;BR /&gt;Houston, Texas 77061&lt;BR /&gt;713.640.8500</description>
      <pubDate>Fri, 02 May 2003 12:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/xntpd/m-p/2963827#M118986</guid>
      <dc:creator>matthew bettinger</dc:creator>
      <dc:date>2003-05-02T12:44:57Z</dc:date>
    </item>
  </channel>
</rss>

