To check the High Availability (HA) status in an Aruba Mobility Controller, you can use the CLI (Command Line Interface) or the Web UI. Hereβs how you can do it:
π§ Using CLI (SSH or Console):
Login to the controller via SSH or console.
Run the following command:
show ha
This will display the HA configuration and status including:
Role (Active/Standby)
HA state (UP/DOWN)
Synchronization status
Heartbeat info
Peer IP and state
π‘ Additional Useful CLI Commands:
Command Description show ha Shows general HA status show ha group-membership Shows the group membership of controllers in HA setup show switchinfo Shows controller role (master, standby, etc.) show redundancy Displays detailed HA redundancy state show log system 50 Check system logs for HA-related events
π Using Web UI:
Log in to the Aruba Controller Web UI.
Go to Configuration > Redundancy or Dashboard > System > Redundancy (depending on firmware).
Youβll see the controller role, peer info, and synchronization status.
π Tips:
Active controller handles client traffic.
Standby controller takes over if the active one fails.
Ensure both controllers are synchronized and licenses are shared if using license pooling.
The Aruba Wireless LAN Controller (WLC) is used to manage and control Aruba Access Points (APs) for enterprise wireless networks. This guide provides a step-by-step configuration using both CLI and GUI.
1. Initial Setup of Aruba WLC
Before configuration, ensure: β You have console or SSH access to the controller. β The controller is powered on and connected to the network. β APs can communicate with the controller.
Step 1: Access the Controller
Console Access: Use a terminal emulator like PuTTY.
SSH Access:shellCopyEditssh admin@<Aruba-WLC-IP>
Web GUI:
Open a browser and go to https://<Aruba-WLC-IP>
Login using admin/admin (default credentials).
2. Basic Controller Configuration Using CLI
Step 2: Set Up Management Interface
configure terminal interface vlan 1 ip address 192.168.1.100 255.255.255.0 exit
πΉ Assigns IP to the management VLAN.
Step 3: Set Hostname and Domain
configure terminal hostname Aruba-WLC ip domain-name example.com exit
πΉ Defines hostname and domain name.
Step 4: Configure Time and NTP
configure terminal clock timezone IST 5 30 ntp server 192.168.1.1 exit
πΉ Ensures accurate time sync.
Step 5: Configure VLAN and DHCP
configure terminal interface vlan 10 ip address 192.168.10.1 255.255.255.0 ip helper-address 192.168.10.2 # DHCP Server IP exit