NTP setup

Hi,
my customer has following NTP setup:
On C6500:
ntp clock-period 17180036
ntp source Vlan1
ntp master 2
ntp update-calendar
ntp peer 195.146.147.3 prefer
on ASA:
ntp server 217.118.109.178 source Outside prefer
I made same show commands to view current status:
C6500:
Central-C6506-E#show ntp status
Clock is synchronized, stratum 2, reference is 127.127.7.1
nominal freq is 250.0000 Hz, actual freq is 249.9975 Hz, precision is 2**18
reference time is CDECBB11.66582776 (16:47:45.399 GMT Wed Jun 24 2009)
clock offset is 0.0000 msec, root delay is 0.00 msec
root dispersion is 0.02 msec, peer dispersion is 0.02 msec
Central-C6506-E#show ntp associations
address ref clock st when poll reach delay offset disp
*~127.127.7.1 .LOCL. 1 55 64 377 0.0 0.00 0.0
~195.146.147.3 0.0.0.0 16 - 1024 0 0.0 0.00 16000.
* master (synced), # master (unsynced), + selected, - candidate, ~ configured
Central-C6506-E#show clock detail
16:48:46.860 GMT Wed Jun 24 2009
Time source is NTP
Summer time starts 02:00:00 GMT Sun Mar 29 2009
Summer time ends 03:00:00 GMT Sun Oct 25 2009
on ASA:
ASA# show ntp status
Clock is unsynchronized, stratum 16, no reference clock
nominal freq is 99.9984 Hz, actual freq is 100.0188 Hz, precision is 2**6
reference time is cd7dafda.e4f5dbf6 (11:18:18.894 CEDT Wed Apr 1 2009)
clock offset is -2.3843 msec, root delay is 0.50 msec
root dispersion is 52.11 msec, peer dispersion is 22.64 msec
ASA# show ntp associations
address ref clock st when poll reach delay offset disp
~217.118.109.178 194.160.23.2 2 84d 64 0 -0.0 -2.38 16000.
* master (synced), # master (unsynced), + selected, - candidate, ~ configured
ASA# show clock detail
16:46:11.870 CEDT Wed Jun 24 2009
Time source is NTP
Summer time starts 02:00:00 CEST Sun Mar 29 2009
Summer time ends 03:00:00 CEDT Sun Oct 25 2009
Then i made clock comparison:
Real time was: 16:37:30
On C6500:
Central-C6506-E#show clock
16:41:46.716 GMT Wed Jun 24 2009
On ASA:
ASA# show clock
16:38:36.094 CEDT Wed Jun 24 2009
So the time on ASA is shifted front to one minute and on C6500 four minutes.
My questions:
Whats are reasons that the time is shifted?
How to setup time/change actual setting that the time will be right on this machines?
Many thanks.

Because it is a customer system and i can't to change actual philosophy.
I want to synchronize it with external server but if i am right c6500 is always synchronized with himself at first.
C6506-E#show ntp associations
address ref clock st when poll reach delay offset disp
*~127.127.7.1 .LOCL. 1 55 64 377 0.0 0.00 0.0
~195.146.147.3 0.0.0.0 16 - 1024 0 0.0 0.00 16000.
* master (synced), # master (unsynced), + selected, - candidate, ~ configured
So how to setup c6500 that will be synchronized from external internet server and at the same time provide clock synchronization for all other devices on network?
Thanks.

