zoukankan      html  css  js  c++  java
  • WLC3504 HA配置

    1、WLC3504 HA连接方式

    2、说明

    • WLC3504可以支持HA,AP SSO和Client SSO。
    • 也是通过RP端口去连接,从active到standby-hot设备同步设备配置包括management接口的地址。
    • standby-hot设备不需要单独的去配置,因为配置(包括修改了的配置)都会从active那边同步过来。
    • AP的CAPWAP状态也是同步的,但是必须是RUN状态的,也就是说在AP已经完完全全注册到WLC稳定运行工作的,也是通过RP同步。
    • 既然支持AP SSO,那一旦active设备fail了,AP不会重新开始discovery进程。
    • 当之前的active设备恢复后,是没有抢占功能的,不能切换回去成为active,而是和当前active wlc协商,并进入standby状态。

    3、WLC3504建立HA

    注意实施HA之前,先把LAG先搞好!!!当配置完毕不通的时候,可以尝试重启WLC。
    在WLC上可以打VLAN,例如这的VLAN100
    交换机的配置就是需要给对应接口配置port-channel,例如:
    Int g0/0
     channel-group 1 mode on
    Int port 1
    Sw mo tr
    Sw tr en do
    Sw tr allow vlan all  >>>>或者允许你的SSID对应的VLAN,管理对应的VLAN,已经native vlan等信息。

    Int g0/1
     channel-group 2 mode on
    Int port 2
    Sw mo tr
    Sw trunk en do
    Sw tr allow vlan all

    配置的命令:
    Active:
    config interface address redundancy-management 10.1.1.21 peer-redundancy-management 10.1.1.23
    config redundancy unit primary
    config redundancy mode sso
    config redundancy mode sso ap/client

    Standby-hot:
    config interface address redundancy-management 10.1.1.23 peer-redundancy-management 10.1.1.21
    config redundancy unit secondary
    config redundancy mode sso
    config redundancy mode sso ap/client

    4、故障示例:

    4.1、Secondary 设备

    4.2、Primary设备

    恢复过程:先重启主的,再重启备的设备。如下是备设备的log:

    好好学习,天天向上!
  • 相关阅读:
    对象引用与对象克隆
    谁被回收了
    SpringMVC 返回json
    html基础
    org.hibernate.HibernateException: No Session found for current thread
    VB6之SendMessage模拟拖放事件
    VB6之GIF分解
    VB6之反编译工具VBRezQ
    VB6之WebBrowser控件
    (转载)VB6之鼠标移出事件
  • 原文地址:https://www.cnblogs.com/MomentsLee/p/9922801.html
Copyright © 2011-2022 走看看