Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[asterisk-users] Disabling QSIG Encoding in LibPRI


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> Asterisk Users
View previous topic :: View next topic  
Author Message
armeniki at hotmail.com
Guest





PostPosted: Fri May 23, 2014 7:05 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170


We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.


When a call comes in the number shows up OK but the name does not. In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded. However, the BCMs don't understand this encoding and as a result the name does not come through.


Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.


For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C


Cheers,
Armen
Back to top
rmudgett at digium.com
Guest





PostPosted: Fri May 23, 2014 9:55 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

On Fri, May 23, 2014 at 7:05 PM, Armen K <armeniki@hotmail.com (armeniki@hotmail.com)> wrote:
Quote:
Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170


We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.


When a call comes in the number shows up OK but the name does not.  In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded.  However, the BCMs don't understand this encoding and as a result the name does not come through.


Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.


For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C




In libpri pri_facility.c:enc_qsig_calling_name() you can change the code to not set any
header values nonzero.  That will disable sending the optional NFE and
interpretation-APDU values for the calling name only.


Richard
Back to top
armeniki at hotmail.com
Guest





PostPosted: Fri May 23, 2014 10:46 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

Hi Richard,

Thanks for that (must be late where you are) so I've set "header.nfe_present" to equal "0" as it was "1" before and that indeed removed those encoding bytes that I was referring to but........... sadly, I've had no luck getting the caller name to show up.


I'm really not sure what's going on... I think I'm working in the dark right now because I would need to see how other people with Nortel BCMs are getting this to work. I put up a posting on tek-tips to see if someone can send me a screen shot of their BCM Monitor when a call comes in with a Name so I can see what the system needs to see.


This also leads me to believe that there's another reason why the name doesn't show up when I use "euroisdn" signalling... because in Nortel's BCM Monitor, I can see the element: CCITT Display come up as follows but still no luck.. here's a screen shot with caller name "Ma Bell" being sent out... the HEX characters are there but for some reason the format that it's in doesn't make it recognise them or something.


http://i1100.photobucket.com/albums/g408/armeniki/BCM-DisplayIE.png


(SIGH) ... well I'm going to take a break for today.


Cheers,
Armen












Date: Fri, 23 May 2014 21:54:46 -0500
From: rmudgett@digium.com
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI




On Fri, May 23, 2014 at 7:05 PM, Armen K <armeniki@hotmail.com (armeniki@hotmail.com)> wrote:
Quote:
Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170


We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.


When a call comes in the number shows up OK but the name does not. In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded. However, the BCMs don't understand this encoding and as a result the name does not come through.


Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.


For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C




In libpri pri_facility.c:enc_qsig_calling_name() you can change the code to not set any
header values nonzero. That will disable sending the optional NFE and
interpretation-APDU values for the calling name only.


Richard






-- _____________________________________________________________________ -- 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
Back to top
EWieling at nyigc.com
Guest





PostPosted: Sat May 24, 2014 4:22 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

Have you tried playing with the facilityenable setting in chan_dahdi.conf?

chan_dahdi.conf.sample should have some info on that option.

-----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Armen K
Sent: Friday, May 23, 2014 11:46 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Hi Richard,

Thanks for that (must be late where you are) so I've set "header.nfe_present" to equal "0" as it was "1" before and that indeed removed those encoding bytes that I was referring to but........... sadly, I've had no luck getting the caller name to show up.

I'm really not sure what's going on... I think I'm working in the dark right now because I would need to see how other people with Nortel BCMs are getting this to work. I put up a posting on tek-tips to see if someone can send me a screen shot of their BCM Monitor when a call comes in with a Name so I can see what the system needs to see.

This also leads me to believe that there's another reason why the name doesn't show up when I use "euroisdn" signalling... because in Nortel's BCM Monitor, I can see the element: CCITT Display come up as follows but still no luck.. here's a screen shot with caller name "Ma Bell" being sent out... the HEX characters are there but for some reason the format that it's in doesn't make it recognise them or something.

http://i1100.photobucket.com/albums/g408/armeniki/BCM-DisplayIE.png

(SIGH) ... well I'm going to take a break for today.

Cheers,
Armen









________________________________

Date: Fri, 23 May 2014 21:54:46 -0500
From: rmudgett@digium.com
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI





On Fri, May 23, 2014 at 7:05 PM, Armen K <armeniki@hotmail.com> wrote:


Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170

We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.

When a call comes in the number shows up OK but the name does not. In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded. However, the BCMs don't understand this encoding and as a result the name does not come through.

Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.

For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C


In libpri pri_facility.c:enc_qsig_calling_name() you can change the code to not set any header values nonzero. That will disable sending the optional NFE and interpretation-APDU values for the calling name only.


Richard



-- _____________________________________________________________________ -- 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

--
_____________________________________________________________________
-- 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
Back to top
armeniki at hotmail.com
Guest





PostPosted: Sat May 24, 2014 8:08 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

Hi Eric,

All that setting does is turn on and off the Facility IEs, nothing else.

Thanks though!

Quote:
From: EWieling@nyigc.com
To: asterisk-users@lists.digium.com
Date: Sat, 24 May 2014 17:21:44 -0400
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Have you tried playing with the facilityenable setting in chan_dahdi.conf?

