[OSL | CCIE_Voice] CCX NTP syncrhinization ??

2011-02-02 Thread Roig Borrell, Francesc Xavier
Hi all,

I am trying synchronize CCX with NTP. In SystemCisco Unified Callmanger, NTP 
(PUB 10.10.210.10).
I think that the expected behavior should be that CCX gets the UTC from NTP and 
the timezone in W2003 acts as the offset.
However, if I run a simple script with

Set time=T[Now],

In order to get the time that scripts take into consideration for steps like 
Time of Day, it always shows the time of the Operating System

Is there anything wrong? How should be configured time synchronization for CCX ?

Thanks in advance!
Francesc







[cid:image001.jpg@01CBC311.703CBC40]
Francesc Xavier Roig Borrell
Network Senior Consultant
Integración de Sistemas y Tecnología
C/Santander, 49-51
Barcelona 08020
Tel. Fijo: (+34) 934965108 ext 64697
Tel. Móvil / Fax: (+34) 647 32 21 55 (24697) / (+34) 934965161
email: francesc.ro...@tecnocom.esmailto:francesc.ro...@tecnocom.es
http://www.tecnocom.eshttp://www.tecnocom.es/

Por favor, antes de imprimir este mensaje, asegúrate de que es necesario. 
Ayudemos a cuidar el medio ambiente
Este mensaje puede contener información confidencial o privilegiada. Si le ha 
llegado por error, rogamos no haga uso del mismo, avise al remitente y bórrelo. 
Consulte aviso legalhttp://www.tecnocom.es/Paginas/InformacionLegal.aspx
This message may contain confidential or privileged information. If it has been 
sent to you in error, please do not use it, notify the sender of the error and 
delete it. See legal 
noticehttp://www.tecnocom.es/sites/en/Paginas/InformacionLegal.aspx

inline: image001.jpg___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

2011-02-02 Thread Tanner Ezell
This is expected behavior. UCCX has no built in mechanisms for time zones
and will always use the system time. If you need your scripts to take into
consideration different time zones you will need to program that yourself
(which basically can come down to a few If statements and manually checking
the time). For instance:

Int hour = T[now].getHours() // I dont have a box in front of me but I
believe the function is called getHours
Int offset = -8

if ((hour + offset) = 7) // 7 am
   do something
else if ...

It's ugly but it works. Depending on your skill level and comfort with
programming you can devise more elegant ways of handling this but this
should be the easiest to implement.

On Wed, Feb 2, 2011 at 10:43 AM, Roig Borrell, Francesc Xavier 
francesc.ro...@tecnocom.es wrote:

  Hi all,



 I am trying synchronize CCX with NTP. In SystemCisco Unified Callmanger,
 NTP (PUB 10.10.210.10).

 I think that the expected behavior should be that CCX gets the UTC from NTP
 and the timezone in W2003 acts as the offset.

 However, if I run a simple script with



 Set time=T[Now],



 In order to get the time that scripts take into consideration for steps
 like Time of Day, it always shows the time of the Operating System



 Is there anything wrong? How should be configured time synchronization for
 CCX ?



 Thanks in advance!

 Francesc















 Francesc Xavier Roig Borrell

 Network Senior Consultant

 Integración de Sistemas y Tecnología

 C/Santander, 49-51

 Barcelona 08020

 Tel. Fijo: (+34) 934965108 ext 64697

 Tel. Móvil / Fax: (+34) 647 32 21 55 (24697) / (+34) 934965161

 email: francesc.ro...@tecnocom.es

 http://www.tecnocom.es



 *Por favor, antes de imprimir este mensaje, asegúrate de que es necesario.
 Ayudemos a cuidar el medio ambiente*

 *Este mensaje puede contener información confidencial o privilegiada. Si
 le ha llegado por error, rogamos no haga uso del mismo, avise al remitente y
 bórrelo. **Consulte **aviso 
 legalhttp://www.tecnocom.es/Paginas/InformacionLegal.aspx
 *
 *This message may contain confidential or privileged information. If it
 has been sent to you in error, please do not use it, notify the sender of
 the error and delete it. **See **legal 
 noticehttp://www.tecnocom.es/sites/en/Paginas/InformacionLegal.aspx
 *



 ___
 For more information regarding industry leading CCIE Lab training, please
 visit www.ipexpert.com


