Calls are not getting thru in Cisco voice GW for a particular Number

Cisco gateway is connecte to a PBX with an Qsig interface, for a particualr destination number the calls are not gettin estabilished.
the output of the Q931 debug :
Aug 16 16:17:46.145: ISDN Se0/0/0:23 Q931: RX <- SETUP pd = 8  callref = 0x7E05
        Bearer Capability i = 0x8090A2
                Standard = CCITT
                Transfer Capability = Speech
                Transfer Mode = Circuit
                Transfer Rate = 64 kbit/s
        Channel ID i = 0xA98396
                Exclusive, Channel 22
        Facility i = 0x9FAA068001008201008B0100A16E0202070102011530650201010A010
1800101A111A00FA50D0A010212083530303035393938A211A00FA50D0A010212083530303035393
938A312801054454C45434F4D20574F524B524F4F4DA412801054454C45434F4D20574F524B524F4
F4DA50C06062B0C02FF373730020500
        Facility i = 0x9FAA068001008201008B0100A11D0202010002010080144E455453202
F204C4F4E472044495354414E4345
        Calling Party Number i = 0x2183, '8168911010'
                Plan:ISDN, Type:National
        Called Party Number i = 0x89, '18553808521'
                Plan:Private, Type:Unknown
        Sending Complete
Aug 16 16:17:46.149: ISDN Se0/0/0:23 Q931: TX -> CALL_PROC pd = 8  callref = 0xF
E05
        Channel ID i = 0xA98396
                Exclusive, Channel 22
Aug 16 16:17:55.709: ISDN Se0/0/0:23 Q931: TX -> DISCONNECT pd = 8  callref = 0x
FE05
        Cause i = 0x80BF - Service/option not available, unspecified
Aug 16 16:17:55.741: ISDN Se0/0/0:23 Q931: RX <- RELEASE pd = 8  callref = 0x7E0
5
Aug 16 16:17:55.741: ISDN Se0/0/0:23 Q931: TX -> RELEASE_COMP pd = 8  callref =
0xFE05
The Qsig and dial-peer configration :
interface Serial0/0/0:23
no ip address
encapsulation hdlc
isdn switch-type primary-qsig
isdn overlap-receiving
isdn incoming-voice voice
isdn send-alerting
no cdp enable
dial-peer voice 1 voip
description To CBTS GK
destination-pattern +1T
signaling forward rawmsg
session protocol sipv2
session target ipv4:10.9.5.10
session transport tcp
voice-class codec 1
dtmf-relay rtp-nte
no vad
interface Serial0/0/0:23
no ip address
encapsulation hdlc
isdn switch-type primary-qsig
isdn overlap-receiving
isdn incoming-voice voice
isdn send-alerting
no cdp enable
dial-peer voice 1 voip
description To CBTS GK
destination-pattern +1T
signaling forward rawmsg
session protocol sipv2
session target ipv4:10.9.5.10
session transport tcp
voice-class codec 1
dtmf-relay rtp-nte
no vad

Hi Raj,
My name is Edson Pineiro, I understand that your problem description is in regards to failed incoming calls from a qsig trunk.
According to the received q931 setup message I can see the called party number is 18553808521 and as so the gateway should route the dnis based on the best match in destination-pattern. My first suggestion would be to ensure your outgoing dial-peers has a matching destination-pattern that matches the dialed number, for example:
dial-peer voice 1 voip
destination-pattern 1T
The T is a wild card for any digit any length
Or you can be very specific.
dial-peer voice 1 voip
destinaton-pattern 18553808521
The next suggestion would be to ensure that your incoming pots dial-peers contains 'direct-inward dial'. This is so that you don't receive secondary dial tone when dialing in, which I don't think is happening here.
Another suggestion would be to remove 'isdn overlap-receiving' from interface serial 0/0/0:23. Reason being is that the DNIS received is enbloc and not overlapping. You can clearly see that the complete e164 number is received within the setup and no further digits are needed.
But overall the disconnect cause code is 0x80BF the 80 portion is related to the source of the disconnect which is the router and BF "Service/option not available, unspecified" which is described as:
The network or remote equipment cannot provide the service option that the user requests, due to an unspecified reason. A subscription problem can cause this issue.
Any ways seems like the router does not support the protocol or type of message included in the Setup. After decoding one of the facility message:
        Facility i = 0x9FAA068001008201008B0100A16E0202070102011530650201010A010