chan_dahdi.conf.sample should have some info on that option.

-----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Armen K
Sent: Friday, May 23, 2014 11:46 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Hi Richard,

Thanks for that (must be late where you are) so I've set "header.nfe_present" to equal "0" as it was "1" before and that indeed removed those encoding bytes that I was referring to but........... sadly, I've had no luck getting the caller name to show up.

I'm really not sure what's going on... I think I'm working in the dark right now because I would need to see how other people with Nortel BCMs are getting this to work. I put up a posting on tek-tips to see if someone can send me a screen shot of their BCM Monitor when a call comes in with a Name so I can see what the system needs to see.

This also leads me to believe that there's another reason why the name doesn't show up when I use "euroisdn" signalling... because in Nortel's BCM Monitor, I can see the element: CCITT Display come up as follows but still no luck.. here's a screen shot with caller name "Ma Bell" being sent out... the HEX characters are there but for some reason the format that it's in doesn't make it recognise them or something.

http://i1100.photobucket.com/albums/g408/armeniki/BCM-DisplayIE.png

(SIGH) ... well I'm going to take a break for today.

Cheers,
Armen









________________________________

Date: Fri, 23 May 2014 21:54:46 -0500
From: rmudgett@digium.com
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI





On Fri, May 23, 2014 at 7:05 PM, Armen K <armeniki@hotmail.com> wrote:


Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170

We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.

When a call comes in the number shows up OK but the name does not. In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded. However, the BCMs don't understand this encoding and as a result the name does not come through.

Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.

For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C


In libpri pri_facility.c:enc_qsig_calling_name() you can change the code to not set any header values nonzero. That will disable sending the optional NFE and interpretation-APDU values for the calling name only.


Richard



-- _____________________________________________________________________ -- 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

--
_____________________________________________________________________
-- 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
Back to top
EWieling at nyigc.com
Guest





PostPosted: Mon May 26, 2014 12:34 pm    Post subject: [asterisk-users] Disabling QSIG Encoding in LibPRI Reply with quote

The reason I suggested that option is because in Q.931-land Display Name can be sent in the call setup or as a facility message immediately after the call setup. I don't know about Q.SIG-land.

-----Original Message-----
From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Armen K
Sent: Saturday, May 24, 2014 9:08 PM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Hi Eric,

All that setting does is turn on and off the Facility IEs, nothing else.

Thanks though!

Quote:
From: EWieling@nyigc.com
To: asterisk-users@lists.digium.com
Date: Sat, 24 May 2014 17:21:44 -0400
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Have you tried playing with the facilityenable setting in chan_dahdi.conf?

chan_dahdi.conf.sample should have some info on that option.

-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Armen K
Sent: Friday, May 23, 2014 11:46 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI

Hi Richard,

Thanks for that (must be late where you are) so I've set "header.nfe_present" to equal "0" as it was "1" before and that indeed removed those encoding bytes that I was referring to but........... sadly, I've had no luck getting the caller name to show up.

I'm really not sure what's going on... I think I'm working in the dark right now because I would need to see how other people with Nortel BCMs are getting this to work. I put up a posting on tek-tips to see if someone can send me a screen shot of their BCM Monitor when a call comes in with a Name so I can see what the system needs to see.

This also leads me to believe that there's another reason why the name doesn't show up when I use "euroisdn" signalling... because in Nortel's BCM Monitor, I can see the element: CCITT Display come up as follows but still no luck.. here's a screen shot with caller name "Ma Bell" being sent out... the HEX characters are there but for some reason the format that it's in doesn't make it recognise them or something.

http://i1100.photobucket.com/albums/g408/armeniki/BCM-DisplayIE.png

(SIGH) ... well I'm going to take a break for today.

Cheers,
Armen









________________________________

Date: Fri, 23 May 2014 21:54:46 -0500
From: rmudgett@digium.com
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Disabling QSIG Encoding in LibPRI





On Fri, May 23, 2014 at 7:05 PM, Armen K <armeniki@hotmail.com> wrote:


Hi everyone,

I was referred to this mailing list by Richard Mudgett regarding the following thread on Issue Tracker as it's a feature request and not a bug:
https://issues.asterisk.org/jira/browse/PRI-170

We've got a Nortel BCM (actually 2 BCM50s and 1 BCM400)... all showing the same problem.

When a call comes in the number shows up OK but the name does not. In looking at the ISDN messages coming in, we've noticed that the Facility IE for the name has been QSIG encoded. However, the BCMs don't understand this encoding and as a result the name does not come through.

Basically, I need to figure out how to disable the encoding so the Facility IE for caller name comes through without being encoded (in other words without the AA 06 80 01 00 82 01 00 bytes being placed between the 9F and 8B bytes.

For example:
9F 8B 01 00 A1 0E 02 01 08 02 01 00 80 06 4D 61 20 42 65 6C 6C


In libpri pri_facility.c:enc_qsig_calling_name() you can change the code to not set any header values nonzero. That will disable sending the optional NFE and interpretation-APDU values for the calling name only.


Richard



--
_____________________________________________________________________
-- 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

--
_____________________________________________________________________
-- 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


--
_____________________________________________________________________
-- 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
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> Asterisk Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services