为什么会进入维护模式?
试想一下,当一个HA组网中的两个控制器,发生了故障,两个WLC都为active,是否会出现问题?可以想象AP是什么情况,所以,WLC进入维护模式是为了避免脑裂的情况,为了避免这种情况,WLC无法到达其RMI/peer时,进入维护模式。

如下情况,备份控制器可能会进入维护模式(maintenance mode)
1、当RP down掉/关闭掉
2、当RMI IP不可达
3、当WLC的版本不同时(先启动的进入active OR RMI地址低的进入active)
4、当WLC的型号不同时(型号高级的进入active,其他的进入maintenance mode)
5、HA SKU的WLC未能发现peer

NOTE1:在maintenance mode下,设备只有SP和console能用。

关于进入维护模式的standby 设备,不能自动的从maintenance mode恢复,只有重启去恢复。
Standby WLC (Secondary Unit) will not come out of maintenance mode by itself. it will be in maintenance mode until you reboot the unit. When the device reboots, it will trigger a discovery process in the network to find its peer, if successful and finds its active pair, it negotiates the role and takes up the role of standby, if not it will go to maintenance mode
备份控制器将不能自己从维护模式中恢复。只有你重启维护模式的WLC才有可能实现。当设备重启的时候,会触发它的Discovery进程,在网络中寻找peer,如果成功找到active peer,就会进入协商角色成为standby,如果没有的话还是会进入维护模式。

如果我们需要暂时恢复网络,可以将备份控制器修改为primary 设备。例如通过命令修改unit角色,并重启:
(Cisco Controller) >config redundancy unit primary
(Cisco Controller) >reset system forced

Additional comments:
" Sometime back, for testing purpose, I  removed the redundancy port of secondary unit in standby mode, this caused the primary unit in an active state to reboot, the standby WLC become the active controller, I connected the RP and that primary unit restarts and negotiated with its peer and became the standby controller.
If i wouldn't have plugged the RP cable of secondary unit, I assume primary unit would have gone to a maintenance mode.
出于测试的目的,在standby mode的secondary unit上移除了RP,这造成了active mode的primary unit重启,standby WLC成为了active控制器,我连接上RP,并且primary unit重启并且协商成为standby 控制器。

如果我不插上secondary unit的RP连线,我想primary unit会进入maintenance mode。

来自 <https://community.cisco.com/t5/wireless-and-mobility/cisco-wlc-8540-ha-sso-maintenance-mode/td-p/2930128>

WLC HA-维护模式(Maintenance Mode)的更多相关文章

  1. 案例:WLC HA主WLC进入维护模式

    案例场景: 如图所示,7609-1和7609-2分别是网络中的核心设备,起了HSRP,7609-1连接的是WLC-1,,7609-2连接的是WLC-2,WLC1和WLC2的RP口相互连接. WLC的管 ...

  2. WLC HA模式下的注意事项

    管理控制器:1.控制器默认开启的是SSH (CLI),Secure Web/https (GUI)2.登录控制器的管理地址为Active设备所控制(主备的配置同步,所以管理地址一致)3.WLC HA状 ...

  3. Spring Cloud Netflix项目进入维护模式

    任何项目都有其生命周期,Spring Could Netflix也不例外,官宣已进入维护模式,如果在新项目开始考虑技术选型时要考虑到这点风险,并考虑绕道的可能性. 原创: itmuch  IT牧场 这 ...

  4. PowerShell管理SCOM_批量设置维护模式(上 )

    #定义存储需要置为维护模式的计算机名称列表 $serverlist = "C:\scomm\servers.txt" #定义脚本执行结果的输出位置 $server_maintena ...

  5. zabbix api 设置维护模式

    通过zabbix提供的api进行维护模式的设置 #!/usr/bin/env python # -*-coding:utf-8-*- import urllib import urllib2 impo ...

  6. ambari 维护模式及reset API 操作

    Ambari 的维护模式(Maintenance Mode)介绍 Ambari 提供的 Maintenance Mode,是为了让用户在调试或者维护 Service 的时候,抑制不必要的告警(Aler ...

  7. PowerShell管理SCOM_批量设置维护模式(下)

    #定义存储需要置为维护模式的计算机名称列表$serverlist = "C:\scomm\servers.txt"#定义RMS服务器名称$rmsServerName=”scomw. ...

  8. Laravel 5 如何实现网站在维护模式下允许指定 IP 用户访问(白名单)

    为了测试需要,有时候需要在网站处于维护模式下允许特定IP访问网站,在 Laravel 中,这可以通过为维护模式编写自定义中间件来实现. 默认情况下,Laravel 使用 CheckForMainten ...

  9. 通过CLI命令将ESXi主机进入维护模式

    将主机置于维护模式# vimsh -n -e /hostsvc/maintenance_mode_enter # vim-cmd /hostsvc/maintenance_mode_enter 退出维 ...

随机推荐

  1. Dev-Cpp/Code::Block/MinGW下使用EasyX

    众所周知,EasyX是个很香的东西,但EasyX目前只支持Visual Studio,那么如果要在MinGW(Dev-Cpp和Code::Block均使用这个编译器)上使用EasyX怎么办呢? 这篇文 ...

  2. numpy rand函数的应用

    以后使用rand(), randint()等函数. 随机浮点类型数值(均匀分布) numpy.random.rand() 产生[0,1)内的浮点型随机数 numpy.random.rand(value ...

  3. 利用Ajax实现数据的同步传输,从mysql中提取数据,通过echarts可视化

    如何将mysql数据库中的方式通过echarts可视化呢,以下面这个简单的例子向大家进行演示:   步骤一:mysql的创表和插入数据,当然这些数据也可以是你通过爬虫抓取的.     步骤二:   创 ...

  4. rabbitmq 命令行与控制台

    命令行和管控台 rabbitmqctl stop_app 关闭应用 rabbitmqctl start_app 打开应用 rabbitmqctl status 节点状态 rabbitmqctl add ...

  5. React的Component,PureComponent源码解析(二)

    1.什么是Component,PureComponent? 都是class方式定义的基类,两者没有什么大的区别,只是PureComponent内部使用shouldComponentUpdate(nex ...

  6. yii2自定义报错页面

    在Yii2版本的advanced高级模板环境中:设置404自定义页面的方法 1.config/main.php文件 'errorHandler' => [ 'errorAction' => ...

  7. Spring - MVC - 修改 Java 类后, 触发重启

    1. 概述 学习 Spring MVC 下, 如何可控的触发重启 2. 背景 学习 Spring 场景 有些时候, 改完类, 需要重启 之前有听说, Spring MVC 可以自动重启 于是想, 尝试 ...

  8. 计算机二级-C语言-程序修改题-190108记录-字符串处理

    //程序修改题:给定程序MODI1.C中函数fun的功能是:先将字符串s中的字符按正序存放到t串中,然后把s中的字符按逆序连接到t串的后面.例如:当s中的字符串为:“ABCDE”时,则t中的字符串应为 ...

  9. opencv:像素统计信息

    #include <opencv2/opencv.hpp> #include <iostream> using namespace cv; using namespace st ...

  10. 自定义xmlhttprequest

    /** * xhr_proxy.js * 通过劫持原生XMLHttpRequest实现对页面ajax请求的监听 * @author binaryfire */ const READY_STATE_CH ...