[quote=“RichardHH”][quote=“kokoska.rokoska”][quote=“RichardHH”]You are right, im only using ISDN DSS1, not dabbling with SS7 so far.
But if i use playback without answering the line first, its not replacing the ring/call tone for the caller.
So this is telco dependend but SHOULD work normally you say ? With ISDN and DSS1 ?[/quote]
Yes this is TelCo dependant and I’m not sure if it could be done with ISDN and DSS1(IMHO yes), but:
- May be your TelCo is not capable (or don’t want to be) of accepting InBand Info from end customers (juridical problem defense).
- May be some transit or terminating TelCo is not capable (or don’t want to be) of transmitting InBand Info (mostly cheap SIP providers).
- I mean that you really need to have some Agreement between you and your TelCo about signalization and about content of your InBand Infos and other “nonstandard” features…
- on SIP it is possible and if you have some SIP provider with SS7 connectivity you can do it including proper signalization to PSTN (aka SIP<->ISUP)
Have a nice day![/quote]
Heya kokoska.rokoska !
Sweet, i just tried it and our telco is supporting it !
My mistake was PLAYBACK instead of the |m option.
I just changed a testextension here:
exten => …37,1,Dial(Sip/37,20|m)
And the ringtone for external callers changed to music…hmmm…thats neat… :idea:[/quote]
Nice to hear it works for you!
I hope that Playback with “noanswer” would work too (and also be useful :-). On SIP it works fine…
for first call:
exten => …37,1,Dial(Sip/37,20|r)
for second:
exten => …37,1,Dial(Sip/37,20|m(busy))
for third and other:
exten => …37,1,Goto(s-BUSY)
and than:
exten => …37,2,Goto(s-${DIALSTATUS})
exten => s-BUSY,1,Playback(user-busy,noanswer)
exten => s-BUSY,2,Hangup
exten => s-CHANUNAVAIL,1,Playback(user-unavailable,noanswer)
exten => s-CHANUNAVAIL,2,Hangup
exten => s-NOANSWER,1,Playback(user-not-answered,noanswer)
exten => s-NOANSWER,2,Hangup
…
This is simplification and a wrote it just for pointing what is Session progress with InBand info for
I hope everyone can catch it…
Have a nice Easter!
kokoska.rokoska
BTW: Any idea how to send fake RTP stream to Asterisk? k.k.