___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

2011-02-02 Thread Shrini


  
  
Hi Francesc,

Whatever you are doing is correct. It takes the system OS time.

-Shrini
  
On 2/2/2011 10:43 AM, Roig Borrell, Francesc Xavier wrote:

  
  
  
  
  
Hi all,

I am trying synchronize
CCX with NTP. In SystemCisco
Unified Callmanger, NTP (PUB 10.10.210.10). 
I think that the
expected behavior should
be that CCX gets the UTC from NTP and the timezone in W2003
acts as the offset.
However, if I run a
simple script with

Set time=T[Now], 

In order to get the time
that scripts take
into consideration for steps like Time of Day, it always
shows the time of the
Operating System

Is there anything wrong?
How should be configured
time synchronization for CCX ?

Thanks in advance!
Francesc








Francesc
Xavier Roig
Borrell
Network
Senior
Consultant
Integracin de
Sistemas y Tecnologa
C/Santander,
49-51
Barcelona 08020
Tel. Fijo:
(+34) 934965108 ext 64697
Tel. Mvil /
Fax: (+34) 647 32 21 55
(24697) / (+34) 934965161 
email:
francesc.ro...@tecnocom.es
http://www.tecnocom.es

Por
  favor, antes de imprimir este mensaje, asegrate de que es
  necesario. Ayudemos
  a cuidar el medio ambiente
Este mensaje puede contener informacin
  confidencial o
  privilegiada. Si le ha llegado por error, rogamos no haga
  uso del mismo, avise
  al remitente y brrelo. Consulte aviso legal
  This message may contain
confidential or privileged information. If
it has been sent to you in error, please do not use it,
notify the sender of
the error and delete it. See legal notice

  
  

___
For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com


  

___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

2011-02-02 Thread Roig Borrell, Francesc Xavier
Hi all,

Thanks for the answers.
So If in the exam we are asked  to synchronize HQ devices: phones, CCMs, 
HQ-GW,UC... with the PSTN (acting as NTP server), there is no choice and we 
will have the change the OS system for the CCX manually?

It is strange, isn't it? Because then which is the reason for NTP server entry 
in the UCCX menu: System  Cisco Unified CM Configuration  NTP?

Francesc


De: Shrini [mailto:linuxbos...@gmail.com]
Enviado el: miércoles, 02 de febrero de 2011 21:29
Para: Roig Borrell, Francesc Xavier
CC: ccie_voice@onlinestudylist.com
Asunto: Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

Hi Francesc,

Whatever you are doing is correct. It takes the system OS time.

-Shrini

On 2/2/2011 10:43 AM, Roig Borrell, Francesc Xavier wrote:
Hi all,

I am trying synchronize CCX with NTP. In SystemCisco Unified Callmanger, NTP 
(PUB 10.10.210.10).
I think that the expected behavior should be that CCX gets the UTC from NTP and 
the timezone in W2003 acts as the offset.
However, if I run a simple script with

Set time=T[Now],

In order to get the time that scripts take into consideration for steps like 
Time of Day, it always shows the time of the Operating System

Is there anything wrong? How should be configured time synchronization for CCX ?

Thanks in advance!
Francesc







[cid:image001.jpg@01CBC335.2357A2E0]
Francesc Xavier Roig Borrell
Network Senior Consultant
Integración de Sistemas y Tecnología
C/Santander, 49-51
Barcelona 08020
Tel. Fijo: (+34) 934965108 ext 64697
Tel. Móvil / Fax: (+34) 647 32 21 55 (24697) / (+34) 934965161
email: francesc.ro...@tecnocom.esmailto:francesc.ro...@tecnocom.es
http://www.tecnocom.eshttp://www.tecnocom.es/

