Settle a problem:66
This document provides a comprehensive technical procedure for converting a Cisco Aironet 2802I-E Access Point (AP) from its factory-installed Embedded Wireless Controller (EWC) software to a standard Lightweight (CAPWAP) image. The initial problem report indicated an attempt to perform this conversion via TFTP from the ROMMON (ap:) prompt, which was unsuccessful. This analysis refines that process and presents a more reliable primary method, ensuring a successful image transfer and AP conversion for integration with a Wireless LAN Controller (WLC).
The core technical challenge is to replace the existing EWC software on an AIR-AP2802I-E-K9 with a standard Lightweight AP image (e.g., ap3g3-k9w8-tar.153-3.JPJ8.tar
).
The initial steps taken were as follows:
IP_ADDR
, NETMASK
, DEFAULT_ROUTER
).tar -xtract tftp://<tftp_server_ip>/<image_name.tar> flash:
This ROMMON-based procedure is a valid method for disaster recovery but is often susceptible to failure due to underlying network connectivity issues, TFTP server configurations, or firewalls, which are not easily diagnosed from the limited ROMMON environment. While the approach is technically sound, it lacks preliminary verification steps and a more robust alternative.
To ensure a successful conversion, two methods are detailed below. Method A is the preferred and more reliable approach, while Method B outlines the corrected ROMMON recovery procedure.
This method leverages the fully booted AP’s operating system, which provides better network stack stability and error reporting.
APxxxx.xxxx.xxxx> enable
Password: <enter your enable password, default is "Cisco">
APxxxx.xxxx.xxxx#
APxxxx.xxxx.xxxx# configure terminal
APxxxx.xxxx.xxxx(config)# interface GigabitEthernet0
APxxxx.xxxx.xxxx(config-if)# ip address 192.168.1.100 255.255.255.0
APxxxx.xxxx.xxxx(config-if)# end
APxxxx.xxxx.xxxx# ping 192.168.1.200
archive download-sw
command to initiate the image transfer. This command is designed for software upgrades and conversions, automatically handling the extraction and installation process.
APxxxx.xxxx.xxxx# archive download-sw /force-reload /overwrite tftp://192.168.1.200/ap3g3-k9w8-tar.153-3.JPJ8.tar
/force-reload
: Instructs the AP to reboot automatically upon successful installation./overwrite
: Replaces the existing software image with the new one.The AP will download the image, extract it, write it to flash, and then reboot with the new Lightweight CAPWAP image.
Use this method if the AP cannot fully boot or if Method A fails. This procedure includes critical verification steps missing from the initial attempt.
ESC
key while it boots to enter the ap:
prompt.
ap: flash_init
ap: set IP_ADDR 192.168.1.100
ap: set NETMASK 255.255.255.0
ap: set DEFAULT_ROUTER 192.168.1.1
ap: ping 192.168.1.200
tar
command is guaranteed to fail. Resolve the underlying network issue before proceeding.
ap: tar -xtract tftp://192.168.1.200/ap3g3-k9w8-tar.153-3.JPJ8.tar flash:
ap: dir flash:
ap3g3-k9w8-tar.153-3.JPJ8
. Set the BOOT variable to point to the main image file within that directory.
ap: set BOOT flash:/ap3g3-k9w8-tar.153-3.JPJ8/ap3g3-k9w8-xx.153-3.JPJ8
ap: boot
.tar
file against the value provided on the Cisco Software Download page. This prevents issues caused by a corrupt image file.