Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Time synchronisation on M1...

Status
Not open for further replies.

reyf

Vendor
Dec 1, 2004
31
CZ
Hello everybody,

we have several M1s in the network and after one month the time difference is about one or two minutes.

Don't you know if it is somehow possible to synchronize all these M1s to one accurate time source?

Thanks for help!
 
I only know that in LD 2 have sdta command that can adjust time during midnight.

maybe help you
 
i have a script file (procomm) that will sync your switch to the network time on your pc, i use the scheduler in procomm to run it on switches once a day.. if your using procomm, i'll post the script from work monday..

john poole
bellsouth business
columbia,sc
 
I do not use Procomm but if this is the only solution I would appreciate when you post the script.

Thanks!
 
You can also used Network Time Synchronization if you have MCDN networking over PRI; it will let you sync all your M1s to each other, but you will still need to sync the master w/ a source; or you can do like i do and just sync the master by hand as close as I can; and the rest pick it up. It's in the networking NTPs under ISDN-PRI Features I think; I can look it up if you need. It's all set up in LD2 also. -Matt

Matt H.
TMC - KCMO, USA
 
this is the only way i know to do this, i am working on a java script for the same thing but it's not their yet..

proc main
integer iDay, iMonth, iYear, iMin, iHour, iSec
string sSend

ltimeints $LTIME iYear iMonth iDay iHour iMin iSec

strfmt sSend "STAD %02d %02d %d %02d %02d %02d" iDay iMonth iYear iHour iMin iSec
set txpace 30
transmit "****^M"
waitfor ">"
transmit "ld 2^M"
waitfor "."
transmit "TTAD^M"
waitfor "."
transmit sSend
transmit "^M"
waitfor "."
pause 2
transmit "TTAD^M"
waitfor "."
pause 2
transmit "****^M"

set txpace 0

Endproc
this works after you are logged on.. if you want it to log you on and back off let me know.

john poole
bellsouth business
columbia,sc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top