Is it possible to convert a LWAPP AP without the upgrade tool

I have a considerable number of access points to convert. All access points are new, so that they have the MIC of Cisco. So I should be able to just TFTP image on access points, but I can't find any info on this.

It would be much faster for me that I could make dozens of AP at the same time, and I wouldn't have to deal with the upgrade tool quite flaky. Did anyone done this before?

In fact you can do. The main goal of the upgrade tool is to generate a SSC and add the string SSC to the controller. If you have a microphone, the upgrade tool allows to bypass the process of generation of SSC and executes TFTP. You can telnet to an IOS AP and run

"archive download-SW tftp://x.x.x.x/c1240-rcvk9w8-tar.123-11.JX1.tar.

and the IOS AP basis during the restart will load the code base LWAPP, join the controller and improve itself to match the revision of the code of the controller. Now I don't know if this is supported, but your initial question was about the possibility. So yes, that it can be done without the upgrade tool, as long as you have an AP with microphone installed.

Good luck.

Tags: Cisco Wireless

Similar Questions

  • Hello! Is it possible to convert a trace made with the Brush tool a blob in a simple brush trace (a simple vector line - not two lines with a filling in between)? Thank you very much for your help!

    Hello!

    Is it possible to convert a trace made with the Brush tool a blob in a simple brush trace (a simple vector line - not two lines with a filling in between)? Thank you very much for your help!

    No, I don't think.

  • I'm subscribed to creative cloud in November and I am newly a student. Is it possible to convert my subscription to pay the price "student"?

    I'm subscribed to creative cloud in November and I'm newly student since January. Is it possible to convert my subscription to pay the price "student"? I searched but I can't find the answer. Thank you!

    First of all, contact Adobe to cancel your current subscription

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

    Second, Adobe for education... Start here https://creative.adobe.com/join/edu

    Educational https://creative.adobe.com/plans?plan=edu

    FAQ https://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html

    When you purchase a subscription to education, the terms you "click to accept" should be clear about the first/last years

    -Intro price http://forums.adobe.com/thread/1448933?tstart=0 one can help

    http://www.Adobe.com/products/creativecloud/students.edu.html

    http://www.Adobe.com/education/students/student-eligibility-Guide.edu.html

    Redemption Code https://creative.adobe.com/educard

    Proof of ID http://www.adobe.com/store/au_edu/academic_id.html

  • is it possible to fill two paths opened by the pen tool and the two paths open close the other?

    is it possible to fill two paths opened by the pen tool and the two paths open close the other?

    You should find the forum for any product it is and post your questions there.

    Here is a link to a page that provides links to all of the Adobe forums...

    The Forum links page: https://forums.adobe.com/welcome

  • Is it possible to save photos from lightroom without the original file?

    I recently imported photos into lightroom, but I did not back up the original files on my computer and they are deleted from my card.  The images still appear in lightroom.  Is it possible to save them from lightroom without the original file?

    Your images are not - and have never had - in Lightroom, they are just referenced in the Lightroom database.

    Lightroom generates jpeg previews of the originals, however, and you can export users export preview plugin of Rob Cole: robcole.com - PreviewExporter.

    To be clear, however, that are not originals.

  • Is it possible to convert HTML to PDF without pagination?

    I have a HTML file I want to convert to PDF. Ideally, I would like the PDF file consists of a long page without be divided into different pages. Is this possible?

    I don't want to cut too far the image that it is unreadable. I tried to adjust the page size settings, but the page larger than I can generate is a tabloid portrait orientation (14 x 17), but she still print to more than one page.

    If paging cannot be deleted, does anyone know of any HTML/CSS code that I can use to break pages in some places? If I am forced to use a PDF file paginated, I at least don't want items in page break in the middle.

    I use Acrobat Pro XI on a MacBook Pro. Browser-Wise, I have Firefox, Chrome and Safari installed, if the HTML file to open in one of them made a difference.

    Thanks in advance, aj

    You can create a custom page size, BUT you go through the Acrobat interface

    File > create > PDF Page Web... >

    In creating a PDF file of the Web Page window, put in the URL that you want to capture

    In creating a PDF file of the Web Page window, click the settings button

    in the Web Page Conversion Settings window, click the Page Layout tab

    In the middle sections, Page Size popup menu select Custom

    In the width field, set the size of the width of the page in inches

    in the field height set the height in inches

    In the section margins, you set the margins (up, down, left, right) in the fields in inches

    In the section value Portrait or Landscape Orientation

    in section scaling set whether or not you want to scale the contents of the page

    in the Web Page Conversion Settings window, click the OK button

    In creating a PDF file of the Web Page window, click Create.

  • Is it possible to convert a Muse page in the format Adobe Edge animate .oam?

    I have a program that can import files in the format Adobe Edge animate (.oam). Is there a way to package a Muse html to be used as a .oam file?

    Hi Don,

    Files of Muse has a .muse extension and this can not be opened in Adobe Edge animate. What you can do is export your file to .muse in HTML using Muse.  Now, open the html file that muse generates for its pages in Adobe Edge animate.

    From there, you can publish the html file in a file .oam using Adobe Edge animate.

    However please make sure of course that you have changed the settings for publication in Adobe Edge animate as it is also creates a file .oam in your html file when it publishes.

    Please let me know if you are able to do this.

    Kind regards

    Rohit Nair

  • Is it possible to group several columns individually without the help of the union?

    Hi, if I have a table with a column numebr I want group, for example, sex, nationality, age and I want to present a summary of this kind:

    County group
    10 male
    23 women
    British 19
    14 Irish
    18 10

    ...
    etc.

    Or even better:
    County group
    10 men
    Sex-wife 23
    British Nationaility 19
    14 Irish
    10 to 18 years

    Is it possible without using loads of trade unions? I just want to do the best way and most effective the table involved has > 100 million lines.

    Thank you very much

    Jen :)

    Hey, Jen,

    Here is another way, which could be faster because it does not unpivot data:

    SELECT    CASE  0
               WHEN  GROUPING (gender)       THEN  'Gender'
               WHEN  GROUPING (nationality)  THEN 'Nationality'
               WHEN  GROUPING (age)         THEN 'Age'
           END                    AS label
    ,       COALESCE ( gender
                   , nationality
                 , TO_CHAR (age)
                 )           AS val
    ,       COUNT (*)          AS cnt
    FROM       t
    GROUP BY  GROUPING SETS ( (gender)
                              , (nationality)
                   , (age)
                   )
    ORDER BY  label
    ,            val
    ;
    

    Output, using the data of knapen:

    LABEL           VAL                    CNT
    --------------- --------------- ----------
    Age             25                       2
    Age             30                       2
    Age             40                       2
    Age             45                       2
    Age             50                       2
    Gender          F                        5
    Gender          M                        5
    Nationality     BRITISH                  4
    Nationality     INDIAN                   3
    Nationality     IRISH                    3
    
  • The catalog Converter did not work during the upgrade of items 11 to 13

    The catalogue did not I fixed it tried again and nothing now the organizers items 11 and 13 do not work.

    Photoshop Elements

  • Is it possible to move a line drawn with the Brush tool

    I created a document in Photoshop CC. I drew a number of line using the Brush tool in the toolbar on the left. One of the lines must be pushed a little. I can't find a way to select the line to move it. How can I do this?

    Assuming that the race is separated from the others properly, you can select around it (for example, with the rectangular selection tool or the Polygonal Lasso tool), and then simply drag the pixels to where you want.

    Note that if you work on background , it will fill the space left with the color of the background color swatch in the tools palette.

    -Christmas

  • Is it possible to convert the recovery CD into Windows installation CD?

    Hello

    I bought a laptop satellite and partitioned the hard drive!

    The problem now is that if I want to install windows mce 2005 again the reovery cd deletes all information of hard disk partition!

    My question is: is it possible to convert the toshiba recovery cd/DVDs in a normal working windows installation cd?

    Or is it possible to extract the image (.tpa /.000.001.002,.003,.004) files so that I can easily burn it to cd and copy the files extracted to the hard drive?

    I hope someone can help me!

    THX

    Chris

    Hello

    Something like that is not possible. On the recovery of the media it is an image that cannot be split. As far as I know with CD recovery facilities, it is possible to install the OS on the first partition (if several available). You can also create own partitions.

    Please carefully check the menu at the beginning of the procedure of collection facilities.

  • Is it possible to convert Sidewinder Force Feedback wheel USB device?

    Original title: sidewinder force steering wheel feedback

    I have a fairly old sidewinder force wheel sterring feedback, which is a plug connection, not usb.  Is it possible to convert / and if you also think that it will work?

    Hello
     
    I doubt if this would be converted to USB connection since it's an old device that is compatible with XP only. For the best experience in games, I personally suggest you to upgrade the perimeter game, for example, Microsoft SideWinder Mouse.
    For more information on this product, please see the following site:
     
     
    If you have any suggestions for us, you can post them here .
     
    Aziz Nadeem - Microsoft Support

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • Is it possible to convert the T61 system so that it can use an infrared remote control?

    Is it possible to convert the T61 system so that it can use an infrared remote control?

    Canon and many other manufacturers of consumer electronics, provides instructions on the operation of the optional accessories in the manual of instructions for the accessory.  Manual user for the primary device will usually include a page that lists compatible accessories that are available for the device.

  • AP1142N "AP not supported" error converting to LWAPP

    Try to update a standalone AP-AIR-AP1142N-E-K9 (C1140-K9W7M software, version 12.4 (21a) JA1) with the tool to upgrade but get the error message "unsupported AP.  Version of the tool is: CiscoAironet-AP-to-LWAPP-Upgrade-Tool-v205.exe

    What is conversion taken Lwapp supported for the AP1142N and how can I convert?

    Thanks for any help.

    Alexander

    Here's another method:

    Copy the IOS LWAP (with a prefix "RRs" in the name of the file) for the AP and let to the AP that the boot image.  Your AP can now join a WLC.

  • I have a pdf file and I need to convert to word to modify the document.  Is this possible?

    I have a pdf file and I need to convert to word to modify the document.  Is this possible?

    As far as I know, this is not possible with just the free reader. You will need Acrobat or one of its associated services.

Maybe you are looking for