IOS 12.4(15)XW not available from Cisco Web site

Can anyone please tell me why this version is not available from Cisco Web site as I am trying to download it to test on a cisco 2851 series router .The documnet below in page 7 & 10 describe  the requirement for this version. What is the replacement version for this if that is not available?

Well, maybe I am missing something but I do not see a 12.4(15)XW release on CCO for the 2851 platform. I see references to it in documentation but I don't see actual release notes or a download link. So, where exactly did you see this particular version for this platform?
Based on the PDF provided by the OP I think he is trying to add a fax module. In the PDF it is stated a few times that you can use 12.4(15)XW or 12.4(20)T. What this basically means is that these are minimum IOS version levels that you need to use that module. You would not want to run the minimum in most cases because software defects are abundant and seem to be endless. IOS release trains are somewhat over complicated in my opinion but here is my quick take. The XW is a early deployment release. These releases are "one offs". Usually added to incorporate a new piece of hardware. Sometime after these releases come out (again, to get the product to market) the code is incorporated in a T-train (in this case, 12.4(20)T). The idea is that the T-train code is used to introduce features/hardware/etc. that will be rolled into the next main-line release (in our world that is 15.0).
Back to your issue. I can't find 12.4(15)XW but apparently p.bevilacqua has been able to find it. Maybe he would be willing to provide the link. If that doesn't pan out, I suggest that you look at releases after 12.4(20)T (including the latest service release for 12.4(20)T). They go up to 12.4(24)T. T-trains are touchy so you have to do your research and testing. I have had decent success with 12.4(20)T until recently (MGCP and T.38 fax, no joy). I have also used 12.4(24)T with OK success thus far. I know that p. bevilacqua doesn't like the 12.4T train "because its buggy". My opinion is all of this software is buggy. You have to identify the minimum release that will work with your hardware. Go to the latest minor/service release and research the bug toolkit. Oh, and always test.
OK. Down the rabbit hole I go.
HTH.
Regards,
Bill
Please remember to rate helpful posts.

