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

Phone call history log ? ?

Status
Not open for further replies.

are34

Technical User
Mar 29, 2005
25
0
0
US
I need to know what numbers are being dialed from a particular phone. Basicly a phone call log.Could some please tell me what load and instructions to do it in ?
thanx.
 
ld 60
entc x x x x 60
gotr

that would monitor that set for 60 minutes... including menu options, passwords, account codes etc

john poole
bellsouth business
columbia,sc
 
Is there a way to monitor it for 24 hours ?
 
i don't know the time limit for that command

Code:
proc main
  
capture on
  loop:
  transmit "entc x x x x 60^M" ;insert the tn here
  mspause 50 
  transmit "gotr^M"
  pause 3600
  goto loop

endproc
 capture off
endproc

i'm not at work so i can't complie or test that script, so let me know if it needs cleaning up... if you don't normally use scripts, just paste that into editor (alt f3-new) then save as and compile it... without a script and procomm a 24 hour would be tough.. if the switch logs you out while that is running, let me know the time factor and i'll add a keep alive



john poole
bellsouth business
columbia,sc
 
Am I missing something here? Should that be LD 80?
 
your right, ld 80 is for trace, ld 60 does a really bad trace command...

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

Part and Inventory Search

Sponsor

Back
Top