Hello list, I notice that the dialplan method SIPAddHeader is not working : in dialplan : /exten => s,n,SIPAddHeader(Privacy: id)/ in SIP invite no trace of this header : /INVITE sip:0473 at sip.domain.be SIP/2.0 Via: SIP/2.0/UDP 192.168.1.106:5063;branch=z9hG4bK-5b2b1b97 From: "VC" <sip:voip2 at sip.domain.be>;tag=729476652f511c67o2 To: <sip:0473 at sip.domain.be> Remote-Party-ID: "VC" <sip:voip2 at sip.domain.be>;screen=yes;party=calling Call-ID: 307124bd-f6881ef at 192.168.1.106 CSeq: 101 INVITE Max-Forwards: 70 Contact: "VC" <sip:voip2 at 192.168.1.106:5063> Expires: 240 User-Agent: Linksys/SPA941-5.1.8 Content-Length: 401 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp/ Using Asterisk 1.6.2.16.1 How do I correctly add the Privacy header ?! Kind regards, Jonas. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110309/80edbd21/attachment.htm>
---------------------------------------- From: "Jonas Kellens" <jonas.kellens at telenet.be> Sent: Wednesday, March 09, 2011 4:18 AM To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> Subject: [asterisk-users] SIPAddHeader not working Hello list, I notice that the dialplan method SIPAddHeader is not working : in dialplan : exten => s,n,SIPAddHeader(Privacy: id) in SIP invite no trace of this header : Using Asterisk 1.6.2.16.1 How do I correctly add the Privacy header ?! Kind regards, Jonas. Jonas Here is the way we add the rfc-3325 privacey header so our vendors pick it up correctly. This is what we use in 1.6.x and 1.8.x When I check on my versions the privacy header appears to be there. exten => rfc-3325-CPN,1,NoOp(Set Call Privacy) exten => rfc-3325-CPN,n,NoOp(From ${SIP_HEADER(From)}) exten => rfc-3325-CPN,n,NoOp(To ${SIP_HEADER(To)}) exten => rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(SIP_HEADER(From),@,2)}) exten => rfc-3325-CPN,n,GotoIf($["${l_sipheaderfromip}" != ""]?hasat) exten => rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(CUT(SIP_HEADER(From),>,1),:,2)}) exten => rfc-3325-CPN,n,Goto(gotip) exten => rfc-3325-CPN,n(hasat),Set(FROM_IP=${CUT(CUT(CUT(SIP_HEADER(From),@,2),>,1),: ,1)}) exten => rfc-3325-CPN,n(gotip),NoOp(Gateway IP is ${FROM_IP}) exten => rfc-3325-CPN,n,SIPAddHeader(P-Preferred-Identity:"${CALLERID(name)}" <sip:+1${CALLERID(num)}@${FROM_IP}\;user=phone>) exten => rfc-3325-CPN,n,SIPAddHeader(Privacy: id) exten => rfc-3325-CPN,n,Set(CALLERPRES()=prohib_not_screened) exten => rfc-3325-CPN,n,Set(CALLERID(num)=Anonymous) exten => rfc-3325-CPN,n,Set(CALLERID(name)=Anonymous) exten => rfc-3325-CPN,n,Return() -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110309/dccd486c/attachment.htm>
On 03/09/2011 02:09 PM, Bryant Zimmerman wrote:> ------------------------------------------------------------------------ > *From*: "Jonas Kellens" <jonas.kellens at telenet.be> > *Sent*: Wednesday, March 09, 2011 4:18 AM > *To*: "Asterisk Users Mailing List - Non-Commercial Discussion" > <asterisk-users at lists.digium.com> > *Subject*: [asterisk-users] SIPAddHeader not working > > Hello list, > > I notice that the dialplan method SIPAddHeader is not working : > > in dialplan : > > /exten => s,n,SIPAddHeader(Privacy: id)/ > > > in SIP invite no trace of this header : > > > Using Asterisk 1.6.2.16.1 > > > How do I correctly add the Privacy header ?! > > > Kind regards, > Jonas. > > Jonas > > Here is the way we add the rfc-3325 privacey header so our vendors > pick it up correctly. This is what we use in 1.6.x and 1.8.x > When I check on my versions the privacy header appears to be there. > > exten => rfc-3325-CPN,1,NoOp(Set Call Privacy) > exten => rfc-3325-CPN,n,NoOp(From ${SIP_HEADER(From)}) > exten => rfc-3325-CPN,n,NoOp(To ${SIP_HEADER(To)}) > exten => > rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(SIP_HEADER(From),@,2)}) > exten => rfc-3325-CPN,n,GotoIf($["${l_sipheaderfromip}" != ""]?hasat) > exten => > rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(CUT(SIP_HEADER(From),>,1),:,2)}) > exten => rfc-3325-CPN,n,Goto(gotip) > exten => > rfc-3325-CPN,n(hasat),Set(FROM_IP=${CUT(CUT(CUT(SIP_HEADER(From),@,2),>,1),:,1)}) > exten => rfc-3325-CPN,n(gotip),NoOp(Gateway IP is ${FROM_IP}) > exten => > rfc-3325-CPN,n,SIPAddHeader(P-Preferred-Identity:"${CALLERID(name)}" > <sip:+1${CALLERID(num)}@${FROM_IP}\;user=phone>) > exten => rfc-3325-CPN,n,SIPAddHeader(Privacy: id) > exten => rfc-3325-CPN,n,Set(CALLERPRES()=prohib_not_screened) > exten => rfc-3325-CPN,n,Set(CALLERID(num)=Anonymous) > exten => rfc-3325-CPN,n,Set(CALLERID(name)=Anonymous) > exten => rfc-3325-CPN,n,Return() >I see no great difference. What does "/Set(CALLERPRES()=prohib_not_screened)/" do ? How does your INVITE look like ? Does the header "/Privacy: id/" appears ? Because it does not in my INVITE. Kind regards, Jonas. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110309/c5f74138/attachment.htm>
Hello, does anyone have a SIP trace for me where the SIPheader "Privacy: id" is present ?? If so, what Asterisk version ? Kind regards, Jonas. On 03/09/2011 06:43 PM, Bryant Zimmerman wrote:> Jonas > > In my systems I have seen the Privacy: id when we do our testing but > it has been several months since I have checked it. I am running some > tests later today with one of our customers and I will enable it and > do a capture to confirm but when we do a CID block our vendors say > they are getting the headers correctly > > Thanks > > Bryant Zimmerman (ZK Tech Inc.) > 616-855-1030 Ext. 2003 > > > ------------------------------------------------------------------------ > *From*: "Jonas Kellens" <jonas.kellens at telenet.be> > *Sent*: Wednesday, March 09, 2011 9:18 AM > *To*: bryantz at zktech.com, "Asterisk Users Mailing List - > Non-Commercial Discussion" <asterisk-users at lists.digium.com> > *Subject*: Re: [asterisk-users] SIPAddHeader not working > > On 03/09/2011 02:09 PM, Bryant Zimmerman wrote: >> ------------------------------------------------------------------------ >> *From*: "Jonas Kellens" <jonas.kellens at telenet.be> >> *Sent*: Wednesday, March 09, 2011 4:18 AM >> *To*: "Asterisk Users Mailing List - Non-Commercial Discussion" >> <asterisk-users at lists.digium.com> >> *Subject*: [asterisk-users] SIPAddHeader not working >> >> Hello list, >> >> I notice that the dialplan method SIPAddHeader is not working : >> >> in dialplan : >> >> /exten => s,n,SIPAddHeader(Privacy: id)/ >> >> >> in SIP invite no trace of this header : >> >> >> Using Asterisk 1.6.2.16.1 >> >> >> How do I correctly add the Privacy header ?! >> >> >> Kind regards, >> Jonas. >> >> Jonas >> >> Here is the way we add the rfc-3325 privacey header so our vendors >> pick it up correctly. This is what we use in 1.6.x and 1.8.x >> When I check on my versions the privacy header appears to be there. >> >> exten => rfc-3325-CPN,1,NoOp(Set Call Privacy) >> exten => rfc-3325-CPN,n,NoOp(From ${SIP_HEADER(From)}) >> exten => rfc-3325-CPN,n,NoOp(To ${SIP_HEADER(To)}) >> exten => >> rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(SIP_HEADER(From),@,2)}) >> exten => rfc-3325-CPN,n,GotoIf($["${l_sipheaderfromip}" != ""]?hasat) >> exten => >> rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(CUT(SIP_HEADER(From),>,1),:,2)}) >> exten => rfc-3325-CPN,n,Goto(gotip) >> exten => >> rfc-3325-CPN,n(hasat),Set(FROM_IP=${CUT(CUT(CUT(SIP_HEADER(From),@,2),>,1),:,1)}) >> exten => rfc-3325-CPN,n(gotip),NoOp(Gateway IP is ${FROM_IP}) >> exten => >> rfc-3325-CPN,n,SIPAddHeader(P-Preferred-Identity:"${CALLERID(name)}" >> <sip:+1${CALLERID(num)}@${FROM_IP}\;user=phone>) >> exten => rfc-3325-CPN,n,SIPAddHeader(Privacy: id) >> exten => rfc-3325-CPN,n,Set(CALLERPRES()=prohib_not_screened) >> exten => rfc-3325-CPN,n,Set(CALLERID(num)=Anonymous) >> exten => rfc-3325-CPN,n,Set(CALLERID(name)=Anonymous) >> exten => rfc-3325-CPN,n,Return() >> > > I see no great difference. What does > "/Set(CALLERPRES()=prohib_not_screened)/" do ? > > How does your INVITE look like ? Does the header "/Privacy: id/" > appears ? Because it does not in my INVITE. > > > Kind regards, > Jonas. > > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110311/4e436eb6/attachment.htm>
Try: SIPAddHeader(P-Preferred-Identity: <sip:${CALLERID(ANI)};user=phone>) SIPAddHeader(Privacy: id) That works for me in the UK. -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Jonas Kellens Sent: 11 March 2011 15:06 To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] SIPAddHeader not working Hello, does anyone have a SIP trace for me where the SIPheader "Privacy: id" is present ?? If so, what Asterisk version ? Kind regards, Jonas. On 03/09/2011 06:43 PM, Bryant Zimmerman wrote: Jonas In my systems I have seen the Privacy: id when we do our testing but it has been several months since I have checked it. I am running some tests later today with one of our customers and I will enable it and do a capture to confirm but when we do a CID block our vendors say they are getting the headers correctly Thanks Bryant Zimmerman (ZK Tech Inc.) 616-855-1030 Ext. 2003 From: "Jonas Kellens" <jonas.kellens at telenet.be> Sent: Wednesday, March 09, 2011 9:18 AM To: bryantz at zktech.com, "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> Subject: Re: [asterisk-users] SIPAddHeader not working On 03/09/2011 02:09 PM, Bryant Zimmerman wrote: From: "Jonas Kellens" <jonas.kellens at telenet.be> Sent: Wednesday, March 09, 2011 4:18 AM To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> Subject: [asterisk-users] SIPAddHeader not working Hello list, I notice that the dialplan method SIPAddHeader is not working : in dialplan : exten => s,n,SIPAddHeader(Privacy: id) in SIP invite no trace of this header : Using Asterisk 1.6.2.16.1 How do I correctly add the Privacy header ?! Kind regards, Jonas. Jonas Here is the way we add the rfc-3325 privacey header so our vendors pick it up correctly. This is what we use in 1.6.x and 1.8.x When I check on my versions the privacy header appears to be there. exten => rfc-3325-CPN,1,NoOp(Set Call Privacy) exten => rfc-3325-CPN,n,NoOp(From ${SIP_HEADER(From)}) exten => rfc-3325-CPN,n,NoOp(To ${SIP_HEADER(To)}) exten => rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(SIP_HEADER(From),@,2)}) exten => rfc-3325-CPN,n,GotoIf($["${l_sipheaderfromip}" != ""]?hasat) exten => rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(CUT(SIP_HEADER(From),>,1),:,2 )}) exten => rfc-3325-CPN,n,Goto(gotip) exten => rfc-3325-CPN,n(hasat),Set(FROM_IP=${CUT(CUT(CUT(SIP_HEADER(From),@,2),>, 1),:,1)}) exten => rfc-3325-CPN,n(gotip),NoOp(Gateway IP is ${FROM_IP}) exten => rfc-3325-CPN,n,SIPAddHeader(P-Preferred-Identity:"${CALLERID(name)}" <sip:+1${CALLERID(num)}@${FROM_IP}\;user=phone>) exten => rfc-3325-CPN,n,SIPAddHeader(Privacy: id) exten => rfc-3325-CPN,n,Set(CALLERPRES()=prohib_not_screened) exten => rfc-3325-CPN,n,Set(CALLERID(num)=Anonymous) exten => rfc-3325-CPN,n,Set(CALLERID(name)=Anonymous) exten => rfc-3325-CPN,n,Return() I see no great difference. What does "Set(CALLERPRES()=prohib_not_screened)" do ? How does your INVITE look like ? Does the header "Privacy: id" appears ? Because it does not in my INVITE. Kind regards, Jonas. If you have received this communication in error we would appreciate you advising us either by telephone or return of e-mail. The contents of this message, and any attachments, are the property of DataVox, and are intended for the confidential use of the named recipient only. If you are not the intended recipient, employee or agent responsible for delivery of this message to the intended recipient, take note that any dissemination, distribution or copying of this communication and its attachments is strictly prohibited, and may be subject to civil or criminal action for which you may be liable. Every effort has been made to ensure that this e-mail or any attachments are free from viruses. While the company has taken every reasonable precaution to minimise this risk, neither company, nor the sender can accept liability for any damage which you sustain as a result of viruses. It is recommended that you should carry out your own virus checks before opening any attachments. Registered in England. No. 27459085.
Hello, none of the 2 SIP headers are sent... dialplan : exten => 67121212,1,NoOp() exten => 67121212,n,Set(CALLERID(all)="32596666" <32596666>) exten => 67121212,n,SIPAddHeader(P-Preferred-Identity: <sip:32596666\;user=phone>) exten => 67121212,n,SIPAddHeader(Privacy: id) exten => 67121212,n,Dial(SIP/32596666/67121212) CLI : INVITE sip:67121212 at sip.voip.tld SIP/2.0 Via: SIP/2.0/UDP 192.168.1.106:5063;branch=z9hG4bK-1b5cdb51 From: "VC" <sip:voip2 at sip.voip.tld>;tag=cb415736707fb109o2 To: <sip:67121212 at sip.voip.tld> Remote-Party-ID: "VC" <sip:voip2 at sip.voip.tld>;screen=yes;party=calling Call-ID: 2a80707a-bdb7c895 at 192.168.1.106 CSeq: 101 INVITE Max-Forwards: 70 Contact: "VC" <sip:voip2 at 192.168.1.106:5063> Expires: 240 User-Agent: Linksys/SPA941-5.1.8 Content-Length: 399 Allow: ACK, BYE, CANCEL, INFO, INVITE, NOTIFY, OPTIONS, REFER Supported: replaces Content-Type: application/sdp Jonas. On 03/14/2011 02:48 PM, Andrew Thomas wrote:> Try: > > SIPAddHeader(P-Preferred-Identity:<sip:${CALLERID(ANI)};user=phone>) > SIPAddHeader(Privacy: id) > > That works for me in the UK. > > > -----Original Message----- > From: asterisk-users-bounces at lists.digium.com > [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Jonas > Kellens > Sent: 11 March 2011 15:06 > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [asterisk-users] SIPAddHeader not working > > > Hello, > > does anyone have a SIP trace for me where the SIPheader "Privacy: id" is > present ?? If so, what Asterisk version ? > > > Kind regards, > Jonas. > > > On 03/09/2011 06:43 PM, Bryant Zimmerman wrote: > Jonas > > In my systems I have seen the Privacy: id when we do our testing but it > has been several months since I have checked it. I am running some tests > later today with one of our customers and I will enable it and do a > capture to confirm but when we do a CID block our vendors say they are > getting the headers correctly > > > Thanks > > Bryant Zimmerman (ZK Tech Inc.) > 616-855-1030 Ext. 2003 > > > > > From: "Jonas Kellens"<jonas.kellens at telenet.be> > Sent: Wednesday, March 09, 2011 9:18 AM > To: bryantz at zktech.com, "Asterisk Users Mailing List - Non-Commercial > Discussion"<asterisk-users at lists.digium.com> > Subject: Re: [asterisk-users] SIPAddHeader not working > > On 03/09/2011 02:09 PM, Bryant Zimmerman wrote: > > > From: "Jonas Kellens"<jonas.kellens at telenet.be> > Sent: Wednesday, March 09, 2011 4:18 AM > To: "Asterisk Users Mailing List - Non-Commercial Discussion" > <asterisk-users at lists.digium.com> > Subject: [asterisk-users] SIPAddHeader not working > > Hello list, > > I notice that the dialplan method SIPAddHeader is not working : > > in dialplan : > > exten => s,n,SIPAddHeader(Privacy: id) > > > in SIP invite no trace of this header : > > > Using Asterisk 1.6.2.16.1 > > > How do I correctly add the Privacy header ?! > > > Kind regards, > Jonas. > > Jonas > > Here is the way we add the rfc-3325 privacey header so our vendors pick > it up correctly. This is what we use in 1.6.x and 1.8.x > When I check on my versions the privacy header appears to be there. > > > exten => rfc-3325-CPN,1,NoOp(Set Call Privacy) > exten => rfc-3325-CPN,n,NoOp(From ${SIP_HEADER(From)}) > exten => rfc-3325-CPN,n,NoOp(To ${SIP_HEADER(To)}) > exten => > rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(SIP_HEADER(From),@,2)}) > exten => rfc-3325-CPN,n,GotoIf($["${l_sipheaderfromip}" != ""]?hasat) > exten => > rfc-3325-CPN,n,Set(l_sipheaderfromip=${CUT(CUT(SIP_HEADER(From),>,1),:,2 > )}) > exten => rfc-3325-CPN,n,Goto(gotip) > exten => > rfc-3325-CPN,n(hasat),Set(FROM_IP=${CUT(CUT(CUT(SIP_HEADER(From),@,2),>, > 1),:,1)}) > exten => rfc-3325-CPN,n(gotip),NoOp(Gateway IP is ${FROM_IP}) > exten => > rfc-3325-CPN,n,SIPAddHeader(P-Preferred-Identity:"${CALLERID(name)}" > <sip:+1${CALLERID(num)}@${FROM_IP}\;user=phone>) > exten => rfc-3325-CPN,n,SIPAddHeader(Privacy: id) > exten => rfc-3325-CPN,n,Set(CALLERPRES()=prohib_not_screened) > exten => rfc-3325-CPN,n,Set(CALLERID(num)=Anonymous) > exten => rfc-3325-CPN,n,Set(CALLERID(name)=Anonymous) > exten => rfc-3325-CPN,n,Return() > > I see no great difference. What does > "Set(CALLERPRES()=prohib_not_screened)" do ? > > How does your INVITE look like ? Does the header "Privacy: id" appears ? > Because it does not in my INVITE. > > > Kind regards, > Jonas. > > > If you have received this communication in error we would appreciate > you advising us either by telephone or return of e-mail. The contents > of this message, and any attachments, are the property of DataVox, > and are intended for the confidential use of the named recipient only. > If you are not the intended recipient, employee or agent responsible > for delivery of this message to the intended recipient, take note that > any dissemination, distribution or copying of this communication and > its attachments is strictly prohibited, and may be subject to civil or > criminal action for which you may be liable. > Every effort has been made to ensure that this e-mail or any attachments > are free from viruses. While the company has taken every reasonable > precaution to minimise this risk, neither company, nor the sender can > accept liability for any damage which you sustain as a result of viruses. > It is recommended that you should carry out your own virus checks > before opening any attachments. > > Registered in England. No. 27459085. > > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110314/5437ecda/attachment.htm>
On 03/15/2011 12:24 PM, Steven Howes wrote:> > On 15 Mar 2011, at 09:08, Jonas Kellens wrote: >> I also notice the presence of a "Remote-Party-ID" SIPheader... Where >> does this come from ?! Not from my dialplan... > > sendrpid in your sip.conf > > SteveNot really : [32596666] type=peer host=ip_itsp username=32596666 secret=guessthis dtmfmode=rfc2833 canreinvite=no qualify=yes disallow=all allow=alaw allow=gsm amaflags=documentation Kind regards, Jonas. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110315/74f8e412/attachment.htm>