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

CSE system time fron Network

Status
Not open for further replies.

SledEd

Technical User
Jan 10, 2008
9
0
0
hello can you set up a CSE to take it's system time from the customer inturnal network or can you only set it manualy
 
what rls?.. i use a script on my rls 3, syncs to the pc (network time) each time i log on.. 20 times a day
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 20
   transmit "****^M"
   pause 1
 transmit "john^M"
 pause 1
   transmit "logi john^M"  ;script stops for pwd  
   
   waitfor ">" forever
   
   transmit "ld 2^M"
   waitfor "."
   transmit "TTAD^M"
   waitfor "."
   transmit sSend
   transmit "^M"
   waitfor "."
   mspause 20
   transmit "TTAD^M"
   waitfor "."
   mspause 20
   transmit "****^M"
   
   
   
   endproc

john poole
bellsouth business
columbia,sc
 
You can do this on Release 5 either directly on the Call server Elan or indirectly through the signaling server. I recommend the indirect method. Keep as much traffic as possible away from the ELAN.

Signature===========================================
Artificial Intelligence Is No Match for Natural Stupidity.

The latest survey shows that 3 out of 4 people make up 75% of the population.

The original point and click interface was a Smith & Wesson.

Red meat is not bad for you, it is the green fuzzy meat that is bad.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top