similar to: get egress SIP call Id

Displaying 20 results from an estimated 1000 matches similar to: "get egress SIP call Id"

2014 Feb 24
1
Add SIPCALLID of egress leg to CDR
Hey all, I've been fighting with this all morning, and I feel like this should be a relatively simple task, but I just can't get it to work. I currently have a very basic asterisk v11.6 setup with a single extension (a Bria softphone) and a single sip trunk to my carrier. What I'm trying to accomplish is simply adding the asterisk generated SIPCALLID of the leg between asterisk and
2011 Feb 15
1
outbound call leg CALLID
Hello everyone Is there a possibility to catch an outbound callleg ID for the follovong scenario: some carrier -----> ------(asterisk1) --->-----asterisk2 ? I can get inbound callid for asterisk1 with a ${SIPCALLID} in extensions.conf or to look it up in cdrs field (are the same). But how about outbound? I have all calls just forwarded through asterisk1, not answered and for every call I
2016 Sep 19
2
Ast 13.11.2 : bridgepeer variable empty ?
Hello I can confirm that the variable DIALEDPEERNAME contains the information that I would expect in the variable BRIDGEPEER. But I read nowhere that DIALEDPEERNAME has replaced BRIDGEPEER as of Asterisk version 13 ?! So if this is not the intention, then yes this is probably a bug and should be reported. Kind regards. Jonas. On 18-09-16 19:58, Ludovic Gasc wrote: > Hi, > >
2005 Mar 24
1
RSA interasterisk IAX problems ?
Hi, I'd like to setup oneway connection - so asteriskB can place calls on asteriskA and be safely authenticated with rsa keys. I just don't get any response on asteriskA. I've generated pair of keys: name.key, name.pub and put them on both servers - is it right to only have name.key on asteriskA and name.pub on asteriskB ? I get everybody is busy ... on asteriskB, and none
2006 Jun 16
2
SIPCALLID, but which callid?
Hi, To combine two sources of CDR's I want Asterisk to save the SIP callid for all calls. I know there's a variable that contains the SIP CallID value, but is this the callid value of the incoming INVITE message or the outgoing message? Are they the same? (I've not yet checked a trace, I'm sorry for that). I've tried to read chan_sip, but couldn't find something in the
2006 Jan 07
1
Problens to link 2 * servers
Hello, I'm traying to link 2 * servers using SIP and the following errors was show: "SIP/AsteriskA:AsteriskA@10.0.0.121/100") in new stack Dec 13 22:46:57 WARNING[8767]: chan_sip.c:1398 create_addr: No such host: 10.0.0.121/100 Dec 13 22:46:57 NOTICE[8767]: app_dial.c:759 dial_exec: Unable to create channel of type 'SIP' == Everyone is busy/congested at this time Dec 13
2009 Sep 28
1
How to get "Call-ID" SIP header outside "chan_sip" scope ...
Hello there! I'm working on some modifications on Asterisk to adapt it to our needs considering some particular demandings of the infraestructure we want to provide. Two of these modifications are: 1- A proprietary configuration driver that will communicate with a server that will be the source of information for the entire infraestructure; and, 2- A call control application that will be
2012 Oct 25
6
How to tie orders taken to specific CDR records
Our phone operators work off of an Asterisk queue. They take calls from customers and take orders with our back end systems. What I need to be able to do is tie the orders taken to the specific CDR record that reflects the call from which the order originated. The typical/sample CDR table doesn't have a primary key. I can add an auto-generated PK, but the CDR is not written until the
2017 Dec 27
3
Answered time on channel
It seems that what ever I set in my answer handler does not show up in the hangup handler. In order to do billing I can't rely on the g option where the caller hangs up the call. Looks like I can either use h or a hangup handler along with the shared function. On Tue, Dec 26, 2017 at 4:40 PM, Eric Wieling <ewieling at nyigc.com> wrote: > Don't use an 'h' extension, use
2018 Jul 13
2
Withholding Answer Supervision
Hi, Is there any way of telling Asteirsk to withhold answer subversion on a call till I call Answer. My DP looks like this: [incoming] Exten => 18005551212,1,Noop() same => n,Answer same => n,Mset(__uid=${SIPCALLID}) same => n,MixMonitor(/tmp/FROM_CALLER_${uid}-${START}.WAV) same => n,Dial(Local/1 at dial_call_center/n&Local/2 at dial_call_center /n&Local/3 at
2005 Sep 13
2
passing variables to h extension
Is there a way to pass variables/arguments to the h extension ? for example : [default] exten => _1098933X.,1,NoOp(CARRIER TWT->TIM, EXTEN: ${EXTEN}}, SIPCALLID: ${SIPCALLID}, SIPDOMAIN: ${SIPDOMAIN}) exten => _1098933X.,2,SetVar(_PROVA="bla") [lot of stuff, agi, goto, tricks and magic that happens] exten => _1098933X.,10,Dial(${CHAN_DEST},,L(3600000:3599900)) <-
2006 Feb 08
2
Need to retrieve Call-ID from dialed SIP channel (w/o CDRs)
Is there a way to retrieve the Call-ID from a call made using the 'Dial' command on a SIP channel without CDRs (i.e. variable) ? Thanks, - Darren
2012 Jul 26
2
Call ID of the second call leg
Hello friends, I am trying to deeply integrate asterisk cdr with voipmonitor cdr. I can access the caller Call ID (fbasename field in voipmonitor cdr) looking at the SIPCALLID variable in asterisk, but how can I access from within asterisk the Call ID of the second leg of the call (the one originating from asterisk to the destination peer)? is there a variable holding this value? Thank you
2005 May 10
2
DISA
We are using DISA with local SIP users. The user enters in a 2 digit code then they get a dialtone and the phone dials out. The problem is that the calls waits 10 seconds after the outgoing number is dialed, no matter what I put for the timeout values. Anyone else using DISA that has run into this? exten => _2X,1,Answer exten => _2X,2,DigitTimeout(2) exten =>
2017 Dec 26
4
Answered time on channel
Hi, I have a dial plan where I need to notify an external system when a call was answered and when the call hung up. In both requests the start time needs to be the same. My Dialplan looks something like this: [outbound] Exten => _X.,1,Dial(SIP/${EXTEN}@1.1.1.1,,U(call-answer-from-carrier)) Exten => h,1,NoOp(ANSWERED_TIME: ${ANSWEREDTIME} >>> DIAL_TIME: ${DIALEDTIME}
2009 Mar 26
3
Know who's logged in
Hi all, For those of you people that use Agents (with Agentlogin, not AgentCallbackLogin) on a call center, I have this need: when the agent logs in, a channel keeps running all the time that the agent is logged in to receive the incoming calls. How do I know which agent logged in (code)? Right now, if I query the login channel, there is no information about which agent is logged on: #
2013 Oct 13
4
Capture Media IP in CDR (CDR)
I am quite surprised about the degree of surprise in the group. A few days ago, somebody called a school and issued a threat, through my network. The call came from China, but of course it was US caller. The DA wants to know where call came from. The caller ID is "Restricted" and the chinese carrier is playing games. If I had a way to store the media IP, I would be able to pinpoint the
2006 May 23
1
Status: Provisioned, Down, Active - Long
Hi list! I'm trying to setup Digium TE205P E1 card to work with my provider (and Ericsson BP 250 - this comes later). When I execute "pri show span 1" this is what I get. pbxzg1*CLI> zap show status Description Alarms IRQ bpviol CRC4 T2XXP (PCI) Card 0 Span 1 OK 0 0 0 T2XXP (PCI) Card 0 Span 2 UNCONFIGUR 0 0 0 pbxzg1*CLI> pri show span 1 Primary D-channel: 16 Status:
2003 Jun 25
2
Combining ingress and egress ( IMQ+HTB)
I am successfully running ingress (IMQ) and egress (HTB) shaping on a bridge. Is there any way to combine and share the bandwidth between ingress and egress? Example: I have set up www service for egress at 128 KB and ingress at 256 KB. The shaping on them works fine separately. However, I want to create a single virtual pipe for www traffic and limit both ingress and egress combined to 256 KB.
2001 Mar 25
0
Marking at egress? (DiffServ)
Hi all, Supposedly my router is itself streaming traffic to clients. Is it possible for it to mark its packets before going through dsmark?? I have gone through the examples in iproute2/examples, i noticed that there''s always an ingress and egress of which these are 2 different dev. Is it possible for before ingress and egress be the same dev?? I tried the script below but