AS5400 not doing callback

Hi
Have an AS5400 with modem cards and E1 ports, configured for dial backup with callback. Sometimes the callback doesn't complete, and in the debug output we receive the message "no interface available". Soon after in the debug, there is an incoming call in the same interface. It seems that the AS5400, after disconnecting the call to do the callback, received another call, and placed it in the same modem that would be used for callback. This happens even if there are plenty of idle mdems and E1 channels in te equipment. How can we avoid that?
Following is the debug output:
Jul 12 18:30:16.067: As2/05 DDR: PPP callback: Callback server starting to u01005460 0158232234500
Jul 12 18:30:17.067: As2/05 DDR: disconnecting call
Jul 12 18:30:28.231: As2/05 DDR: Dialer statechange to up
Jul 12 18:30:28.235: As2/05 DDR: Dialer received incoming call from <unknown>
Jul 12 18:30:31.067: As2/05 DDR: beginning callback to u01005460 0158232234500
Jul 12 18:31:05.387: As2/05 DDR: re-enable timeout
Jul 12 18:31:05.387: As2/05 DDR: beginning callback to u01005460 0158232234500
Jul 12 18:31:05.387: As2/05 DDR: No interface available for callback to u01005460 0158232234500
Jul 12 18:31:09.235: As2/05 DDR: Dialer statechange to up
Jul 12 18:31:09.235: As2/05 DDR: Dialer received incoming call from <unknown>
Jul 12 18:31:16.067: As2/05: Dialer session up timeout, 277E0410

Hi,
If you could upload the following debugs, it would be more helpful for the audience:
debug dialer
debug isdn q931 (disregard if its T1/CAS)
debug modem
debug csm modem
debug chat
debug ppp nego
debug ppp authen
debug aaa authen
debug aaa authoriz
debug callback
If possible, it would be nice to see 'show ver' and 'show run' as well. However, please make sure you hide the username/passwords and ip addresses.
Thanks and Regards,
~Zulfiqar