Similar Messages

  • Where can I download the scripts from cisco web site

    hello :
    I need some IVR scripts for my AS5350 but I cannot find them on cisco web site.
    anybody can tell me where and what files, thank you

    Hi,
    unfortunately the TCLWare pack is not available in public. It can be downloaded only through the CCO. So, you need a CCO account in order to login inside and download it.

  • IOS 8.0.2 camera not available from lock screen

    iPhone 6, upgraded to iOS 8.0.2 last night. Now at the lock screen, the camera icon is there but you cannot scroll up to activate it.

    It works for me with iOS 8.0.2.
    As this shows (from the iPhone User Manual), you could also use Control Center.

  • My 5610 will not print from a web site. It will print from word on the computer.

    When I plug in the USB cord from the printer to the computer, I hear a bump-bump that it recognizes it. I can print anything off of the computer, but cannot print anything off of the internet. Tech support does not know what to do.

    Hello, 
    May i know the browser you are using to print the web page ( Internet Explorer / Chrome / Mozilla Firefox ) ?
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • Songs are not downloaded from any web sites

    whenever i try to download the song it starts playing

    See if you can find that MIME type in Tools > Options > Applications and try to set the action to "Always ask".
    *https://support.mozilla.org/kb/change-firefox-behavior-when-open-file

  • Cannot attach files or print from some web sites

    Having trouble attaching files to an email and printing emails

    "could not print from some web sites" problem. tried your suggestion using
    PRINT.PRINT_PRINTER, selected RESET and RESTART....problem solved.
    THANKS for your help...could have moved everything over to INTERNET
    EXPLORER but i did not want to lose my FIREFOX..thanks, again. edcff529

  • HT204266 I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the di

    I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the differences between countries' iTunes offerings? Does one really need an address and a credit card for any country to be able to access that countries iTunes store? Why these restrictions?

    You cannot.
    You cannot use another countrys itunes store.
    You must be physically locates inside the borders of a country to use that countrys itunes store and a credit card issued in that country with a valid billing address in that country.
    The owners of the distribution rights of movies/music/etc differ by country.  These distributors decide who can sell their content in that country.
    Buy from another source if your countrys itunes store does not carry somehting that you want.

  • Exception "algorithm ARC4 is not available from Provider Cryptix "

    hi all
    i am developing the application in which i am using two encryption/decryption algorithms one is "RC4" and second is "AES(256 bit key)".
    1.first i am taking the credit card number from database which is in
    the encrypted format using 'RC4".
    2.After taking the Credit card number from database i am decrypting them using RC4.
    3. After decrypting them i am encrypting them using "AES(256 bit key") and putting the paymentid and encrypted credit card number in HashMap.
    For that i have written following classes
    RC4EncMemory.java ( which is taking encrypted credit card number from database ,decrypting them using "RC4" and then encrypting them using "AES")
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import java.util.*;
    import java.util.HashMap;
    import javax.crypto.SecretKey;
    import cryptix.jce.provider.key.RawSecretKey;
    import cryptix.provider.Cryptix;
    public class RC4EncMemory
         DbAccess db=null;
         RC4EncMemory crypt=null;
         PreparedStatement pstmt=null;
         ResultSet rs=null;
         EncryptionPerformance per=null;
         AESEccryption aes=null;
         private String originalCCnumber=null;
         private int paymantid;
         private byte[] b;
         private byte[] aesencrypted;
         public RC4EncMemory()
         {db=new DbAccess();}
         public void selectAllCCNumber()
              HashMap allccnumber=new HashMap(1000);
              String qry =DbAccess.getPropertyValue("cedera.ccnumber.selectccnumberFromPayment");
              System.out.println(qry);
              try
              {rs=db.getResultSet(qry);
              if(rs!=null)
              {     crypt=getInstance();
                   while(rs.next())
                        System.out.println("In while");
                        paymantid=rs.getInt("paymentid");
                        b=rs.getBytes("ccnumber");
                        System.out.println("paymantid >>> " + paymantid);
                        originalCCnumber=DecryptCCNumber(b);
                        Security.removeProvider("RC4");
                        System.out.println("decrypted original >>> " + originalCCnumber);
                        aesencrypted=getAESEncryption(originalCCnumber);
                        //allccnumber.put(new Integer(paymantid),new String(originalCCnumber));
                   Set key=allccnumber.keySet();
                   Iterator i=key.iterator();
                   while(i.hasNext())
                   {System.out.println(" Payment id from HashMap " +(Integer)i.next());
                   System.out.println("Size of the HashMap: >>" + allccnumber.size());
              else
                   System.out.println("empty");
              allccnumber.clear();
              }catch(SQLException exp)
                             System.out.println("Exception in SQL" + exp);
                        finally
                             try{          rs.close();
                                       pstmt.close();
                                       db.conn.close();
                             }catch(Exception er){}
         public String DecryptCCNumber(byte[] encryptedCCNumber)
              {     String decrypted=null;
                   if(encryptedCCNumber!=null)
                   {decrypted = decrypt(encryptedCCNumber);
                   return decrypted;
         public String decrypt(byte data[])
              if(data == null || data.length == 0)
              return null;
              try
                   xjava.security.Cipher cipher = xjava.security.Cipher.getInstance("RC4", "Cryptix");
                   cipher.initDecrypt(rsaKey);
                   byte out[] = cipher.crypt(data);
                   return new String(out);
              catch(GeneralSecurityException se)
              { System.out.println("SecurityException in decrypt method: " + se);
              return null;
         public static synchronized RC4EncMemory getInstance()
              if(_rc4decryption == null)
                   Security.addProvider(new Cryptix());
                   _rc4decryption = new RC4EncMemory();
                   makeRC4Key();
              return _rc4decryption;
    private static void makeRC4Key()
    {          String seed = "CvMjSpVrGsTnAj";
              rsaKey = new RawSecretKey("RC4", seed.getBytes());
    public byte[] getAESEncryption(String originalCCNumber)
    {     aes=AESEccryption.getInstance();
         return aes.encrypt(originalCCNumber);
    public static void main(String args[])
         RC4EncMemory mem1=new RC4EncMemory();
         mem1.selectAllCCNumber();
         private static SecretKey rsaKey = null;
         private static RC4EncMemory _rc4decryption = null;
    In the above programs i am getting the output as follows
    output:-
    in while
    paymantid >>> 3338157
    decrypted original >>> 5856373015065936
    inside encrypt method
    Original Data----->5856373015065936
    Encrypted Data----->[B@3cc0bc
    after encryption of data
    In while
    paymantid >>> 3338169
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    In while
    paymantid >>> 3338290
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    my program is able to decrypt the only first credit card numbers using RC4 and then encrypt it using AES(as shown in bold above) but it is not able decrypt the rest of the credit card number from the database using "RC4" and it is throwing above exception regarding the "RC4" algorithm .
    can anybody tell me what is reason behind this exception? my guess is the we cann't use the two providers simultaneously.
    please anybody help me
    AESEccryption.java(which helps to encrypt the credit card number in AES using encrypt method )
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import javax.crypto.spec.SecretKeySpec;
    import org.bouncycastle.jce.provider.BouncyCastleProvider;
    import cryptix.provider.Cryptix;
    public class AESEccryption
         AESEccryption cryptAES=null;
         AESEccryption cryptAES1=null;
         public AESEccryption(){}
         public static synchronized AESEccryption getInstance()
              {     if(_aesEncryption == null)
                        Security.insertProviderAt(new BouncyCastleProvider(),3);
                        //Security.addProvider(new BouncyCastleProvider());
                        //Security.addProvider(new Cryptix());
                        _aesEncryption = new AESEccryption();
                        makeAESKey();
                   return _aesEncryption;
         private static void makeAESKey()
                   String seed = "FFF3454D1E9CCDE00101010101010101";
                   int length=seed.length();
                   if(length!=32)
                   {     System.out.println("Key size must be 32 characters only");
                        System.exit(0);
                   skeySpec = new SecretKeySpec(seed.getBytes(),0,32,"AES");
    public byte[] encrypt(String data)
         {     if(data == null)
              return null;
              try
              {     System.out.println("inside encrypt method");
                   javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance("AES");
                   cipher.init(javax.crypto.Cipher.ENCRYPT_MODE,skeySpec);
                   byte out[] = cipher.doFinal(data.getBytes());
                   return out;
              catch(GeneralSecurityException se)
                   System.out.println("SecurityException: " + se);
              return null;
         public static void main(String args[])throws Exception
         {     AESEccryption aesenc=new AESEccryption();
              aesenc.selectAllCCNumber();
              if(flag)
                   System.out.println("Flag " + flag);
         private static SecretKeySpec skeySpec = null;
         private static AESEccryption _aesEncryption = null;
    Regards
    Pandurang
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12

    Hi Nith,
    Previously I have changed the document dispostal time out to 1 year but the error still occurs.
    Now I change the document inline size from 64 KB to 27 MB (estimated max document size) and see how the LCES behaves.
    I suspect if document size is larger than document inline size then LCES will write to some temp file. After that, user does not process the task for a long time, e.g. 3 days. And during the 3 days, the unix system/ websphere auto clear the temp file. After 3 days when user accesses the task again, LCES will complain "document is not in sending server side any more" ....
    I refer to : http://blogs.adobe.com/livecycle/2008/10/livecycle_tuning_knob_default.html
    For the Document sweep interval, I think, it relates Watch Folder, not this error so I don't change it.
    Regards,
    Anh

  • I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select

    I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select.  Any help appreciated.  Thanks

    Hi Chris,
    You can't get rid of an alert. The least you can have is one that says "none".
    Nevermind, I see you learned how to edit the event.

  • My Canon MX310 Series Printer failed as the software "is currently not available from the Software Update Server"? What is the matter with Apple OSX Mountain Lion?

    Mountain Lion stopped working with our Canon MX310 Printer? Why is the software not available from the Software Update Server?

    The printer and ICA scanner driver is available from Apple. There is probably some other reason why you cannot get the drivers.
    You can also get the drivers from Canon.
    But reading your post it sounds like you were printing to the MX310 and recently it has stopped printing. Is this the case?

  • Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Because it is the producer's decision where they want their items to be available. You can request for it if you want to.
    http://www.apple.com/feedback/itunes.html

  • All SYFY online on demand has error "Content not available from this domain"

    I keep getting an error on any SYFY online on demand shows which says "Content not available from this domain." This applies to any show from SYFY that I click on to test.  Other channels don't have that error.

    Hi,
    Thanks for bringing this issue. Yes, the message should be SEVERE. This will be fixed.
    You may also want to subscribe to [email protected] and bring up any issues, enhancements.
    Regards,
    Deepak

  • Valid installation itunes pkg, is not available from network resource, what ca I do?

    I have been tryng unsuccessfully to install Itunes.  I keep getting the msg. that a valid installation pkg. is not available from its network resourse.  I have windows vista.  Sometimes it says missing .dll files.  What can I do to correct this?  My Itunes worked perfectly until I was asked to upgrade it 2 weeks ago.  Now nothing works with anything else.

    See TS3704: "The feature you are trying to use is on a network resource that is unavailable" alert appears when removing Apple software in Windows.
    tt2

  • TS1702 I can not get the 12 days of Christmas to work. The app loads but it says it is not available from the Canadian store at this time

    I can not get the 12  days of Christmas to let me get the free gift. I restarted my iPad, I reloaded the app, my iTunes is a Canadian address . The error I get is " it is not available from the Canadian store at this time"

    Hi,
    See this thread:
    https://discussions.apple.com/message/20681369#20681369
    Biti

  • Driver software is not available from Apple

    Was using an HP LaserJet 1020 without any problems until last week, when it just gave out and it shows the following error every time: "driver software is not available from Apple". Have tried to install the latest drivers but it won't allow it with the same error.
    Also tried following these instructions http://blog.jayway.com/2010/04/08/hp-laserjet-1020-in-snow-leopard/ but it gets stuck on the third step. The driver list can't be opened and it reads "driver software is not available from Apple" again.
    Any suggestions?

    From what I can tell from online research, HP never claimed the 1020 printer series was compatible with Macs or has ever developed any OS X drivers for them. For instance, from the "Specifications" tab of this product info page:
    Because of that, I'm kind of amazed that you ever got your 1020 to work with any version of OS X, unless some sort of hack or third party driver was involved. If so, you might want to check with the originator of that workaround to see if there are any new developments that would get it working again.

Maybe you are looking for

  • ERROR MESSAGES IN MODULE POOL

    hi experts, i ve a query. say i am getting an error messages in modulepool, u all knw that if an eeror  occurd flow halt in that particular screen nw hw can i get exit from transaction without using, chain-endchain, at exit command, leave prog etc pl

  • QM Quantitative results: Report

    Hello, Is there any standard report in SAP which will give the output as follows: Inspection Lot .... Characteristic 1 .... Characteristic 2 .... Characteristic 3 20000000002 ..... 10,5 mm            ..... 5,3 degree         .... 105 ft 20000000003 .

  • Switch Language from Japanese to English

    Hi All, My 120GB iPod langage settings were switched to Japanese by my 3 year old granddaughter. How do I reset to English? Thank you! Chuck

  • Formatting Question - Help, working on a deadline

    I have a FCP sequence that's 1920x816, square pixel, 23.98 fps to I need to convert to a 16:9 m2v for a DVD. I exported it to Compressor using the "best quality-90 min" setting and set the Padding pull down menu to 16:9 ... the resulting image when p

  • Unable to create delivery for sustitute delivery in CRM complaint

    Hi, I have created a complaint with sales item in CRM system.Now I created return request which is distributed to ECC as sales order.Processed Returns delivery. Everything is updated in CRM complaint. Now i created Substitute delivery request in the