Similar Messages

  • DMP failure on NTP setup

    We've tried to configure our DMP 4400G v 5.2 with NTP against a local server via IP-address. When we hit Apply, we get the message "Contacting ...".
    We cannot login in from any other computer and it never stops. The only way to get the control back is by restarting the DMP. Meanwhile, the DMP continues to show its videos as normal. We've tried using the NTP-server from our laptops without any problem. The network is isolated from the internet and has no DNS.
    /Björn

    /Björn,
    The DMS Suite 5.2 requires DNS.  The issue you are most likely experiencing is the
    DMP is failing DNS requests.  If you snoop the wire (wireshark) of the DMP, you will
    probably see the DMP initiating a Reverse DNS lookup.
    Try adding a Freeware DNS Server in your setup to just test.. this should
    resolve the issue.
    Cheers!
    T.
    DNS Server Now Necessary
    5.2 Requires a present DNS server.
    DMS 5.2 exchanges certificates between Show and Share and Digital Media Manager.
    DNS was recommended, but not necessary (Host file could be manually configured with IP)
    Not possible with 5.2. Certificates require FQDN
    Example DNS Servers: Dedicated server “may not” be required.
    BIND
    PowerDNS
    Simple DNS Plus

  • Where is the NTP setup in the web GUI on SPA 112 ?

    It used to be in the System tab, and used the time zone and DST settings in the Regional Tab.
    I bought this device recently and I cant find in the GUI the NTP settings
    Here the informations:
    and I have no tab under "Network":
    and I am 9 hours away from PST.
    So how can I fix it ?
    thx

    Yes I'm logged as admin, it is the first thing I do
    and no I don't have this choice displayed.
    In fact, first of all I'll upgrade the firmware, but before I have to backup the configuration because it is customized.
    This thread is a duplicate of this other one:
    https://supportforums.cisco.com/message/4102835#4102835
    That unfortunately, I can't delete.
    So please don't reply anymore here.

  • (solved) Setup NTP syncronization

    I want to keep my system's date and time synchronized with an ntp server...
    Somewhere on the net (sorry, i cannot provide the source, sicne i cannot remember where did i copy this from) i found this:
    On FreeBSD you can use ntptimeset to synchronize your clock. This short article will explain how to configure ntptimeset and show how to set up a cron job to automatically adjust your time. ntptimeset is installed by default on FreeBSD but here are the steps to configure it.
    1. First we have to create the configuration file. In /etc create a file called ntp.conf.  This is the file that you define what servers will be used to sync your time
    [root]# cd /etc
    [root]# vi ntp.conf
    The file should look like this
    server 192.5.41.41 prefer
    server 128.4.1.2
    server 138.39.7.20
    server 128.4.1.1
    server 128.227.205.3
    driftfile /var/db/ntp.drift
    2. Setup a cron job to run the command each day
    [root]# contab -e
    This will open up your cron editor in vi. Add a line like this:
    10       18      *       *       *      /usr/sbin/ntptimeset -s
    This will run ntptimeset at 6:10 pm every day. The -s parameter tells ntptimeset to go ahead and set the time
    Is this the correct way to do it? Do you have any other way (maybe better or more effective) to do it?
    Thanks!
    Last edited by Xi0N (2008-12-15 05:58:04)

    sploit wrote:
    Hrod beraht wrote:
    As mentioned, openntpd is much better/more effective/simpler/etc.
    Install openntpd to sync to time servers:
    Thank you so much for this, most easy ntp setup i've ever done
    openntpd is no longer supported for linux (this topic dates from 2008 when it was)
    It is not that hard to do a local NTP setup, here is my ntp file for reference. Nowadays you stick ntpd as a deamon in rc.conf and it starts on boot
    server 0.uk.pool.ntp.org iburst
    server 1.uk.pool.ntp.org iburst
    server 2.uk.pool.ntp.org iburst
    server 3.uk.pool.ntp.org iburst
    restrict default kod nomodify notrap nopeer noquery
    restrict -6 default kod nomodify notrap nopeer noquery
    restrict 127.0.0.1
    restrict -6 ::1
    driftfile /var/lib/ntp/ntp.drift
    logfile /var/log/ntp.log

  • NTP on UCS Mngr.

    Hello,
    I see a clock drift between the NTP server and the UCS manager (when NTP is properly configured ). How can I set off this drift and how can I ensure that such an instance doesn't happen again ?
    REgards,
    Naleendra

    on your  swith or rtr, be sure they have NTP setup
    then type
    sh ntp ass
    be sure to point to either a local GPs time source, ceisiem/SP soucre or a suitable stratum 1 source on the internet
    once first setup, it will take a few hours to synchronize, after that they will drift very little
    afte they are synb, check the later command to ensure that yu are in deed in sync with a proper time source.
    most people have all their end points to point  the AD serves. these in turn pint to the reference. time source
    time reference use this pyramid strcuture for stability and reduction in latency

  • NTP sync for Cisco routers through a VPN tunnel

    I have a 3002 tunnel to a 3015. Behind the 3002 is a Cisco router with NTP setup on it. No NTP traffic appears to be traversing the tunnel, there are no filters on the tunnel prevent NTP (123) traffic.
    Is there something in the 3015 that has to be set to allow NTP traffic to go through?
    NTP working on all other non-tunnelled connections.

    Make sure the 3002 is in NEM mode, and remember that the 3002 will only tunnel the directly-connected subnet's traffic. Unless that router has an interface in the 3002 private interface's subnet, and it is using that as the source address in its NTP requests, it won't work. Can you ping from that router to the NTP server across the tunnel?

  • Where do the UCS blades get their system time from?

    Hello,
    I'm curious how the system clock gets set on UCS blades?
    I have NTP setup in UCSM and expected the blades to set their time based on that during first boot at the very least.
    I recently associated a new service profile to a blade and installed ESXi5.  The VMware 60 grace license period showed the correct expiry date (04/07/2012) but as soon as I would connect with the vSphere client it would say grace period ended.  After digging a bit the blade had a date set for someday in 2010?  Anyone know why this would be the case and how I can set the blade system clock?
    -Brian

    Found a bug to track this issue CSCtj19497.  There's no commit date yet, but I'm going to get some pressure put on this one.
    I encourage you to open a quick TAC case and simply request to have this bug attached to your SR.  This will give more ammunition to get this resolved faster.
    Regards,
    Robert

  • Cisco 2700 Location Appliance

    Deployed and setup for the first time. (4404,2700 and WCS). All the device are communicating to each other.Snmp v1/2 setup at the Controller pointing to WCS. The time of the devices are the same with ntp setup. All with the latest version Software. My problem is I can't see the clients from the Location Appliance. It won't show in the Map.
    An assistant is greatly appreciated.

    Yes I did. After a few days posting my problem to the forum, I decided to open a tac case to cisco. They asked me to send some snapshots of the setting of my Location Appliance. Before I could reply with the settings there requesting, I able to resolve the issues. I was reading of how the Controller and Location Appliance communicate. Not only that time is very important for all Unified devices have to be syncronize, It was also the SNMP V3 needs to be properly configured or the SNMP v1/2 have to be set to 0.0.0.0 When I set my snmp ip to 0.0.0.0 then everything worked. Anyhow, thank you for the responce.

  • Timestamp sync across the EBS machines

    Oracle EBS R 12 is running on Oracle Linux 5x and it's two node installations. We would like synchronize the timestamp with out NTP (Netwrok Time Protocol) server to ensure that all the Oracle EBS machihes clock stays accurate across the machines.
    Is there any impact to Oracle EBS Instance, if we sync the EBS machines with NTP servers?
    What's the Oracle Linux -OS utility needs to be used to sync the date and timestamp with NTP mahcine?
    Customer is maintaing the NTP machine seperately to sync the date and timestamp across the machines.
    Please help

    but this link is searching in google. Because that's what you need, how to setup NTP on Linux.
    I have done that earlier before posting as we are getting multiple results. We are not sure about which RPM or Utility to be used for NTP on linux. If you can give me the correct details that would be appreciated. thankshttp://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch24_:_The_NTP_Server
    http://www.ghacks.net/2009/03/16/installing-and-configuring-ntp-on-linux/
    Also, refer to the Linux Admin manual -- Look for NTP setup.
    Thanks,
    Hussein

  • NTP server setup in DMZ

    Hi Team,
    We have Windows 2008 AD infrastructure with Single domain Single Forest & 30 remote AD sites with RODC in it.
    We are planning for NTP server setup on Windows 2008 server in DMZ......can someone help me with steps for setup.
    What is best practice for NTP architecture so that all DC will sync time from NTP & NTP sync time from external source.
    Please suggest.

    Hi,
    Would you please tell us that has the plan of your security team worked out?
    Because based on what I understand, domain members will synchronize time from Domain Controllers while DCs will synchronize time from PDC.
    Here is a thread below about the best practices of time synchronization in a domain:
    Time Sync best practices
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/043b1ebe-e7bc-40ca-91e0-174a6854808e/time-sync-best-practices?forum=winserverDS
    Best Regards,
    Amy

  • How to setup NTP service in server 2012 R2 to synch with an external NTP server

    Server 2012 R2 Std as DC
    I have looked at the blogs on setup and could not make sense of them. I did this easily on SBS2008 before I migrated to 2012 R2.
    What is the process to establish the DC server 2012 R2 as the time source.  Right now it is BIOS clock and I wish to move to NTP as the time source.
    Thanks for your help
    John Lenz

    Hi JohnLenz,
    You can use the following command line and refer the following KB:
    w32tm /config /syncfromflags:manual
    w32tm /config /manualpeerlist:<IP_or_FQDN_of_the_time_source>
    Note: please replace "<IP_or_FQDN_of_the_time_source>” with the IP address or FQDN of your NTP server.
     Net stop w32time
    Net start w32time
    The related KB:
    Synchronize the Time Server for the Domain Controller with an External Source
    http://technet.microsoft.com/en-us/library/cc784553(v=ws.10).aspx
    Configure the Time Source for the Forest
    http://technet.microsoft.com/zh-cn/library/cc794937(v=ws.10).aspx
    Configuring a time source for the forest
    http://technet.microsoft.com/en-us/library/cc784800(v=ws.10).aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • DCNM5.2 as NX1010 VSB: How to setup system time or NTP?

    Hello,
    We installed DCNM 5.2.2c Virtual Service Blade on a Nexus 1010. But we are not able to find how to setup time or NTP neither from GUI nor from the NX1010 CLI. Do we need to touch the virtual appliance for time settings?
    Steffen

    What is the best way to do that?
    Use ethernet.. performance of wireless is never as good as ethernet.
    What wifi channel need choose to?
    There is no such thing as the best channel..
    Leave everything auto.. and see if it gives you full download speed.
    Use 5ghz.. and keep everything up close to the TC for the best wireless speed.
    If you are far away it will drop back to 2.4ghz which is slower.
    Once you reach the internet speed nothing is going to help it go faster so you are worrying about nothing.

  • How to setup high availability and high precision Local NTP Service in Server2008R2?

    Hi guys,
    We have some servers on VMs, and we hope that the error between 2 server's clock MUST be smaller than 1 sec.
    For some reason, these servers can't access the internet. So, we suggest that we should setup some local NTP servers.
    For example, we want servers[10.10.10.1~10.10.10.6] to be the NTP server, and all clocks on servers[10.10.10.1~10.10.10.120] are synchronized automatically. How can we config NTP servers and clients?
    And when some NTP server's system clock changed suddenly(e.g. when some physical machine is down, and we move the VM onto a new one. The system clock may change.) How can we detected the change and fix the error?
    BTW, it says that "The W32Time service is not a full-featured NTP solution that meets time-sensitive application needs and is not supported by Microsoft as such." (http://technet.microsoft.com/en-us/library/cc773263(v=ws.10).aspx).
    Can we still use W32TIME? Because Non-microsoft software may cause a VERY LONG term examination in our company, and we prefer a microsoft solution.
    Sorry for the bad english.
    Kind regards,
    M.Sheng
    Alexander

    Hi sjmind,
    In domain environment, all computer clocks in an AD DS domain are synchronized with the time of an authoritative computer. Many factors can affect time synchronization on
    a network.
    An AD DS forest has a predetermined time synchronization hierarchy. The Windows Time service synchronizes time between computers within the hierarchy, with the most accurate
    reference clocks at the top. Therefore it is impossible to use multi computer as the authority of time source.
    You can refer the following KB to plan how to sync your domain computer time.
    Configuring the Windows Time service to use an external time source
    http://support.microsoft.com/kb/816042
    Configuring a time source for the forest
    http://technet.microsoft.com/en-us/library/cc784800(v=ws.10)
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Setup ntp keys

    I am having issues setting up authentication with ntp.
    I modified the ntp.conf file on the server to say:
    server "ip1 address" prefer
    server "ip2 address" key 2 (this server will check in with ip1 address and all clients will check in with ip2 address)
    enable auth monitor
    driftfile /var/ntp/ntp.drift
    statsdir /var/ntp/ntpstats/
    filegen peerstats file peerstats type day enable
    filegen loopstats file loopstats type day enable
    filegen clockstats file clockstats type day enable
    keys /etc/inet/ntp.keys
    trustedkey 1
    requestkey 4
    controlkey 6
    I created a ntp.keys file
    1 M abcdefgh
    etc....
    Client ntp.conf file:
    driftfile /var/ntp/ntp.drift
    statsdir /var/ntp/ntpstats/
    keys /etc/inet/ntp.keys
    server "ip2 address"
    I created a ntp.keys file (same as server's key file)
    1 M abcdefgh
    etc....
    How do I know if it is using the keys? I have tried to give it bad key#s and it will sometimes correct the time and sometimes not. It just doesn't seem like it's working correctly. What is the purpose of having an ntpdate line in your crontab?
    Any help would be appreciated it!! Thanks.

    Take authorizations for table entry in T425
    Then upload through SM30.

  • How to sync clock of Cisco ASA 5505 from NTP Server on internet

    Hi there!
    i've setup a site, with cisco ASA 5505. It has public ip also.
    i want to sync the clock of firewall from on ntp server on internet, or with internal domain controller that is inside LAN.
    The firewall has public IP also.
    how can i do this?
    Regards!

    Hello Lasandro,
    This should do it!
    http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/basic_hostname_pw.html#wp1236530
    Looking for some Networking Assistance? 
    Contact me directly at [email protected]
    I will fix your problem ASAP.
    Cheers,
    Julio Carvajal Segura
    http://laguiadelnetworking.com

Maybe you are looking for