Similar Messages

  • Not getting callbacks for X509TrustManager

    hi,
    We have an applet trying to connect to server over SSL. Its socket communication. Here i m trying to make the applet open SSL conneciton with server.
    the applet is trying to connect to the server over a Fully qualified domain name whose ip is resolved via hosts file. I gave implementation of the X509TrustManager and added it to SSLContext. HOw ever i dont see any call back during the SSL hand shake. I verified this using debug point in eclipse.
    the code is as follows
         static {
              try {
                   TrustManager[] setupTrustManager=new TrustManager[]{new *DevTrustManager*()};
                   SSLContext sslContext = SSLContext.getInstance("TLSv1");
                   KeyStore emptyKeyStore = KeyStore.getInstance("JKS");
                   emptyKeyStore.load(null);
                   KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509", "SunJSSE");
                   keyManagerFactory.init(emptyKeyStore,null);
                   sslContext.init(keyManagerFactory.getKeyManagers(), setupTrustManager, new java.security.SecureRandom());
                   factory = sslContext.getSocketFactory();
              } catch (Exception e) {
                   e.printStackTrace();
         public static void main(String[] argv){
              SSLSocket socket = connectSocket("connservice123.company.co.in", 2147, 0);
              if(socket!=null){
                   System.out.println("conn established...\n" + socket.isConnected());
    DevTrustManager
    DevTrustManager implements X509TrustManager() {
                   public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                        System.out.println("33333333333");
                        return null;
                   public void checkClientTrusted(java.security.cert.X509Certificate[] certs, String authType) {
                        System.out.println("1111111111111");
                   public void checkServerTrusted(java.security.cert.X509Certificate[] certs, String authType) {
                        System.out.println("222222222222");
    When i run the above i get the below SOP:
    conn established...
    true
    Any ideas why the DevTrustManager methods are not getting the callback. The class is a dummy implementation of X509TrustManager with SOPS in it.

    user480471 wrote:
    We are with proper impl of SSL itself with additional checks like check the CA (to be our own CA) who is verifying the public cert of the server; verify the CN and DNS names of the public certificate etc...Not with that code. That code will accept anything. Chuck it away. If you want to check the certificates further you should be using a HandshakeCompletedListener, not a TrustManager.
    //gets the ssl socket and connects to it
    connectSocket(String host, int port){
    factory.getSocket(host, port);
    }This is not correct. There is no getSocket() method in SSLSocketFactory. Did you mean createSocket()?
    Any help? Do we have any proper tutorial over net to get my requirement runnning?There is only the JSSE Reference Guide. But you're not doing this the right way. Just use your truststore to control what server certificate signers you will trust, then check the actual server certificate recieved in a HandshakeCompletedListener. It is much simpler than what you're trying to do.

  • While updating a programme,it shows installing but it is not doing.

    While updating a programme,it shows installing but it is not doing.

    Try rebooting the ipad by pressing and holding the home and sleep/wake buttons at the same time until the apple logo appears on the screen, then let go.
    May work for you

  • An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM

    Hi,
    I am trying to get the Know Rights for a report object without any success. Everytime my code hits this method it throws an exception
    An XSD Exception occurred. The kind 'Note' does not exist in the CMS. (FWM 04030) (WBP 42029)
    I am stuck with this problem for past two days and am not able to figure out any solution
    Can anyone please help me in this issue?
    Public Function GetObjectRights(ByVal CUID As String) As RightInfo()
            Try
                Dim m_BiPlatform As BusinessObjects.DSWS.BIPlatform.BIPlatform
                Dim urls() As String = _Session.GetAssociatedServicesURL("BIPlatform")
                m_BiPlatform = BusinessObjects.DSWS.BIPlatform.BIPlatform.GetInstance(_Session, urls(0))
                Dim _RightInfo() As RightInfo = m_BiPlatform.GetKnownRights(CUID)
                Return _RightInfo
            Catch ex As DSWSException
            End Try
        End Function
    Thanks,

    Hmm... I can't think of anything else that could be causing the problem.
    I don't know of any way to exclude the 'note' right since GetKnownRights() returns all known rights (RightInfo) for the type of object passed into the method.
    A suggestion might be to try getting the knownRights using the BOE .NET SDK (not web services) to see if the same error occurs.  There is some simple sample code that you can use as a test in the [BOE .NET SDK developers guide|http://help.sap.com/businessobject/product_guides/boexir31/en/boesdk_net_dg_12_en.chm].
    If this fails as well, then I can only assume that there is some problem with your install of Enterprise as I have tried many ways to reproduce the error you are getting, but cannot.

  • LifeCycle Manager: The kind 'Note' does not exist in the CMS

    Hi there,
    I'm trying to promote a Crystal Report from one relatively fresh XI 3.1 environment to another fresh XI 3.1 environment (TEST to PROD) using LifeCycle Manager, and for this report, which has no dependencies, I get the following error when I do a Test Promote or actual Promote:
    Commit Status=Commit attempted and failed, Promotion Status=Failure : com.businessobjects.lcm.utilities.LCMException: com.businessobjects.sdk.biar.exception.XSDException$UnknownKindException: The kind 'Note' does not exist in the CMS. (FWM 04030)
    Has anyone encountered anything similar to this? I can't find any InfoObject that logically relates to the type/kind 'Note'. Perhaps it has to do with discussions?
    Thanks,
    Allan

    Hi,
    Can you try promoting it with the security option enabled.
    Based on the error condition it seems that the discussion plugin does not exist in the destination system.

  • Does iDVD work with Maverick? This is the first time I tried to burn a DVD using iDVD after upgrading to Maverick. It seems to get stuck at encoding menu stage and not doing anything.

    I tried to burn a DVD using iDVD after upgrading to Maverick, first time I tried after upgrading to Maverick a few weeks ago. It seems to get stuck at encoding menu stage and not doing anything. Does anyone else have the same problem?

    I did not have a DVD handy to burn but I have just created a small 2 minute video and created a Disk Image and also a VIDEO_TS folder, the encoding worked correctly, so it works with some items.
    You may get a better responce in the iDVD forum.
    https://discussions.apple.com/community/ilife/idvd
    regards

  • Best Buy Appliance Delivery Not Doing What They Said They Would Do. Order Cancelled.

    I recently purchased a refrigerator from bestbuy.com and chose the option to have it delivered on Tuesday the second of December (today). I received an order confirmation e-mail from best buy on the day of purchase (November 28) which stated the following (taken directly from the e-mail):
    The scheduled appointment date of your item(s) below is Tuesday, December 2, 2014
    We'll call you by 9PM the night before your appointment with an estimated arrival time window at the phone number(s) you provided at the time of purchase (with either live or pre-recorded calls).
    Thank you for shopping with us.
    Sincerely,
    Karalyn Sartor
    Vice President Customer Care
    Yesterday, on Monday the 1st of December, I got a knock on the door from the Best Buy delivery team. They had my refrigerator and were here to deliver it. I was not ready for them to deliver the refrigerator at that time, at all, as I was not expecting it. I asked the driver to please deliver it on the scheduled date. The change in scheduling happened without a postive notification.
    I checked afterward and saw that their was en e-mail sent during the evening of November 30 informing me that the refrigerator would be delivered on Monday the 1st. This e-mail was in my spam folder and I did not see it. I did not expect it either as I was under the impression that I would be called by phone prior to delivery (as stated in the original purchase confirmation e-mail). So some mistake/change in scheduling happened. Not a big deal to me.
    Thirty minutes ago I called the 1-888 number mentioned in the e-mail to inquire about what time I could expect my refrigerator to be delivered. I was told it was rescheduled for December 20th, which is not acceptable to me.
    I was told the earliest delivery date that they could honor would be for monday the 8th of December. That is unacceptable to me as well. I was advised I had no other options for delivery other than to receive it on the 8th of December, 6 days after the aggreed upon delivery date.
    In the end I cancelled the order. As a customer I do not like to be treated this way (to be told one thing at first (delivery date and that I would be called by phone), to have that one thing change, and to not be told in a *reasonable* manner that the one thing had changed.
    Best Buy customer service, If you would like to contact me you have my e-mail address. You also have my correct phone number for calling me, which your system verified when it looked up my order by phone. Until then, please consider me an unsatisfied customer that will look very closely at other buying options for all my future appliance and home electronics needs.
    Thank You.
    P.S. - The person I spoke to on the phone to inquire about and cancel my order was very courteous and professional.

    To Whom It May Concern,
    I posted earlier regarding a refrigerator delivery problem. http://forums.bestbuy.com/t5/Delivery-Installation/Best-Buy-Appliance-Delivery-Not-Doing-What-They-S...
    I've since read a few of the other posts and think I see some common issues that many others have been having:
    1. Not calling the customer. We (customers) expect someone will call us the day before a scheduled delivery date to confirm the item is being delivered and approximately what time to expect it. The confirmation e-mail you send even states that this will happen.
    2. Not notifying the customer regarding changes. We (customers) expect someone will notify us if delivery dates are changed. This is especially important if the delivery date has been moved forward, as in my case. My particular problem would have been avoided entirely if someone from Best Buy would have notified me that the refrigerator I ordered would arrive one day ahead of schedule. An e-mail is not a good enough notification when you move the shipping date forward. How do you even know I have read/received it and will be home?
    3. Not working with the customer. I've read a few forum posts where some mistake has happened, and now shipping is delayed by a signifcant amount of time (a week or more). If you (Best Buy) had some better way of working with whoever does your delivery for you, things would be better.
    In my example the original delivery date was for today (Dec 2nd). You decided to deliver a day early on the 1st without making sure I knew you were coming on a differnet day than scheduled. So I wasn't ready. At this point I believe you (Best Buy) should have tried to correct this by rescheduling the delivery so that it happened on the original delivery date, December 2nd. You could have also arranged to deliver it later that same day, I would have been ok with that and had time to make things ready. Instead the delivery got rescheduled for the 20th of December by the system, and your customer service could only move it up to December 8. In a situation like this I think it would be better if you worked more with the customer (pay a driver an hour or two of overtime to get the goods delivered on the day you said you would or delay someone else who placed their order after I placed mine). Instead I was given one and only option, delivery on December 8.
    In the end I took the other option, cancelling my order. You have lost my business on this sale and I now have a lower opinion of Best Buy as a company and a brand than I did before. This could have been avoided if you did any of the above three things.
    Thank you for your time.

  • When I am in safari, I try to bookmark a web page and it is not doing it, it worked before I updated to the ios6 version

    When I am in safari, I try to bookmark a web page and it is not doing it, it worked before I updated to the ios6 version, does any one know why ? It pulls up the screen to save it but then it is not showing up on the bookmark drop down menu, it continues to show the standard google,iPad user guide, yahoo....

    hello sofg777, when you're at a page you want to print try to press ctrl+P and select a different printer than the Microsoft XPS Document Writer which seems to be set as your default printer in firefox at the moment.

  • I may have found a software bug.  Ver 12.0.1.26   Was playing in non shuffle mode.  Turned shuffle back on but it is not doing it.  Any guesses?

    I may have found a software bug.  Ver 12.0.1.26   Was playing in non shuffle mode.  Turned shuffle back on but it is not doing it.  Any guesses?

    SadisticIron wrote:
    i just baught my first iphone and it is a jalbroken
    Buzz! Thank you for playing!
    Discussing jailbroken devices is forbidden here by the Terms of Service.
    You can not get help here.

  • I just upgraded to FF 7 and now when I open Firefox none of my history or cookies have been saved. I have checked in options that Firefox will remember my history and all relevant settings but it is not doing it. Is there a problem with this on FF7?

    I just upgraded to FF7 & now when I open it none of my history or cookies are saved. I have checked in options that Firefox will remember my history and all relevant settings but it is not doing it. Is there a problem with FF7?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    See also "Help About".
    *Tap the Alt key or press F10 to show the Menu bar.
    In current Firefox releases (29 and later) the orange Firefox menu button has been replaced by the three-bar Firefox Menu button at the far right end of the Navigation Toolbar and this button is always visible, whether you have the menu bar visible or hidden<br>A consequence of this location is that you no longer can hide the Navigation Toolbar
    *There is a star like button next to the search bar on the Navigation Toolbar to bookmark the current web page and a "Show your bookmarks" button next to it to open the Bookmarks in a drop down menu.<br>You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at the bottom of this drop-down list
    *If you bookmark a page then "Bookmark This Page" in the Bookmarks menu changes to "Edit This Bookmark"
    *You can make the title bar visible via the "Title Bar" button at the bottom left in the Customize palette window
    It is still possible to have the menu bar visible via the right-click context menu of a toolbar to have menus like the File menu with Print (Ctrl+P) and Print Preview and the Bookmarks menu available.
    See also:
    *https://support.mozilla.org/kb/how-to-make-new-firefox-look-like-old-firefox
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox
    *https://support.mozilla.org/kb/learn-more-about-the-design-of-new-firefox

  • HT1339 My ipod was not recognized by itunes and not does not power on after I restarted the ipod service in the Windows admin tools. I cannot restore the ipod since it is not recognized by my PC now. Any suggestions?

    My ipod was not recognized by itunes and not does not power on after I restarted the ipod service in the Windows admin tools. I cannot restore the ipod since it is not recognized by my PC now. Any suggestions?

    Time to replace it: $49 2nd Gen shuffle at online Apple Store...

  • I operate a windows 8,  62 bit computer.  I have ordered and downloaded the following product for AU$129 Adobe Photoshop Elements 13 (Windows,English) on the understanding that it would convert PD files to word.  It is not doing so. Is this a wrong order?

    I operate a windows 8,  62 bit computer.  I have ordered and downloaded the following product for AU$129 Adobe Photoshop Elements 13 (Windows,English) on the understanding that it would convert PD files to word.  It is not doing so. Is this a wrong order?

    if you're trying to convert pdf files to word files, you want acrobat pro or acrobat standard, Buying guide | Adobe Acrobat XI Standard
    http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Does Premier have an Screen recorder if not does adobe has one in the Cloud ?

    Basically Does Premier have an Screen recorder if not does adobe has one in the Cloud ?
    Thanks !

    Adobe Captivate is the one but it's not in the Cloud. Camstudio is also very good at that.

  • After I tried to update my Ipad mini, it kept saying hello in different languages on my lock screen and then when I slide across, it says connected to itunes but it's not doing anything!! Please help!!! And by the way it's plugged into the laptop to itune

    After I tried to update my Ipad mini to the newest update, it kept saying hello on my lock screen in different languages and then when I slide the screen across, it says connected to itunes but it's not doing anything!! By the way my Ipad mini is plugged into my computer and connected to itunes!! Please help me!!

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.

  • I am told I need to update Flashplayer.  I have downloaded the update 5 times and installed it successfully on FireFox but Safari still says I need to update.  I have gone so far as to restart before re-opening Safari.  What am I not doing?

    I am told I need to update Flashplayer.  I have downloaded the update 5 times and installed it successfully on FireFox but Safari still says I need to update.  I have gone so far as to restart before re-opening Safari.  What am I not doing?

    Enable plug-ins.
        Safari > Preferences > Security
        Web content:
        Is the box next to "Enable plug-ins"  checked?
    Best.

Maybe you are looking for

  • How do I transfer MP3 files from my PC to iPhone

    Although I've read many items concerning this issue I still can NOT understand how to transfer some of my MP3 files to my iPhone.  When I attempt to transfer or sync song from my iTunes it states it will erase all of the other songs I have on there. 

  • EPM 11.1.2.1

    Hi, Installed and configured EPM 11.1..2.1 and checked that all services are running in services.But i can't able to access the workspace. Showing error like 404 not found.When i tried diagnostics,the error said login failed,Check that the applicatio

  • ZPL Commands for Address Format in SAPSCRIPT

    Hi Experts,    Can anyone please help me.. I am trying to print the shipto address using the address paragraph format in using ZPL commands      FO35,650A0N,37,33CI13FR^FD      ADDRESS PARAGRAPH L1        ADDRESSNUMBER &VWAHN-KUADR(K)&      ENDADDRES

  • I can't brows the list in this we site there is a problem in safari !

    I can't brows the list in safari i don't know what is the problem can you help me ? I need to print some significant file from this list, but i can not see all the list i need a help as soon as possible  

  • Plugin checker not check half of plugins why?

    plugin checker not work properly , half of plugins remain from update