Cisco Cisco 2000 Series Wireless LAN Controller

Página de 32
 
16
Release Notes for Cisco Wireless LAN Controllers and Lightweight Access Points for Release 3.2.195.10
OL-12930-01
  Important Notes
Cisco Lightweight Access Points Fail to Join Cisco Controllers
When a Cisco lightweight access point is connected to a terminal server port and reboots because of a 
join failure or timeout, this sequence repeats until the access point returns to the boot prompt and remains 
there. This condition occurs when there is no telnet session to the access point’s console port and when 
the controller is not responding to the access point’s join response.
Workaround: Disconnect the access point’s console port from the terminal server. Reprogram the 
controller to have it respond to the access point’s join request. Power cycle the access point to force a 
restart.
Upgrading External Web Authentication
When upgrading a controller from operating system release 2.0 or 2.2.127.4 to release 3.2.116.21 or 
later, update the external web authentication configuration as follows:
1.
Instead of using a preauthentication ACL, the network manager must configure the external web 
server IP address using this command:
config custom-web ext-webserver add index IP-address
Note
IP-address is the address of any web server that performs external web authentication.
2.
The network manager must use the new login_template shown here: 
<html>
<head>
<meta http-equiv="Pragma" content="no-cache"> <meta HTTP-EQUIV=”Content-Type” 
CONTENT="text/html; charset=iso-8859-1"> <title>Web Authentication</title> <script>
function submitAction(){
var link = document.location.href;
var searchString = "redirect=";
var equalIndex = link.indexOf(searchString);
var redirectUrl = "";
var urlStr = "";
if(equalIndex > 0) {
equalIndex += searchString.length;
urlStr = link.substring(equalIndex);
if(urlStr.length > 0){
redirectUrl += urlStr;
if(redirectUrl.length > 255)
redirectUrl = redirectUrl.substring(0,255);
document.forms[0].redirect_url.value = redirectUrl;
}
}
document.forms[0].buttonClicked.value = 4;
document.forms[0].submit();
}
function loadAction(){
var url = window.location.href;
var args = new Object();
var query = location.search.substring(1);
var pairs = query.split("&");
for(var i=0;i<pairs.length;i++){
var pos = pairs[i].indexOf('=');