1800101A111A00FA50D0A010212083530303035393938A211A00FA50D0A010212083530303035393
938A312801054454C45434F4D20574F524B524F4F4DA412801054454C45434F4D20574F524B524F4
F4DA50C06062B0C02FF373730020500
decode -->
Facility IE first byte (protocol profile): 0x9f(Network Extentions), depends on Network Protocol Profile
**Note:
**0x91/0x9f both be used by older qsig spec, including:
**ISO 11582:1995, ETSI 300 239:1993/1995
**newer qsig spec use 0x9f only, including:
**ISO 11582:1995/Cor.1:1999, ECMA 165(4th), ETSI 300 239:2003
**see CSCeb58118 for CCM compatibility issue
NetworkFacilityExtension ::= {
sourceEntity: 0
destinationEntity: 0
NetworkProtocolProfile not present
APDU is a ROSE
0
DivertingLegInformation2Invoke ::= {
invokeID: 1793
operationValue: 21
argument: DivertingLegInformation2Arg ::= {
diversionCounter: 1
diversionReason: 1
originalDiversionReason: 1
divertingNr: PrivatePartyNumber ::= {
privateTypeOfNumber: 2
privateNumberDigits: 50005998
originalCalledNr: PrivatePartyNumber ::= {
privateTypeOfNumber: 2
privateNumberDigits: 50005998
redirectingName: 54 45 4C 45 43 4F 4D 20 57 4F 52 4B 52 4F 4F 4D
originalCalledName: 54 45 4C 45 43 4F 4D 20 57 4F 52 4B 52 4F 4F 4D
Looks like this is a redirected call (call forward or transfer), the redireted number is "50005998" and the other end of the PRI maybe attempting to do either a 2 B channel transfer or B channel optimization, which is not supported certain gateways or needs the use of a tcl scripts. Any ways is it possible to confirm if such features are enabled on the other end of the qsig trunk? and what the number 50005998 is assigned too. This may warrant a TAC case.
However please ensure your carry through the first three configuration changes before looking at the possible bad facility message.
Here are some good documents on ISDN, IOS dial-peers and call legs:
Understanding debug isdn q931 Disconnect Cause Codes
http://www.cisco.com/en/US/tech/tk801/tk379/technologies_tech_note09186a008012e95f.shtml
Configuring Telephony Call-Redirect Features
Two B-Channel Transfer
http://www.cisco.com/en/US/docs/ios/voice/ivr/pre12.3_14_t/configuration/guide/ivrapp.pdf
Understanding Dial Peers and Call Legs on Cisco IOS Platforms
http://www.cisco.com/en/US/partner/tech/tk652/tk90/technologies_tech_note09186a008010ae1c.shtml
Understanding Direct-Inward-Dial (DID) on IOS Voice Digital (T1/E1) Interfaces
http://www.cisco.com/en/US/partner/tech/tk652/tk653/technologies_tech_note09186a00801142f8.shtml
Understanding Inbound and Outbound Dial Peers Matching on IOS Platforms
http://www.cisco.com/en/US/partner/tech/tk652/tk90/technologies_tech_note09186a008010fed1.shtml#prereq
Voice Translation Rules
http://www.cisco.com/en/US/partner/tech/tk652/tk90/technologies_tech_note09186a0080325e8e.shtml
Let me know how you go.
Thanks again for asking the tuff questions.
Cheers
Edson

Similar Messages

  • Reg:tasks are not getting displayed in the uwl mss for particular user

    hi all
    Tasks are not getting updated in the MSS under tasks tab for particular user in EP.can any one please share their exp and knowledge on this how to reslove it.
    Thanks in advance.
    Deepika

    Hi Sateesh,
    This message will appear if either the background jobs are not scheduled, or UWL cannot tell that the background jobs are scheduled. The message no longer appears once you ensure the background jobs are scheduled to run via the user id UWL_SERVICE and that user is mapped to my portal user ID UWL_SERVICE.
    Kai

  • Invoices are not getting displayed in the process receivables for a cust.

    Dear All.
    Collection Management
    I have a situation here in prod environment the worklist is displaying the customer and his outstanding balances/all the data when we select that customer and go for process receivables then i cant find any invoices/documents under the invoices tab.
    But we have the open invoices in AR for that particular customer, I am wondering how the invoices will get deleted
    Can some one help me in this issue..
    Thank you,
    D vasanth

    Hi ,
    Based on the requirement , check whether the customer contact has been done carried out for the invoice  , then possibility it must have gone out of the worklist , chekc whether the Invoice posted in the AR has been transferred to FSCM collection .

  • TS3276 I can send email to myself but all other senders are not getting thru

    I can send myself an e-mail but no other senders can get thru

    reset the server, re enter your e-mail. go online and find the server title and then enter it in your phone and you should get e-mails. What do you use for e-mail, hotmail, gmail, yahoo mail?

  • Video calls are not secure - not showing lock icon

    Hi guys,
    Calls between 9971/8945. Video calls are not getting secured.
    video calls are not secure - not showing lock icon.
    However audio calls are secure
    CUCM Version : 8.6.2.22900-9
    1 pub and 2 sub
    Secured cluster : mixed mode
    9971 : sip9971.9-3-1-33 - running version - same issue
    9971 : sip9971.9-2-4-19 - old version - same issue
    8945 : sccp8941-8945.9-3-2-11 – Running version.
    Please suggest.
    thx
    Ashish

    Would you be able to try 9.3(2) firmware or later?  I checked with 9.4(1) and I see a lock icon when placing a video call on my 9971.  According to the new and changed information 9.3(2) added additional support for when to display the lock icon,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/9971_9951_8961/firmware/932/release_notes/P567_BK_RD4ECA70_00_rn-9_3_2-8961-9951-9971_chapter_00.html#P567_RF_AB412E9F_00.

  • Stock transfer PRs are not getting created in APO

    Hi,
    I have a plant-to-plant transfer is configured using special procurement type. When APO creates stock.PRs , it does not provide any numbers to PRs and they are not getting trasnfered to R3. CIF model for PIR & POs are running good.
    In CIF post processing these PRs as stuck and  I see " Vendor master data does not exist for plant A" . There is vendor master data created for plant A in R3 and material info record also exists.
    How to de-bug this post processing queue to see what is missing in vendor master data?
    regards,
    shan

    Hi
    Can you explain in detail your scenario..you say plant A so I suppose there is plant named B in your scenario. which one is the source location and which one destination location?
    In Stock transfer from plant to plant scenario, key is to have correct settings for the system to do source determination.
    Assuming plant A as destination and plant B as source. First, The material should be maintained at both the plants.
    You need to have a purchasing info record(ME11) linking your material and the source plant B.
    I assume you are using external procurement type in your material master. Special procurement type 40 (stock transfer)should be maintained in material master.
    Then the system creates a STReq and PurReq using the source plant B. For the system to do this source determination should happen. To verify that..you can check the following...
    When you transfer the purchasing info record, system automatically generates the external procurement relationships with  source location as plant B, destination location as plant A and info record reference.
    When you transfer material master data, the system auto'lly generates transportation lanes between plant A and plant B. (keep in mind transportation lanes should be manually created here)
    So in essence you have to check if all the above things are done by the system.
    Hope Im clear in this
    regards
    Mohan V R Chunchu

  • HT4623 My texts have stopped getting through to one of my contacts. I can phone him and I can receive his calls and messages. I am the only one of his contacts whose  texts are not getting through. We have both restarted our iphones but the problem contin

    My texts have stoipped getting through to one of my contacts. I can phone him and I can receive his calls and messages. I am the only one of his contacts whose  texts are not getting through. We have both restarted our iphones but the problem continues.

    Have you talked to your carrier (or your friend to his)?  Could be an issue at their end.

  • My calls are not going to voice mail, the phone just rings any suggestions?

    Voice mail is installed, but incoming calls are not goint to voice mail.. What can I do?

    Check with your Phone Carrier that Voice Mail is Setup and Activated...

  • Incoming sip calls are not working but outgoing is working with cme

    I have CME setup with voip.ms on my 2800 router, my outgoing calls are working  but my incoming calls are not.  Below is my config, please let me know if it is something with my config:
    voice translation-rule 3
     rule 1 /^9142281\(...\)$/ /\1/
    voice translation-profile INCOMING_CALL_1
     translate called 3
    dial-peer voice 1 voip
     translation-profile incoming INCOMING_CALL_1
     session protocol sipv2
     session target sip-server
     incoming called-number .%
     voice-class codec 1
     dtmf-relay rtp-nte
     no vad

    I made the change, but I am getting no output from debug voip ccapi inout.  What does concern me from debug ccsip messages is:
    Aug 31 12:42:04.195: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 400 Bad Request - 'Invalid Host'
    Via: SIP/2.0/UDP 107.6.67.238:5060;branch=z9hG4bK000d3c36;rport
    From: "+19144410197" <sip:[email protected]>;tag=as7439b9c1
    To: <sip:[email protected]:1061>;tag=829C8-2532
    Date: Sun, 31 Aug 2014 12:42:04 GMT
    Call-ID: [email protected]:5060
    CSeq: 102 INVITE
    Allow-Events: telephone-event
    Reason: Q.850;cause=100
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    I also am getting this:
    voicertr2#debug ccsip error
    SIP Call error tracing is enabled
    voicertr2#
    Aug 31 12:45:07.359: //-1/xxxxxxxxxxxx/SIP/Error/sipSPI_validate_own_ip_addr: ReqLine IP addr does not match with host IP addr
    Aug 31 12:45:07.359: //-1/78AE76E98009/SIP/Error/sact_idle_new_message_invite: Invalid URL in incoming INVITE

  • Recordings are not getting Purged in MediaSense

    Dear All,
    I hope you all are in good health, the call records are not getting purged we have set the purging state at 2 days, the Cisco MediaSense Media Service was restarted. Grateful to have a guidance in this regard, if there are anyother settings needed to be changed. The screenshot is attached.
    Best Regards,
    Durraze Khan 

    Hi Durraze,
    The prune policy is AND and not OR. So based on the screenshot when the recordings are 2 days old and there is no disk space, then auto pruning starts.
    Hope this helps!
    Regards,
    Arundeep

  • External PSTN calls are not making it to CUE voicemail?

    External PSTN calls are not being forwarded to my Unity Express Voicemail. Internall calling and forwarding to Voicemail is working like a charm. However, calls from the outside just busyout after so many rings and never make it to voicemail.
    Can some one help point me in the right direction. I think it might be as simple as dial-peer problem.
    Thanks in advance,
    Curt

    I'm assuming this is CME-integrated. Basically, if you have a PRI connection, the easiest thing to do is to do a 'debug isdn q931' and check out the called number. Or if you have an FXO connection to the PSTN, then you've got some kind of 'connection plar' under the voice port to give you the called number. Basically the called number must match a destination pattern under a voip dial-peer pointing to CUE (you can use 'debug ccsip message' and look for an INVITE message to see where it's going to). Next, it has to match a trigger ('show ccn trigger' in the CUE CLI) to envoke a particular application, such as voicemail. If you have trouble, what we'll need to see is the exact called number (either via the isdn q931 debug or connection plar configuration statement) and the configuration (show run) from the CME and the CUE.
    Lastly, take a look at the following notice:
    http://www.cisco.com/en/US/partner/products/sw/voicesw/ps5520/products_field_notice09186a008023cfe2.shtml
    which might apply to your situation.

  • Portal Forms are not getting displayed in the new oracle environment.

    Hi All,
    The Forms in our Portal applications are not getting displayed after we have done the upgradation of Database in Unix from 8i to 9i. The reports are working fine.The forms that were added as portlets are not getting displayed and other forms that are called thorough links returns error when it is run. The Newly created forms are also not running but returns error. The Portal Version is 3.0.9.8.3. Pls help.
    Regards,
    Tom

    Hi ,
    Based on the requirement , check whether the customer contact has been done carried out for the invoice  , then possibility it must have gone out of the worklist , chekc whether the Invoice posted in the AR has been transferred to FSCM collection .

  • Why data are not getting poulated in dynamically added tab in a tab navigator???

    Hi All,
    I am facing a very strange problem and need you expert opinion on this. Ok so the problem goes like this:
    In my application i have a tab navigator where i have 2 fixed tabs say tab A and tab B. In tab B I have a data grid where All the user name are getting populated. Once the user clicks on any datagrid row i am dynamically adding a new tab based on username , so if in my datagrid u1,u2 and u3 are getting displayed then once you clik on u1 a new tab called u1 is getting displayed. Code for this goes like this:
    var vbox1: VBox= new VBox();
    box1.label=mydatagrid.selectedItem.uName;
    var sde:* = new searchDetails();
    vbox1.addChild(sde);
    myTabnavigator.addChild(vBox1);
    Application.application.searchdetails.displayall();
    I have created a component called searchDetails where i have designed the page wit various fields for this tab.This also has a method called displayall() which is populating the data in all fields using php an my sql where i have designed the page wit various fields for this tab.
    New tab is getting displayed perfectly. My problem is once the tab is getting displayed fields are not getting populated with data.
    Please let me know what wrong i am doing. I am really struggling

    Hmm.. you have to assign text to the labelfields on creation complete not before that, the fllow will be like this
    var vbox1: VBox= new VBox();
    var sde:* = new searchDetails();
    vbox1.addEventListener(creationcompleteevent,function);
    vbox1.addChild(sde);
    myTabnavigator.addChild(vBox1);
    function(e:event):void{
    box1.label = "text";

  • Date and time fields are not getting updated in database

    Hi,
    I am Using the bapi SD_SHIPMENT_HEADER_CHANGE in my program ...
    I  am using bapi_shipemnt_create for creating shipment document but, trying to enter the date fileds using this bapi .
    can anybody please tell me how shud i pass this variables exactly ...
    i tried giving test data and checked this bapi .. the result in changing parameters is also appearing but in databade itself the date fields are not getting reflected ...
    The fields ate DTDIS ,UZDIS, DATEN,UATEN. ( i am trying to map these fields in changing parameters)
              gw_vttkvb_new-mandt = sy-mandt.
              gw_vttkvb_new-tknum = gw_return-message_v1(passing shipment number )
              gw_vttkvb_new-dtdis = gi_ship_doc-dtdis.
              gw_vttkvb_new-daten = gi_ship_doc-daten.
              gw_vttkvb_new-uzdis = gi_ship_doc-uzdis.
              gw_vttkvb_new-uaten = gi_ship_doc-uaten.
              APPEND gw_vttkvb_new TO gi_vttkvb_new.
              CALL FUNCTION 'SD_SHIPMENT_HEADER_CHANGE'
              EXPORTING
                i_tvtk                             =  '
              I_DESTINATION                      =
              I_DEPARTURE                        =
              OPT_DIALOG                         = 'X'
            IMPORTING
              E_SERV_AGENT_FROM_DELIVERY         =
              E_ROUTE_FROM_DELIVERY              =
              E_LEG_DETERMINATION_DONE           =
              E_NUMBER_OF_CHANGED_LEGS           =
                 TABLES
                   c_xvttk                            = gi_xvttk
                   c_yvttk                            = gi_yvttk
                   c_xvttp                            = gi_xvttp
                   c_yvttp                            = gi_yvttp
                   c_xvtts                            = gi_xvtts
                   c_yvtts                            = gi_yvtts
                   c_xvtsp                            = gi_xvtsp
                   c_yvtsp                            = gi_yvtsp
                   c_xvbpa                            = gi_xvbpa
                   c_yvbpa                            = gi_yvbpa
                   c_xvbadr                           = gi_xvbadr
                   c_yvbadr                           = gi_yvbadr
                   i_xtrlk                            = gi_vtrlk
                   i_xtrlp                            = gi_vtrlp
              I_DEPARTURE_SEQUENCE               =
              I_XVTFA                            =
              I_YVTFA                            =
                 CHANGING
                   c_xvttk_new                        = gi_vttkvb_new
                EXCEPTIONS
                  invalid_change                     = 1
                  route_insert_failed                = 2
                  tdlnr_insert_failed                = 3
                  status_planned_failed              = 4
                  status_registrated_failed          = 5
                  status_loading_start_failed        = 6
                  status_loading_end_failed          = 7
                  status_completion_failed           = 8
                  status_shipment_start_failed       = 9
                  status_shipment_end_failed         = 10
                  OTHERS                             = 11.
              IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
             ELSE.
                 **** Save shipment created
               CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             WAIT          =
                  IMPORTING
                    return        = gw_return.
              ENDIF.
    Regards,
    shilpa talluri .

    Hi,
    Try this
    DATA: wa TYPE zvariant.
    wa-mandt     = sy-mandt.
    wa-z_var     = 'test'.
    wa-projid      = 'test'. 
    wa-relid        = 'test'.
    wa-srtf2       = 'test'.
    wa-clustr      = 'test'.
    wa-clustd     = ''test'. 
    INSERT zvariant CLIENT SPECIFIED FROM wa.
    Raul Natu

  • Proposals are not getting generated for BOM items in MD50

    Hi Gurus,
    I have maintained strategy 50 in MRP for header material , Item category gp as LUMF & maintained consumption parameters in material master .
    For dependent requirements i have maintained BOM for production & sales usage, Strategy is blank as it is customer specific component , Item category gp is NORM , individual requirements i.e 1 in MRP 4 view.
    MRP type is PD in both materials.
    When i run a MRP thru' MD50 after getting customer order.
    it is not planning my dependent requirements i.e. proposals are not getting generated for dependent requirements (BOM materials).
    Please let me know the solution.
    Thanx in advance
    Regards,
    Nagraj Vasmate

    try to use strategy 20

Maybe you are looking for

  • No audio from hdmi on macbook pro 2011

    I just upgraed to Lion but now I can't get audio out of my HDMI. Any thoughts? Using macbook pro 2011 OS Lion, connecting to Samsung HD tv via HDMI.

  • Imac 5k stuck on apple logo screen after latest update

    Hi - i have a magazine deadline and a major issue: i've been having loads of kernel panics (see thread here Brand new imac 5k kernel panic) and having seen there was a new update figured it would be worth installing it to see if it fixed them as noth

  • Acrobat 9 (Mac) can't edit this particular interactive pdf. Why not?

    Hi, I sent a Word doc off to someone to get him to make an interactive pdf form, checkboxes etc.  My caveat was that I had to be able to edit the pdf on my Mac with my version of Acrobat (9.0).  ...And guess what.  I can't edit it. Everything works a

  • CRM Survey Suite and Web Survey

    Hi everyone, I am new in CRM and have been assigned to investigate the possible ways to send surveyes to the customers/users. In my investigations and readings, I have found that we coud use CRM Survy Suite or Web Survey. Could any one please tell me

  • Plot n spectra

    Hello - I have 3 individual power spectra, saved to three separate waveform graphs.  This cannot change, but I'd like to make a summary view that shows all three displayed on the same graph.  Problem is the "merge signals" function that I usually do