bar top left
bar top right
left curve
right curve
Welcome, Guest

Is there a way to Listen-in on calls ?
(1 viewing) (1) Guest
Go to bottom
Post Reply
Post New Topic
Page: 1
TOPIC: Is there a way to Listen-in on calls ?
*
#12419
Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 0
Is it possible for one extension to listen to a conversation on another extension ( by dialing **XX<ext#> ) or some other type of option and then if he sees fit to grab the call ?
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
azmerlin
Junior Boarder
Posts: 55
graphgraph
User Offline Click here to see the profile of this user
Reply Quote
 
#12420
Re:Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 131
The ChanSpy is already use by asterisk.
555 = chanspy.

See the "Feature Code Admin" into your freepbx GUI.
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
danardf
Administrator
Posts: 5424
graph
User Offline Click here to see the profile of this user
Gender: Male Location: France - Trans sur Erdre Birthday: 12/31

Links hidden for unregistered users. Login or register Here - Links hidden for unregistered users. Login or register Here - Franck Danard - franckd@agmp.org
Reply Quote
 
#12423
Re:Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 0
Thanks, but I have tried, I called ext 515 from my mobile and the from another extension I dialed 555515 and it just told me the person was not available ??
Also, after that does work, if while I am spying I want to take over the call, can I ?
Thanks
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
azmerlin
Junior Boarder
Posts: 55
graphgraph
User Offline Click here to see the profile of this user
Reply Quote
 
#12483
Re:Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 2
By default it is not possible. See freepbx.org/trac/ticket/1548
Pawel
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
pawels
Junior Boarder
Posts: 50
graphgraph
User Offline Click here to see the profile of this user
Gender: Male PROINTEGRO Location: Poland - Cracow
Last Edit: 2008/10/29 07:29 By pawels.
Reply Quote
 
#12498
Re:Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 4
Here are my settings for Silent Monitor. Notice the authenticate code. That is so that you have to have a password for listening in on the calls otherwise anyone on the pbx can listen to anyone else.

in the extensions_custom.conf

[app-chanspy-custom]
exten => 5555,1,Answer
exten => 5555,2,Wait(1)
exten => 5555,3,Goto(custom-app-enh-chanspy,s,1)
exten => 5555,4,Hangup

[custom-app-enh-chanspy]
exten => s,1,BackGround(please-enter-the)
exten => s,n,Read(SPYNUM|extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}|wv4)

in extensions_override_freepbx.conf:

[app-chanspy]
include => app-chanspy-custom
exten => 555,1,Authenticate(1234)
exten => 555,2,Read(SPYNUM,extension)
exten => 555,3,ChanSpy(SIP/${SPYNUM},wq)

Enjoy!

-T
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
Telco
Senior Boarder
Posts: 275
graphgraph
User Offline Click here to see the profile of this user
toferwatts
Reply Quote
 
#12731
Re:Is there a way to Listen-in on calls ? 3 Years, 6 Months ago Karma: 0
Hi again,
So far so good, seems to be working, now the customer wants to either only enable this feature on some extensions ( so only specified extensions can be listened to) or that several can be specified that this feature will not be able to listen to them.
Alternatively if that is not possible, then have some sort of notification for the extension listened to knows he is being listened to even if the listener is on mute.
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
azmerlin
Junior Boarder
Posts: 55
graphgraph
User Offline Click here to see the profile of this user
Reply Quote
 
#62509
Re:Is there a way to Listen-in on calls ? 1 Year, 7 Months ago Karma: 0

in the extensions_custom.conf

[app-chanspy-custom]
exten => 5555,1,Answer
exten => 5555,2,Wait(1)
exten => 5555,3,Goto(custom-app-enh-chanspy,s,1)
exten => 5555,4,Hangup

[custom-app-enh-chanspy]
exten => s,1,BackGround(please-enter-the)
exten => s,n,Read(SPYNUM|extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}|wv4)

in extensions_override_freepbx.conf:

