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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you sync time?

Status
Not open for further replies.

freddick

IS-IT--Management
Mar 14, 2005
34
US
Another newbie question here....How do you sync time on a Nortel phone network?

I have an Option 11, Succession branches and some 460's.

I use ntp on my data side.

Thanks, Fred
 
ARE YOU TAKING ABOUT SYNCHING TIME WITH YOUR DATA NEWTWORK

OLD ROLMEN WORKING ON NORTELS
 
I just want the correct time, in the easiest way possible. It doesn't have to sync to my data network.

Thanks
 
log into the switch
ld 2
ttad
check the format
then go stad and type it in exactly the same way.
ttad- test time and date
stad - set time and date

I am not sure if you can sync it from anywhere.....anyone else know??????
 
this is the one i use, if you use procomm scheduler, it will auto run once a day, does a sync to the pc it is on. as long as that is sync to the net, the time is the same, (within 100th of a sec)

Code:
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



john poole
bellsouth business
columbia,sc
 
if that needs to run nu attended add
transmit "logi^M"
pause 1
transmit "0000^M" change 0000 to your password

after proc main

and
transmit "****^M"
pause 1
transmit "john^M"

just before endproc... that logs in and out

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

Part and Inventory Search

Sponsor

Back
Top