Debug command for FXO digits on called number

I'd like to be able to debug the digits being passed out an FXO port during an external call.
Does anyone know the best debug command to use?
thanks in advance for the help.

Hi friend,
You can use the debug voip ccapi inout, check this link, may be helpful:
http://www.cisco.com/en/US/docs/ios/12_3/debug/command/reference/dbg_v1g.html#wp1106585
Regards,
-adrián.

Similar Messages

  • Debug commands for CatOs

    I am looking for some debug commands for CatOs for my 4006 or 6509 running CatOs.
    please!

    Perhaps you could tell us what the problem is and we can lead you in the right direction. 'debug' as known in IOS isn't really there in CatOS.

  • Debug Command For Sequence Number on ACL

    Is their a way to run the dubug command to see what is happening on a specific sequence number within and ACL?
    So for example if I have:
    Extended IP access list 101
    301 permit udp any eq ntp host 10.251.1.1 (12 matches)
    310 permit udp host 10.214.1.2 host 10.251.1.3
    320 permit tcp 10.0.0.0 0.255.255.255 host 10.251.134.81 eq www (12 matches)
    I want to run a debug on sequence number 310 and that is it. So I can see the type of traffic and stuff hitting this speficic sequence number of ACL 106

    try changing the acl line to:
    310 permit udp host 10.214.1.2 host 10.251.1.3 log
    add the global config command 'logging bufferred' and you can view the traffic hitting the logged acl line by using the command:
    show log
    hth
    andy

  • Debug commands for load-balancing on ACE

    is possible to debug the load-balancing decision which is provided by ACE? For example: when the traffic comes to the VIP address I need to see which serverfarm is used for this traffic and which rserver was choosen for this traffic. Thank you.

    no, you there is no debug to see the decision.
    You could capture the queues infos and see what it contains but it is quite complicated.
    A simple way is to capture a sniffer trace of front-end and backend simultaneously and you will be able to see where the traffic was loadbalanced.
    You can also use the capture feature of the ACE module to get this info.
    Gilles.

  • How to process AT END OF command for company code and transaction number.

    Hi,
      I  have report with selection screen with company code and key date.  Based ON key date given I should calculate Accrued interest for all transaction with in each company code.
        When I run report with one company code it works fine. But when I run with multiple company codes the amounts are messed up.
    I am getting all company codes with transaction details in to ITAB1 like this below, and PERFORM get_processdata. has my calculation for interest rate.
      SORT itab1 BY company_code  transaction.
      LOOP AT itab1 INTO wa_tab1.
        itab2 = wa_tab1.
        APPEND itab2.
        AT END OF transaction.
           PERFORM get_processdata.
        ENDAT.
      ENDLOOP.
    Thank you.

    Hello,
    You need to use AT New event to clear your total variables.
    AT New - this will go for first time also but we want to clear variables from second time. it requires flag to stop going it first time
    Pseudo code:
    clear: flag.
    Loop at itab1 to itab2.
    At New.
    if flag eq c_x.
    clear: <total variables>, intenal tables.
    move c_x to flag.
    endif.
    tab2 = wa_tab1.
    APPEND itab2.
    AT END OF transaction.
    PERFORM get_processdata.
    ENDAT.
    ENDLOOP.

  • SRST Calling number

      When in SRST, inbound calling works fine, outbound also works, but presents the incorrect calling number.         
    For manipulating the outbound calling number, should I use an translation pattern, such as
    voice translation-rule 10
    rule 1 /^0\(....\)/ /415232\1/
    voice translation-profile SRST_OUT
    translate calling 10
    call-manager-fallback
    translation-profile outgoing SRST_OUT
    Or, a dialplan-pattern statement.
    Thanks

    Use translation profile and apply it to SRST rather than dial-peer or voice-port, i.e.
    call-manager-fallback
    translation-profile incoming SRST_OUT
    you need to use incoming as that is from the phone to SRST.
    HTH,
    Chris

  • Debugging inbound call - need debug command

    I am debugging what I believe to be a dial plan issue on PGW but want to run a debug command on the ITP to show the actual called number of the inbound call.
    What is the best debug command to use to see the inbound called and calling numbers of a call.

    You are better off capturing an mdl trace from the PGW using per call tracing or using snoop and opening the call in Wireshark.
    The ITP will only dump hex values and you will need to decode them yourself since it is not concerned with ISUP layer. You can use the cs7 paklog feature to attach an access list to a linkset and then send the raw data to a syslog server for decoding.
    For example:
    cs7 paklog x.x.x.x dest-port xxxx src-port yyyy
    access-list 2700 instance x permit si all
    debug cs7 mtp3 paklog 2700

  • Problem with IN OUT Number, OUT RefCursor for EF Model StoredProcedure call

    When I call a stored procedure using the EF Model and implicit binding via App.config which has three parameters i.e. 'IN Number', 'IN OUT Number' and 'OUT sys_refcursor', the 'IN OUT Number' is not set correctly on return from the procedure.
    The 'IN OUT Number' is for an error code and is set to 12345 on input and is then set to 54321 by stored proceedure for return.
    The correct value is returned when the call is via OracleCommand using implicit binding via App.config but remains unchanged when the call is via EF Model and implicit binding via App.config.
    The ODP documentaion says you cannot have two OUT RefCursors when using EF Model but does not say you cannot have OUT RefCursor and other non-RefCursor OUT parameters.
    The idea behind this type of procedure is to have multiple input parameters to configure and filter the stored procedure and an output result set that consists of an error code and a collection of result rows in a RefCursor.
    I am using 11g R2 database and ODP 11g Release 2 (11.2.0.2.30) and ODAC Entity Framework beta.
    The query uses Scott/tiger schema with parameters department code, error code and list of employees for department.
    code:
    PROCEDURE TEST_PARAMETERS
    DEPT IN NUMBER,
    ERROR_CODE IN OUT NUMBER,
    DEPT_EMPLOYEES OUT sys_refcursor
    AS
    BEGIN
    DBMS_OUTPUT.PUT_LINE('DEPT = [' || DEPT || ']');
    DBMS_OUTPUT.PUT_LINE('ERROR_CODE = [' || ERROR_CODE || ']');
    OPEN DEPT_EMPLOYEES for SELECT empno, ename from emp where deptno = DEPT;
    -- set ERROR_CODE for return
    ERROR_CODE := 54321;
    END TEST_PARAMETERS;
    The App.config for implicit RefCursor binding is as follows ...
    <oracle.dataaccess.client>
    <settings>
    <add name="SCOTT.TEST_PARAMETERS.RefCursor.DEPT_EMPLOYEES"
    value="implicitRefCursor bindinfo='mode=Output'" />
    <add name="SCOTT.TEST_PARAMETERS.RefCursorMetaData.DEPT_EMPLOYEES.Column.0"
    value="implicitRefCursor metadata='ColumnName=EMPNO;
              BaseColumnName=EMPNO;BaseSchemaName=SCOTT;BaseTableName=EMP;
              NATIVE_DATA_TYPE=number;ProviderType=Int32;
              PROVIDER_DB_TYPE=Int32;DataType=System.Int32;
              ColumnSize=4;NumericPrecision=10;
                   NumericScale=3;AllowDBNull=false;IsKey=true'" />
    <add name="SCOTT.TEST_PARAMETERS.RefCursorMetaData.DEPT_EMPLOYEES.Column.1"
    value="implicitRefCursor metadata='ColumnName=ENAME;
              BaseColumnName=ENAME;BaseSchemaName=SCOTT;BaseTableName=EMP;
              NATIVE_DATA_TYPE=varchar2;ProviderType=Varchar2;
              PROVIDER_DB_TYPE=String;DataType=System.String;
              ColumnSize=10;AllowDBNull=true'" />
    </settings>
    </oracle.dataaccess.client>
    When the call is via OracleCommand both outputs are correct i.e. ERROR_CODE gets set to 54321 and the correct emplyees for department 10 are returned
    code:
    private void TestParametersViaOracleCommand()
    try
    string constr = "DATA SOURCE=ORCL;PASSWORD=tiger;PERSIST SECURITY INFO=True;USER ID=SCOTT";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    OracleCommand cmd = con.CreateCommand();
    OracleDataAdapter adapter = new OracleDataAdapter(cmd);
    DataSet ds = new DataSet();
    cmd = con.CreateCommand();
    cmd.CommandText = "SCOTT.TEST_PARAMETERS";
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.BindByName = true;
    OracleParameter dept = cmd.Parameters.Add("DEPT",
    OracleDbType.Int32,
    ParameterDirection.Input);
    dept.Value = 10;
    OracleParameter errorCode = cmd.Parameters.Add("ERROR_CODE",
    OracleDbType.Int32,
    ParameterDirection.InputOutput);
    errorCode.Value = 12345;
    // RefCursor output parameter implicitly bound via App.Config
    adapter = new OracleDataAdapter(cmd);
    adapter.Fill(ds);
    // should be 54321 and is ...
    Console.WriteLine("after call errorCode.Value = " + errorCode.Value);
    Console.WriteLine("list size = {0}", ds.Tables[0].Rows.Count);
    // only one table
    DataTable deptEmployeesTable = ds.Tables[0];
    for (int ii = 0; ii < deptEmployeesTable.Rows.Count; ++ii)
    DataRow row = deptEmployeesTable.Rows[ii];
    Console.WriteLine("EMPNO: " + row[0] + "; ENAME: " + row[1]);
    catch (Exception ex)
    // Output the message
    Console.WriteLine(ex.Message);
    if (ex.InnerException != null)
    // If any details are available regarding
    // errors in the app.config, print them out
    Console.WriteLine(ex.InnerException.Message);
    if (ex.InnerException.InnerException != null)
    Console.WriteLine(
    ex.InnerException.InnerException.Message);
    output:
    before call errorCode.Value = 12345
    after call errorCode.Value = 54321 (should be 54321!)
    list size = 3
    EMPNO: 7782; ENAME: CLARK
    EMPNO: 7839; ENAME: KING
    EMPNO: 7934; ENAME: MILLER
    However when call is via EF Model the correct employees are returned but the ERROR_CODE parameter is unchanged on return.
    code:
    private void TestParametersViaEFModel()
    var context = new ScottEntities();
    Decimal dept = 10;
    ObjectParameter errorCodeParameter = new ObjectParameter("ERROR_CODE", typeof(decimal));
    errorCodeParameter.Value = 12345;
    Console.WriteLine("before call errorCodeParameter.Value = " + errorCodeParameter.Value);
    // RefCursor output parameter implicitly bound via App.Config
    var queryResult = context.TestParameters(dept, errorCodeParameter);
    // should be 54321 and is ...
    Console.WriteLine("after call errorCodeParameter.Value = " + errorCodeParameter.Value + " (should be 54321!)");
    List<TestParameters_Result> deptEmployeesList = queryResult.ToList();
    Console.WriteLine("list size = {0}", deptEmployeesList.Count);
    for (int ii = 0; ii < deptEmployeesList.Count; ++ii)
    TestParameters_Result result = deptEmployeesList[ii];
    Console.WriteLine("EMPNO: " + result.EMPNO + "; ENAME: " + result.ENAME);
    output:
    after call errorCodeParameter.Value = 12345 (should be 54321!)
    list size = 3
    EMPNO: 7782; ENAME: CLARK
    EMPNO: 7839; ENAME: KING
    EMPNO: 7934; ENAME: MILLER
    errorCodeParameter.Value IS NOT CORRECTLY RETURNED!
    If there is no RefCursor then both outputs are identical i.e. the parameters are being passed in correctly and the problem is not with the 'IN OUT' parameter. Also same thing is true if ERROR_CODE is made an OUT parameter. Also tried changing the position of the parameter in the list but still get same problem i.e. works when OracleCommand but not when EF Model. Also note that the RefCursor results are correct for both types of call i.e. it is just a problem with the value of the 'IN OUT ERROR_CODE' parameter.
    I have also enabled debug stepping from Visual Studio 2010 into Oracle PL/SQL as described in
    "http://st-curriculum.oracle.com/obe/db/hol08/dotnet/debugging/debugging_otn.htm"
    and have verified by inspection that the correct values are being passed into the stored procedure and that the stored procedure is definitely setting the ERROR_CODE to 54321 prior to return.
    Most of our stored procedures have these type of parameters i.e. several IN params to configure the work of the stored procedure, an OUT NUMBER parameter for the Error_Code if any and a RefCursor for the result list.
    Is this a bug or a feature? Am I doing something wrong?

    Just to clarify ....
    If the ERROR_CODE parameter is made an 'OUT' parameter instead of an 'IN OUT' parameter the correct return value is given for the OracleCommand invocation but the WRONG value is still returned for the EF Model invocation i.e. just changing the parameter from 'IN OUT' to just 'OUT' does not fix the problem.

  • Add prefix 9 for incoming calling number of missed call only.

    Dear,
    I am wondering how to add the prefix 9 to incoming calling number of missed calls only, not the calling alerting number on the phone screen. For example, the local user 472 2001 calls our DID 482 3001 along with the calling number 472 2001 on the dialed phone screen, if I missed this call, in the directory missed call I can see 94722001.
    I know I can add the prefix in the field incoming called party subscriber prefix on the gateway page, but when I do this, all of the calling number information show 9.
    Thanks,
    Kirin

    If I understand you correctly, you would like to only change the missed calls/placed calls on your phones without changing the digits?
    If you have an PRI, you can use this translation rule to change calling ID only on inbound calls:
    Translation pattern to modify Caller ID to add a 9
    voice translation-rule 1
    Rule #  /match/ /set/
    (^.= Match anything begining with any number)(*= one or more digits) tranlasate to (9& = Take whatever is in the match phase and plug it in here)
    rule 1 /^.*/ /9&/ type subscriber subscriber (subscriber = ton(Ton=Type of number) value local area)
    rule 2 /^.*/ /91&/ type national national (national = ton value long distance area)
    rule 3 /^.*/ /9011&/ type international international (international = ton value international area)
    Config t
    voice translation-rule 1
    rule 1 /^.*/ /9&/ type subscriber subscriber
    rule 2 /^.*/ /91&/ type national national
    rule 3 /^.*/ /9011&/ type international international
    voice translation-profile INBOUND_PSTN
    translate calling 1
    voice-port X/X/X
    translation-profile incoming INBOUND_PSTN
    Let me know if this helps.
    John

  • Transfer called number from FSX port SPA8000 to FXO port analog PBX.

    Hello all!
    I have CUCM 8.6 which connecting with SPA8000 by SIP trunk.
    FXS port SPA8000 connect to FXO port analog PBX.
    When I call from CUCM to analog PBX through SPA8000, SPA8000 does not pass called number in line.
    Anybody have ideas?

    Here is what I would recomend, I have set this up at several installations and it works well. The only difference would be that the ones that I have setup had more than 64K between sites but that is still doable so long as you keep the traffic on that link well regulated.
    Anyhow. At each site install a VIC-2FXO and a VIC-2FXS into your 1760. You can use the higer density modules if you need more paths. Tie the FXOs to analog station ports on your PBX and the FXSs to analog CO ports. This may seem backwards but it is correct. Cisco's FXS is expecting to provide dialtone and the analog CO ports on the PBX are expecting to receive dial tone. Depending on what you are using for call processing ITS/CCME/CCM configure your gateway and your route pattern, etc. You will also need to be able to somehow access those fxs ports for outbound calls. You could have direct line access buttons on your phones and instruct users that when calling the remote site the must use lines 7 and 8 as an example. You could also setup a line pool code for these new lines.
    Now when site A wants to call Site B, they dial whatever you wish them to dial. You do whatever translations you may wish prior to sending the call. Here is how the call flow works. User at site A accesses the line either by hitting a line button or dialing the line pool code. This grabs the analog line tied to one of the FXs ports on the router. The call is then sent over the 64K link. The router at Site B then uses one of the FXO ports to pass the call to an analog station port on the other PBX. To the PBX at site B it will appear as though someone pickedu picked up an analog station and dialed a local extension.
    Hope this helps. If you need any further clarification on this let me know and I will try to clear it up further for you.

  • I am handling logistics department in a company, i am handling more than 100 calls in a day. But my iPhone 4 have only 100 number call history. How to increase my call log size or kindly suggest a better app for storing 1 month call history..

    I am handling logistics department in a company, i am handling more than 100 calls in a day. But my iPhone 4 have only 100 number call history. How to increase my call log size or kindly suggest a better app for storing 1 month call history..

    Here's one:
    https://itunes.apple.com/us/app/callog/id327883585?mt=8

  • Hi Everyone,  I am using iPhone5, my question in how to display name and contact number both stored for incoming and outgoing calls? If I have saved five different numbers with a same name, how do I recognise that from which number caller is calling?

    Hi Everyone,  I am using iPhone5, my question in how to display name and contact number both stored for incoming and outgoing calls? If I have saved five different numbers with a same name, how do I recognise that from which number caller is calling?

    I have friends all over Europe, does it matter what number they use to call me? Nope! All incoming calls are free for me.
    The only time you ever have to worry about which number is if you get charged for incoming domestic/international calls.
    You can tag their number (work/home/iphone) and that may show on the CallerID accordingly.
    It should show, John Doe
    underneath,    work/home/mobile
    For example:
    http://shawnblanc.net/images/img-0009-1.png

  • A command for finding an application's version number?

    Hello,
    I need a command for finding the version number of a specific application installed in OS X, and I need to be able to run it via the UNIX feature of Apple Remote Desktop, so that I can run it on hundreds of computers. First I tried this:
    system_profiler -detailLevel full
    It works, but it takes a long time to produce the output, because it's gathering and outputting all of the information that System Profiler provides. I don't know if there's a way to narrow it down so that it only gives me the version number of the specific application I need to know about. This is an example of what the output looks like for each application listed.
        iPhoto:
          Version: 9.2.1
          Last Modified: 10/27/11 10:05 AM
          Kind: Intel
          64-Bit (Intel): No
          App Store: No
          Location: /Applications/iPhoto.app
    Copying that to TextEdit and searching for the application's name takes way too long, especially for hundreds of computers. Are there any arguments or regular expressions I could add to the command to narrow it down, and make it only output the information I need?
    Someone suggested this command, which takes the information from Spotlight:
    mdls -name kMDItemVersion <path to file>
    That works for apps in the Applications folder, but the application I need the version number for is in the /usr/bin folder and I'm guessing that's not indexed by Spotlight, because it returns:
    kMDItemVersion = (null)
    Any help would be greatly appreciated!
    -Mike

    You rock! I'm definitely on the right track now. Yes, it's a regular application package, not a UNIX executable. Ok, so I use this command to display the Info.plist file inside that package:
    cat /usr/bin/uc/UndercoverRegistration.app/Contents/Info.plist
    And it outputs this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>UndercoverRegistration</string>
        <key>CFBundleIconFile</key>
        <string>Undercover</string>
        <key>CFBundleIdentifier</key>
        <string>com.orbicule.UndercoverRegistration</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
        <string>4.5</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>4.5</string>
        <key>NSMainNibFile</key>
        <string>MainMenu</string>
        <key>NSPrincipalClass</key>
        <string>NSApplication</string>
    </dict>
    </plist>
    So can I add arguments to that command to have it only display the version number, which is on line 18 (the value is 4.5 here)? So would I be able to display only line 18, or display whatever is below the line that reads "<key>CFBundleShortVersionString</key>"? Thanks!

  • Debug infor about FXO port

    I have a debug information showed by command"debug vpm all"about FXO port.I can't distinguish the error in the information. who can tell me how to find out the error?
    Thanks.
    debug infor:
    3d18h: ccIFShowState (vdbPtr=0x62F47D14, summary)
    3d18h: ccIFShowState (vdbPtr=0x62F49994, summary)
    3d18h: htsp_dsp_message: SEND/RESP_SIG_STATUS: state=0x0 timestamp=48919 systim8
    3d18h: htsp_process_event: [3/0/0, FXOLS_ONHOOK, E_DSP_SIG_0000]fxols_onhook_rig
    3d18h: [3/0/0] htsp_start_caller_id_rx
    3d18h: [3/0/0] htsp_set_caller_id_rx:BELLCORE
    3d18h: htsp_timer - 125 msec
    3d18h: htsp_process_event: [3/0/0, FXOLS_WAIT_RING_MIN, E_HTSP_EVENT_TIMER]fxolr
    3d18h: htsp_timer - 10000 msec
    3d18h: htsp_dsp_message: SEND/RESP_SIG_STATUS: state=0x4 timestamp=49519 systim8
    3d18h: htsp_process_event: [3/0/0, FXOLS_RINGING, E_DSP_SIG_0100]
    3d18h: fxols_ringing_not
    3d18h: htsp_timer_stop
    3d18h: htsp_timer - 10000 msec
    3d18h: [3/0/0] htsp_stop_caller_id_rx
    3d18h: hdsprm_close_cleanup
    3d18h: htsp_dsp_message: SEND/RESP_SIG_STATUS: state=0x0 timestamp=51819 systim8
    3d18h: htsp_process_event: [3/0/0, FXOLS_RINGING, E_DSP_SIG_0000]
    3d18h: htsp_dsp_message: SEND/RESP_SIG_STATUS: state=0x4 timestamp=52819 systim8
    3d18h: htsp_process_event: [3/0/0, FXOLS_RINGING, E_DSP_SIG_0100]
    3d18h: fxols_ringing_not
    3d18h: htsp_timer_stop htsp_setup_ind
    3d18h: [3/0/0] get_fxo_caller_id:Caller ID received. Message type=4 length=18 c3
    3d18h: [3/0/0] Caller ID String 04 0F 30 37 31 38 31 35 35 31 35 32 36 33 39 33
    3d18h: [3/0/0] get_fxo_caller_id calling num=5263932 calling name= calling time
    3d18h: cc_api_call_setup_ind (vdbPtr=0x62F47D14, callInfo={called=8059,called_o)
    3d18h: cc_api_call_setup_ind type 2 , prot 0
    3d18h: cc_insert_call_entry: Increment call volume counter
    3d18h: cc_insert_call_entry: current call volume: 1
    3d18h: cc_insert_call_entry: entry's incoming TRUE. is_incoming is TRUE
    3d18h: cc_incr_if_call_volume: not the VoIP or MMoIP
    3d18h: htsp_process_event: [3/0/0, FXOLS_WAIT_SETUP_ACK, E_HTSP_SETUP_ACK]
    3d18h: fxols_wait_setup_ack:
    3d18h: [3/0/0] set signal state = 0xC timestamp = 0
    3d18h: dsp_set_sig_state: [3/0/0] packet_len=12 channel_id=128 packet_id=39 sta0
    3d18h: dsp_soutput: [3/0/0]fxols_check_auto_call
    3d18h: cc_process_call_setup_ind (event=0x62ED923C)
    3d18h: >>>>CCAPI handed cid 25 with tag 200 to app "DEFAULT"
    3d18h: sess_appl: ev(24=CC_EV_CALL_SETUP_IND), cid(25), disp(0)
    3d18h: sess_appl: ev(SSA_EV_CALL_SETUP_IND), cid(25), disp(0)
    3d18h: ssaCallSetupInd
    3d18h: ccCallSetContext (callID=0x19, context=0x631FB148)
    3d18h: ssaCallSetupInd cid(25), st(SSA_CS_MAPPING),oldst(0), ev(24)ev->e.evCall1
    3d18h: ssaCallSetupInd finalDest cllng(5263932), clled(8059)
    3d18h: ssaCallSetupInd cid(25), st(SSA_CS_CALL_SETTING),oldst(0), ev(24)dpMatch0
    3d18h: ssaSetupPeer cid(25) peer list: tag(100) called number (8059)
    3d18h: ssaSetupPeer cid(25), destPat(8059), matched(4), prefix(), peer(62A8DF54)
    3d18h: ccCallProceeding (callID=0x19, prog_ind=0x0)
    3d18h: ccCallSetupRequest (Inbound call = 0x19, outbound peer =100, dest=, para1
    3d18h: ccCallSetupRequest numbering_type 0x81
    3d18h: ccCallSetupRequest encapType 2 clid_restrict_disable 1 null_orig_clg 0 c2
    3d18h: dest pattern 8059, called 8059, digit_strip 0
    3d18h: callingNumber=5263932, calledNumber=8059, redirectNumber= display_info= 0
    3d18h: accountNumber=, finalDestFlag=1,
    guid=7ea5.51a9.17e5.11cc.8034.e670.5153.4d65
    3d18h: peer_tag=100
    3d18h: ccIFCallSetupRequestPrivate: (vdbPtr=0x62CDA89C, dest=, callParams={call1
    3d18h: ccIFCallSetupRequestPrivate: (vdbPtr=0x62CDA89C, dest=, callParams={call)
    3d18h: cc_insert_call_entry: not incoming entry
    3d18h: cc_insert_call_entry: entry's incoming FALSE. is_incoming is FALSE
    3d18h: ccSaveDialpeerTag (callID=0x19, dialpeer_tag=0x64)
    3d18h: ccCallSetContext (callID=0x1A, context=0x631FB6BC)
    3d18h: ccCallReportDigits (callID=0x19, enable=0x0)
    3d18h: cc_api_call_report_digits_done (vdbPtr=0x62F47D14, callID=0x19, disp=0)
    3d18h: sess_appl: ev(52=CC_EV_CALL_REPORT_DIGITS_DONE), cid(25), disp(0)
    oldst(SSA_CS_MAPPING)cfid(-1)csize(0)in(1)fDest(1)
    3d18h: -cid2(26)st2(SSA_CS_CALL_SETTING)oldst2(SSA_CS_MAPPING)
    3d18h: ssaReportDigitsDone cid(25) peer list: (empty)
    3d18h: ssaReportDigitsDone callid=25 Reporting disabled.
    3d18h: htsp_process_event: [3/0/0, FXOLS_PROCEEDING, E_HTSP_PROCEEDING]fxols_ofc
    3d18h: htsp_timer - 120000 msec
    3d18h: cc_api_supported_data data_mode=0x10002
    3d18h: cc_incr_if_call_volume: remote IP is x.x.x.x
    3d18h: cc_incr_if_call_volume: hwidb is Serial1/0:0
    3d18h: cc_incr_if_call_volume: create entry in list: 1
    3d18h: ccTDUtilGetInstanceCount: For tagID[1] of callID[26]
    3d18h: ccTDPvtProfileTableObjectAccessManager: No profileTable set for callID[2]
    3d18h: ccTDUtilGetInstanceCount: For tagID[2] of callID[26]
    3d18h: ccTDPvtProfileTableObjectAccessManager: No profileTable set for callID[2]
    3d18h: htsp_dsp_message: SEND/RESP_SIG_STATUS: state=0xC timestamp=53222 systim8
    3d18h: htsp_process_event: [3/0/0, FXOLS_PROCEEDING, E_DSP_SIG_1100]fxols_offhoc
    3d18h: htsp_timer2 - 350 msec
    3d18h: cc_api_call_proceeding(vdbPtr=0x62CDA89C, callID=0x1A,
    prog_ind=0x0, rawmsgPtr=0x0)
    3d18h: sess_appl: ev(21=CC_EV_CALL_PROCEEDING), cid(26), disp(0)
    3d18h: cid(26)st(SSA_CS_CALL_SETTING)ev(SSA_EV_CALL_PROCEEDING)
    oldst(SSA_CS_MAPPING)cfid(-1)csize(0)in(0)fDest(0)
    3d18h: -cid2(25)st2(SSA_CS_CALL_SETTING)oldst2(SSA_CS_CALL_SETTING)
    3d18h: ssaCallProc
    3d18h: ccGetDialpeerTag (callID=0x19)
    3d18h: ssaIgnore cid(26), st(SSA_CS_CALL_SETTING),oldst(1), ev(21)
    3d18h: cc_api_call_alert(vdbPtr=0x62CDA89C, callID=0x1A, prog_ind=0x0, sig_ind=)
    3d18h: sess_appl: ev(7=CC_EV_CALL_ALERT), cid(26), disp(0)
    3d18h: cid(26)st(SSA_CS_CALL_SETTING)ev(SSA_EV_CALL_ALERT)
    oldst(SSA_CS_CALL_SETTING)cfid(-1)csize(0)in(0)fDest(0)
    3d18h: -cid2(25)st2(SSA_CS_CALL_SETTING)oldst2(SSA_CS_CALL_SETTING)
    3d18h: ssaAlert
    3d18h: ccGetDialpeerTag (callID=0x19)
    3d18h: ccCallAlert (callID=0x19, prog_ind=0x0, sig_ind=0x1)htsp_alert_notify
    3d18h: htsp_process_event: [3/0/0, FXOLS_PROCEEDING, E_HTSP_EVENT_TIMER2]fxols_m
    3d18h: htsp_timer_stop
    3d18h: htsp_timer_stop2
    3d18h: cc_api_call_disconnected(vdbPtr=0x62F47D14, callID=0x19, cause=0x10)
    3d18h: sess_appl: ev(11=CC_EV_CALL_DISCONNECTED), cid(25), disp(0)
    3d18h: cid(25)st(SSA_CS_ALERT_RCVD)ev(SSA_EV_CALL_DISCONNECTED)
    oldst(SSA_CS_CALL_SETTING)cfid(-1)csize(0)in(1)fDest(1)
    3d18h: -cid2(26)st2(SSA_CS_ALERT_RCVD)oldst2(SSA_CS_CALL_SETTING)
    3d18h: ssaDiscSetting
    3d18h: ssaFlushPeerTagQueue cid(25) peer list: (empty)
    3d18h: ssa: Disconnected cid(25) state(17) cause(0x10)
    3d18h: ccCallDisconnect (callID=0x19, cause=0x10 tag=0x0)
    3d18h: cc_api_get_transfer_info: (callID=0x19)
    3d18h: ccCallDisconnect (callID=0x1A, cause=0x10 tag=0x0)
    bazhong#sh voice call su
    PORT CODEC VAD VTSP STATE VPM STATE
    ============ ======== === ==================== ======================
    3/0/0 None y S_SETUP_IND_PEND FXOLS_RINGING
    3/0/1 - - - FXOLS_ONHOOK
    Sincerely

    I just received the response from customer engineer about the issue that the problem is the IVR cannot make the correct response to the call from the branch office. the originated caller only hear the normal ring, but can't hear the IVR replied sound just like" welcome to xxx company". Could u tell me how to make the right troubleshooting to solve the problem? I have a question that whether the call can arrive the network gateway correctly, but can't be transferred to the call manager gateway correctly. Wait for your help. Thanks
    Sincerely

  • Voip IP thelephony bad Calling number interpretation

    HI folks,
    We are using a CUCM 6.x and h323 gw with BRI interfaces. in last days there is a problem with calling number interpretation on the external phone calls. there are missing last 2 digits on the interpreted number.
    I have checked the output of the Caling number in the setup message outgoing from the GW and the phone number is in correct format. But on my display I miss last 2 digits of the phone number.
    Users are using CIPC
    Can be the problem with the numbers in the CUCM or on the provider side?
    Not every number is affected with this issue.
    I have used the debug ISDN q931 to check the outgoing traffic.
    Thanks in advance

    Hi Josh,
    meanwhile we have solved the issue, we have used traditional route patterns..
    the problem was in the sending wrong type and plan settings to ISDN provider (External phone number mask didnt matched the translation pattern on the GW and therefore it was sent like unknown/unknown and correct value should be Plan : ISDN and Type: National)
    thank you very much for a piece of your time  and for replying on this topic.

Maybe you are looking for