[app-chanspy]
include => app-chanspy-custom
exten => 555,1,Authenticate(1234)
exten => 555,2,Read(SPYNUM,extension)
exten => 555,3,ChanSpy(SIP/${SPYNUM},wq)


Beautiful!!!! Works fantastic!
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
vperez69
Junior Boarder
Posts: 61
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2010/10/13 04:09 By vperez69.
Reply Quote
 
#86987
Re:Is there a way to Listen-in on calls ? 7 Months, 3 Weeks ago Karma: 0
Hi,

Code:


in the extensions_custom.conf

[app-chanspy-custom]
exten => 5555,1,Answer
exten => 5555,2,Wait(1)
exten => 5555,3,Goto(custom-app-enh-chanspy,s,1)
exten => 5555,4,Hangup

[custom-app-enh-chanspy]
exten => s,1,BackGround(please-enter-the)
exten => s,n,Read(SPYNUM|extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}|wv4)

in extensions_override_freepbx.conf:

[app-chanspy]
include => app-chanspy-custom
exten => 555,1,Authenticate(1234)
exten => 555,2,Read(SPYNUM,extension)
exten => 555,3,ChanSpy(SIP/${SPYNUM},wq)



This works great, but if I speak, both parties (Caller & helpdesk) are able to hear it.
I assume this is not an expected behavior, I mean I am spying on live calls, right?
So my voice should not travel to anyone, and both parties should not know that I am listening to their conversation. -- this is for

How can this be corrected ?

Thx & regards,
Vai
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
vaibhavs
Junior Boarder
Posts: 85
graphgraph
User Offline Click here to see the profile of this user
Reply Quote
 
#87065
Re:Is there a way to Listen-in on calls ? 7 Months, 3 Weeks ago Karma: 0
vaibhavs wrote:
Hi,

Code:


in the extensions_custom.conf

[app-chanspy-custom]
exten => 5555,1,Answer
exten => 5555,2,Wait(1)
exten => 5555,3,Goto(custom-app-enh-chanspy,s,1)
exten => 5555,4,Hangup

[custom-app-enh-chanspy]
exten => s,1,BackGround(please-enter-the)
exten => s,n,Read(SPYNUM|extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}|wv4)

in extensions_override_freepbx.conf:

[app-chanspy]
include => app-chanspy-custom
exten => 555,1,Authenticate(1234)
exten => 555,2,Read(SPYNUM,extension)
exten => 555,3,ChanSpy(SIP/${SPYNUM},wq)



This works great, but if I speak, both parties (Caller & helpdesk) are able to hear it.
I assume this is not an expected behavior, I mean I am spying on live calls, right?
So my voice should not travel to anyone, and both parties should not know that I am listening to their conversation. -- this is for

How can this be corrected ?

Thx & regards,
Vai




I managed to solve this by reading and tweaking the ChanSpy parameters:
The new working configuration is as below

Code:


[app-chanspy-custom]
exten => 5555,1,Answer
exten => 5555,2,Wait(1)
exten => 5555,3,Goto(custom-app-enh-chanspy,s,1)
exten => 5555,4,Hangup

[custom-app-enh-chanspy]
exten => s,1,BackGround(please-enter-the)
exten => s,n,Read(SPYNUM|extension)
exten => s,n,ChanSpy(SIP/${SPYNUM}|v4)

[app-chanspy]
include => app-chanspy-custom
exten => 555,1,Authenticate(1234)
exten => 555,2,Read(SPYNUM,extension)
exten => 555,3,ChanSpy(SIP/${SPYNUM},q)




I hope it will help someone.

Thx
Vai
Enter code here   
Please note: although no board code and smiley buttons are shown, they are still usable.
vaibhavs
Junior Boarder
Posts: 85
graphgraph
User Offline Click here to see the profile of this user
Reply Quote
 
Go to top
Post Reply
Post New Topic
Page: 1
Moderators: Bob, jgutierrez
Protected by Spam Fighter