Another CapFile.
Hi all,
I know there are some good threads regarding this. I have tried the 24hr & ½ hr capture script from the CD and turn it to my needs. I even took a look at the thread (448-488839) in which knob put together a script. But I think this is a little different and I’m really stuck on it. So could someone kindly shed some light on this one please. All help/idea’s would be appreciated.
I’m trying to capture info from a trace on a PBX (Definity) trunk (TAC 7)
So the script should open a CapFile and name it TAC 7.
Now it will scroll down as calls come in. But when it reaches the bottom page the PBX doesn’t send anything back. So maybe a pause of say 30 to 40 sec’s to get every thing off the page then ^[ov] (for F7 which is next page on emulation 4410). Repeat this until PBX sends…
“TRACE BUFFER FULL”
I think I’m right in saying that the file will be saved to the default capture directory path so I don’t need that bit.
So here’s what I have so far….I just know it’s going to make someone cringe.
proc main
string CapFileName = Trace TAC 7 ;set capture name.
set capture file CapFileName ;set the capture filename for Procomm.
capture On ;start the capture file.
? pause 30 sec’s ;no idea how to do this.
^[ov] ;next page.
Repeat/loop ;continue until the waitfor.
waitfor “TRACE BUFFER FULL”
capture off ;Close the capture file.
endproc
Hi all,
I know there are some good threads regarding this. I have tried the 24hr & ½ hr capture script from the CD and turn it to my needs. I even took a look at the thread (448-488839) in which knob put together a script. But I think this is a little different and I’m really stuck on it. So could someone kindly shed some light on this one please. All help/idea’s would be appreciated.
I’m trying to capture info from a trace on a PBX (Definity) trunk (TAC 7)
So the script should open a CapFile and name it TAC 7.
Now it will scroll down as calls come in. But when it reaches the bottom page the PBX doesn’t send anything back. So maybe a pause of say 30 to 40 sec’s to get every thing off the page then ^[ov] (for F7 which is next page on emulation 4410). Repeat this until PBX sends…
“TRACE BUFFER FULL”
I think I’m right in saying that the file will be saved to the default capture directory path so I don’t need that bit.
So here’s what I have so far….I just know it’s going to make someone cringe.
proc main
string CapFileName = Trace TAC 7 ;set capture name.
set capture file CapFileName ;set the capture filename for Procomm.
capture On ;start the capture file.
? pause 30 sec’s ;no idea how to do this.
^[ov] ;next page.
Repeat/loop ;continue until the waitfor.
waitfor “TRACE BUFFER FULL”
capture off ;Close the capture file.
endproc