Por favor, antes de imprimir este mensaje, asegúrate de que es necesario. 
Ayudemos a cuidar el medio ambiente
Este mensaje puede contener información confidencial o privilegiada. Si le ha 
llegado por error, rogamos no haga uso del mismo, avise al remitente y bórrelo. 
Consulte aviso legalhttp://www.tecnocom.es/Paginas/InformacionLegal.aspx
This message may contain confidential or privileged information. If it has been 
sent to you in error, please do not use it, notify the sender of the error and 
delete it. See legal 
noticehttp://www.tecnocom.es/sites/en/Paginas/InformacionLegal.aspx






___

For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.comhttp://www.ipexpert.com
inline: image001.jpg___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

2011-02-02 Thread ccieforme
All versions of 8.x have a drop down menu in the time of day step to pick a 
time zone.
-Original Message-
From: Roger Källberg roger.kallb...@cygate.se
Sender: ccie_voice-boun...@onlinestudylist.com
Date: Thu, 3 Feb 2011 01:46:58 
To: Tanner Ezelltanner.ez...@gmail.com; Roig Borrell, Francesc 
Xavierfrancesc.ro...@tecnocom.es
Cc: ccie_voice@onlinestudylist.comccie_voice@onlinestudylist.com
Subject: Re: [OSL | CCIE_Voice] CCX NTP syncrhinization ??

___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com

___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


[OSL | CCIE_Voice] CCX NTP

2010-04-09 Thread Angel Perez

Hi:

 

I've configured NTP (hq router) at CCX Cisco Unified CM Configuration page, but 
doing some tests with time of day script option show me that the script was 
taken the time from windows clock...

 

Is this correct? How can I verify that CCX takes the time from the NTP and that 
it is synch wit it?

 

Thanks

 

 
  
_
Windows Live Hotmail: Your friends can get your Facebook updates, right from 
Hotmail®.
http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_4:092009___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com


Re: [OSL | CCIE_Voice] CCX NTP

2010-04-09 Thread vccie2010
Try this ...
http://docs.google.com/viewer?a=vq=cache:OwhhDwCTWvUJ:www.ciscointernethome.net/application/pdf/paws/21003/NTP.pdf+setting+ntp+on+cisco+unityhl=engl=uspid=blsrcid=ADGEEShBypdSUSMrKB7TKj1CYAmkFmcjyAtpdPjeUGZ8uK-Ra5U5isoPjUfbD0WCUISmYqyAk520lxEcl1n3aQDe9MsMUzb6yQGyLsO7K8N-vhGCnnxi86Lw7hrjfK--RQvQpQI5PwnYsig=AHIEtbQlYWpEQBlE6qGVycOxLi3Y-9hUFw

On Fri, Apr 9, 2010 at 4:48 AM, Angel Perez gorr...@hotmail.com wrote:

 Hi:

 I've configured NTP (hq router) at CCX Cisco Unified CM Configuration page,
 but doing some tests with time of day script option show me that the script
 was taken the time from windows clock...

 Is this correct? How can I verify that CCX takes the time from the NTP and
 that it is synch wit it?

 Thanks



 --
 Windows Live Hotmail: Your friends can get your Facebook updates, right
 from 
 Hotmail®.http://www.microsoft.com/middleeast/windows/windowslive/see-it-in-action/social-network-basics.aspx?ocid=PID23461::T:WLMTAGL:ON:WL:en-xm:SI_SB_4:092009

 ___
 For more information regarding industry leading CCIE Lab training, please
 visit www.ipexpert.com


___
For more information regarding industry leading CCIE Lab training, please visit 
www.ipexpert.com