- November 10, 2024
- Posted by: James Majani
- Category: Networking

Dual-link hot standby (HSB) ensures high reliability by preventing STA network access from being affected by failures of an AC or CAPWAP links. The active and standby ACs are bound to the HSB service. The HSB channel created based on the HSB service is used to back up STA entries, ensuring service continuity during an active/standby switchover or switchback. Synchronization modes include batch, real-time, and periodic backup.
Networking description.
Two ACs are deployed in active/standby mode. The GW of AP’s management and wireless users is on the CORE_01. VLAN100 is AP management VLAN while VLAN 101 is service VLAN. Configure Dual link HSB is on AC1 and AC2, set AC1 as the active device to forward traffic. Configure HSB service on the ACs so that service information on AC1 is backed up to AC2 ensuring seamless service switchover when the active AC fails.
Step 1: Configure access switch DHCP server, core switches, aggregation switches and ARs.
*******************************************ACC_01
system-view
sysname ACC_01
#
vlan batch 100 to 101
#
interface Ethernet0/0/1
port link-type trunk
port trunk pvid vlan 100
port trunk allow-pass vlan 100 to 101
#
interface Ethernet0/0/2
port link-type trunk
port trunk pvid vlan 100
port trunk allow-pass vlan 100 to 101
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 100 to 101
#
return
*******************************************DHCP_SRV
system-view
sysname DHCP_SRV
#
vlan batch 100 to 101
#
ip pool ap_management
gateway-list 10.23.100.1
network 10.23.100.0 mask 255.255.255.0
excluded-ip-address 10.23.100.2 10.23.100.9
option 43 sub-option 1 ip-address 10.23.104.1 10.23.204.1
#
ip pool wireless_users
gateway-list 10.23.101.1
network 10.23.101.0 mask 255.255.255.0
excluded-ip-address 10.23.101.2 10.23.101.10
dns-list 10.23.101.1
#
interface Vlanif100
ip address 10.23.100.5 255.255.255.0
dhcp select global
#
interface Vlanif101
ip address 10.23.101.5 255.255.255.0
dhcp select global
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 100 to 101
#
return
*******************************************CORE_01
system-view
sysname CORE_01
#
vlan batch 100 to 103 199
#
interface Vlanif100
ip address 10.23.100.1 255.255.255.0
#
interface Vlanif101
ip address 10.23.101.1 255.255.255.0
#
interface Vlanif103
ip address 10.23.103.1 255.255.255.252
#
interface Vlanif199
ip address 10.0.0.1 255.255.255.252
#
interface GigabitEthernet0/0/1
port link-type trunk
port trunk pvid vlan 103
port trunk allow-pass vlan 100 to 101 103
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 100 to 101
#
interface GigabitEthernet0/0/3
port link-type trunk
port trunk allow-pass vlan 100 to 101
#
interface GigabitEthernet0/0/4
port link-type trunk
port trunk allow-pass vlan 199
#
ospf 1
default-route-advertise always type 2
import-route static type 2
area 0.0.0.0
network 10.23.103.0 0.0.0.3
network 10.23.105.0 0.0.0.3
network 10.0.0.0 0.0.0.3
network 10.23.100.0 0.0.0.255
network 10.23.101.0 0.0.0.255
#
return
*******************************************CORE_02
system-view
sysname CORE_2
#
vlan batch 199 203
#
interface Vlanif199
ip address 10.0.0.2 255.255.255.252
#
interface Vlanif203
ip address 10.23.203.1 255.255.255.252
#
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 203
#
interface GigabitEthernet0/0/4
port link-type trunk
port trunk allow-pass vlan 199
#
ospf 1
area 0.0.0.0
network 10.0.0.0 0.0.0.3
network 10.23.203.0 0.0.0.3
#
return
*******************************************R3
system-view
sysname R3
#
vlan batch 103 to 104
#
interface Vlanif104
ip address 10.23.104.2 255.255.255.252
#
interface GigabitEthernet0/0/0
portswitch
port link-type trunk
port trunk allow-pass vlan 104
#
interface GigabitEthernet0/0/1
mac-address 5489-9833-8442
ip address 10.23.103.2 255.255.255.252
#
ip route-static 10.0.0.0 255.255.255.252 10.23.103.1
ip route-static 10.23.0.0 255.255.0.0 10.23.103.1
ip route-static 10.23.203.0 255.255.255.252 10.23.103.1
#
return
*******************************************R6
system-view
sysname R6
#
vlan batch 203 to 204
#
interface Vlanif203
ip address 10.23.203.2 255.255.255.252
#
interface Vlanif204
ip address 10.23.204.2 255.255.255.252
#
interface GigabitEthernet0/0/0
portswitch
port link-type trunk
port trunk allow-pass vlan 204
#
interface GigabitEthernet0/0/1
portswitch
port link-type trunk
port trunk allow-pass vlan 203
#
ospf 1
area 0.0.0.0
network 10.23.204.0 0.0.0.3
network 10.23.203.0 0.0.0.3
#
return
*******************************************AGGR_01
system-view
sysname AGGR_01
#
vlan batch 104
#
interface Ethernet0/0/2
port link-type trunk
port trunk allow-pass vlan 104
#
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 104
#
return
*******************************************AGGR_02
system-view
sysname AGG_02
#
vlan batch 204
#
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 204
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 204
#
port-group 1
group-member GigabitEthernet0/0/1
group-member GigabitEthernet0/0/2
#
return
Step 2: Configure basic and Wi-Fi parameters and specify CAPWAP source.
*******************************************AC6005_01
system-view
sysname AC6005_01
#
interface Vlanif104
ip address 10.23.104.1 255.255.255.252
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 104
#
ip route-static 10.0.0.0 255.255.255.252 10.23.104.2
ip route-static 10.23.0.0 255.255.0.0 10.23.104.2
ip route-static 10.23.203.0 255.255.255.252 10.23.104.2
ip route-static 10.23.204.0 255.255.255.252 10.23.104.2
#
capwap source interface vlanif104
#
wlan
security-profile name MVP
security wpa-wpa2 psk pass-phrase jambo_987 aes
ssid-profile name MVP
ssid MVP
vap-profile name MVP
service-vlan vlan-id 101
ssid-profile MVP
security-profile MVP
regulatory-domain-profile name MVP
country-code CH
ap-group name MVP
regulatory-domain-profile MVP
radio 0
vap-profile MVP wlan 1 radio all
ap auth-mode mac-auth
ap-id 0 type-id 69 ap-mac 00e0-fc54-0cb0 ap-sn 210235448310442C5C35
ap-name AP2
ap-group MVP
ap-id 3 type-id 69 ap-mac 00e0-fc69-4b90 ap-sn 210235448310E238D720
ap-name AP1
ap-group MVP
provision-ap
*******************************************AC6005_02
system-view
sysname AC6005_02
#
vlan batch 204
#
interface Vlanif204
ip address 10.23.204.1 255.255.255.252
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 204
#
ospf 1
area 0.0.0.0
network 10.23.204.1 0.0.0.0
#
capwap source interface vlanif204
#
wlan
security-profile name MVP
security wpa-wpa2 psk pass-phrase jambo_987 aes
ssid-profile name MVP
ssid MVP
vap-profile name MVP
service-vlan vlan-id 101
ssid-profile MVP
security-profile MVP
regulatory-domain-profile name MVP
country-code CH
ap-group name MVP
regulatory-domain-profile MVP
radio 0
vap-profile MVP wlan 1 radio all
ap auth-mode mac-auth
ap-id 0 type-id 69 ap-mac 00e0-fc54-0cb0 ap-sn 210235448310442C5C35
ap-name AP2
ap-group MVP
ap-id 3 type-id 69 ap-mac 00e0-fc69-4b90 ap-sn 210235448310E238D720
ap-name AP1
ap-group MVP
provision-ap
Step 3: Configure HSB service for the two WACs.
*******************************************AC6005_01
hsb-service 0
service-ip-port local-ip 10.23.104.1 peer-ip 10.23.204.1 local-data-port 10555
peer-data-port 10555
#
hsb-service-type access-user hsb-service 0
#
hsb-service-type ap hsb-service 0
#
*******************************************AC6005_02
hsb-service 0
service-ip-port local-ip 10.23.204.1 peer-ip 10.23.104.1 local-data-port 10555
peer-data-port 10555
#
hsb-service-type access-user hsb-service 0
#
hsb-service-type ap hsb-service 0
#
Step 4: Enable AC protection and specify active and standby WAC under ap-system profile view.
*******************************************AC6005_01
wlan
ac protect enable
ap-system-profile name default
primary-access ip-address 10.23.104.1
backup-access ip-address 10.23.204.1
*****************************************2*AC6005_01
wlan
ac protect enable
ap-system-profile name default
primary-access ip-address 10.23.104.1
backup-access ip-address 10.23.204.1
Step 5: Result verification.






Simulate a failover and check AP status on the two WAC, shutdown the Capwap source interface.


When the link is faulty, the AC cannot respond to Echo messages from the AP. If the active AC does not respond after the specified number of CAPWAP heartbeat detections in the CAPWAP heartbeat interval, the AP determines that the primary tunnel has failed.
The AP sends an Echo Request message carrying information about the active AC to the standby AC. After receiving the Echo Request message, the standby AC switches to the working state, and the AP sends STA data to the standby AC.
Check our Latest Posts
Visit our YouTube channel: https://www.youtube.com/@LyfeyTechnologies
rx outreach pharmacy: Zyloprim – pharma
real viagra for sale canada: VGR Sources – generic viagra online in usa
buy viagra canadian pharmacy VGR Sources sildenafil online singapore
where to buy generic viagra online safely: VGR Sources – cheap online viagra
https://vgrsources.com/# how much is a viagra prescription
buy viagra discover card: VGR Sources – sildenafil pills buy
viagra 4 tablet: viagra fiyatı 50mg – where can i buy real viagra
viagra sale: VGR Sources – best viagra tablets india
viagra generic canada price: VGR Sources – sildenafil 20 mg online india
where can you get viagra: female viagra india online – can you buy generic viagra in canada
viagra medication VGR Sources viagra medicine online in india
https://vgrsources.com/# sildenafil best price canada
viagra uk otc: VGR Sources – sildenafil 90 mg
sildenafil rx coupon: VGR Sources – sildenafil soft tabs
pfizer viagra price: VGR Sources – viagra rx price
sildenafil 100mg viagra 50mg price in india sildenafil canadian online pharmacy
viagra 100mg buy online india: VGR Sources – purchase sildenafil citrate
viagra online canadian pharmacy paypal: where is the best place to buy viagra online – how to get viagra cheap
viagra tablet cost: VGR Sources – pinkviagraforwomen
original viagra viagra sale where can you get viagra pills
cheap generic viagra no prescription: cost for viagra – cheap viagra
viagra walmart: cost of sildenafil 30 tablets – buy cheap viagra online
generic viagra pharmacy: generic viagra lowest price – viagra online prescription
generic viagra canada pharmacy: VGR Sources – where can i get female viagra uk
viagra 100mg uk price sildenafil 100mg price uk viagra pills for sale uk
super active viagra: VGR Sources – viagra online purchase india
how to safely buy generic viagra online: VGR Sources – how to buy sildenafil online usa
https://vgrsources.com/# viagra cheap prescription
sildenafil nz pharmacy: sildenafil 1 pill – buy real viagra cheap
buy viagra discover card VGR Sources best price viagra 50 mg
female viagra online canada: sildenafil over the counter india – sildenafil 500 mg
buy sildenafil 200mg: VGR Sources – sildenafil sale uk
how to get generic viagra online: VGR Sources – buy generic viagra online canada
viagra fiyatД± 50mg where can i order viagra online in canada how to purchase viagra in india
average cost of viagra 100mg: VGR Sources – where do you buy viagra
buy cheap viagra online canada: sildenafil buy online canada – sildenafil 20 mg cost in india
viagra medication online: VGR Sources – viagra in women
sildenafil citrate medication how to get viagra pills can you buy viagra over the counter usa
https://vgrsources.com/# generic viagra from canada
how to buy sildenafil online: order viagra cheap online – price of sildenafil 100mg
viagra script: authentic viagra – sildenafil brand name india
viagra india pharmacy: how do i get viagra online – buy cheap viagra online uk
viagra brand name generic drug otc viagra online sildenafil tablets australia
generic viagra pills for sale: where can you buy sildenafil – where can you buy female viagra pill
viagra online pharmacy usa: VGR Sources – viagra over the counter
order viagra online no prescription: daily viagra pill – female viagra mexico
how much is real viagra can i buy viagra over the counter in australia cheap viagra for sale
https://vgrsources.com/# sildenafil 50 mg tablet cost
sildenafil 50mg tablets in india: VGR Sources – buy cheap viagra from india
sildenafil from india: cost of 100mg sildenafil – sildenafil 48 tabs 50 mg price
cheap viagra free shipping: viagra usa buy – viagra online canada paypal
buy viagra online nz cheap viagra pills female viagra australia for sale
prices for viagra: VGR Sources – buy cheap viagra online in canada
generic viagra for sale in canada: sildenafil 50 mg buy online – cheapest online viagra
viagra pills online usa: where to buy generic viagra in canada – sildenafil uk 100mg
best price for viagra in uk: buy viagra gel – how to buy viagra online safely in india
generic viagra for sale in usa where can you get women’s viagra where can i get viagra for women
where can i buy generic viagra in canada: VGR Sources – sildenafil 40 mg
https://vgrsources.com/# how much is viagra over the counter
sildenafil soft gel capsule: VGR Sources – where can i buy sildenafil 20mg
discount viagra 100mg: cheap generic viagra online pharmacy – average price of viagra
sildenafil 90 mg purchase viagra safely online generic viagra 100mg
buy viagra pills uk: buy cheap viagra india – generic viagra pills cheap
SemagluPharm: Semaglu Pharm – SemagluPharm
Rybelsus online pharmacy reviews SemagluPharm Semaglu Pharm
SemagluPharm: Rybelsus side effects and dosage – rybelsus cost without insurance
can i drink coffee with rosuvastatin: can rosuvastatin cause blood in urine – Crestor Pharm
LipiPharm: Lipi Pharm – Lipi Pharm
Semaglu Pharm SemagluPharm Safe delivery in the US
5 prednisone in mexico: 1 mg prednisone cost – buy prednisone online usa
Lipi Pharm: LipiPharm – LipiPharm
Online statin therapy without RX: rosuvastatin pill – can you take magnesium and rosuvastatin together
https://prednipharm.shop/# PredniPharm
Semaglu Pharm Semaglu Pharm Semaglu Pharm
SemagluPharm: Rybelsus side effects and dosage – SemagluPharm
Lipi Pharm: what is the best time of day to take lipitor – п»їBuy Lipitor without prescription USA
Semaglu Pharm: does rybelsus cause depression – Order Rybelsus discreetly
Predni Pharm 1 mg prednisone cost PredniPharm
Semaglu Pharm: SemagluPharm – Semaglu Pharm
https://crestorpharm.shop/# Crestor Pharm
PredniPharm: Predni Pharm – prednisone 20mg online pharmacy
LipiPharm buy atorvastatin online interactions with lipitor
п»їBuy Lipitor without prescription USA: LipiPharm – Lipi Pharm
CrestorPharm: Crestor Pharm – Crestor mail order USA
Semaglu Pharm can rybelsus cause pancreatitis semaglutide tiredness
CrestorPharm: CrestorPharm – CrestorPharm
LipiPharm: Discreet shipping for Lipitor – Affordable Lipitor alternatives USA
http://crestorpharm.com/# Online statin therapy without RX
Semaglu Pharm rybelsus dosages Semaglu Pharm
generic of lipitor: Lipi Pharm – LipiPharm
is crestor safe for kidneys: CrestorPharm – Crestor 10mg / 20mg / 40mg online
prednisone 20mg tablets where to buy: prednisone 20mg – PredniPharm
Crestor Pharm: does rosuvastatin affect creatinine levels – Order rosuvastatin online legally
Safe atorvastatin purchase without RX Order cholesterol medication online does lipitor cause leg cramps
Lipi Pharm: No RX Lipitor online – side effects for lipitor
http://semaglupharm.com/# Rybelsus for blood sugar control
п»їBuy Lipitor without prescription USA: Lipi Pharm – atorvastatin and sleep problems
Order rosuvastatin online legally: Crestor Pharm – Online statin therapy without RX
PredniPharm Predni Pharm purchase prednisone
200 mg prednisone daily: PredniPharm – prednisone 20mg capsule
Crestor Pharm: is rosuvastatin hard on kidneys – Over-the-counter Crestor USA
CrestorPharm Order rosuvastatin online legally CrestorPharm
https://semaglupharm.com/# Affordable Rybelsus price
LipiPharm: Lipi Pharm – LipiPharm
Semaglu Pharm: another name for rybelsus – Semaglu Pharm
side effects crestor vs lipitor Affordable cholesterol-lowering pills Crestor Pharm
Semaglu Pharm: semaglutide breastfeeding – Where to buy Semaglutide legally
Crestor Pharm: Crestor Pharm – crestor liver damage symptoms
Buy cholesterol medicine online cheap Crestor Pharm Crestor Pharm
https://crestorpharm.com/# CrestorPharm
can you take coq10 with crestor: Crestor Pharm – Best price for Crestor online USA
Semaglu Pharm: SemagluPharm – Semaglu Pharm
is 40 mg of atorvastatin a high dose: Generic Lipitor fast delivery – LipiPharm
п»їBuy Lipitor without prescription USA atorvastatin 40mg LipiPharm
atorvastatin versus rosuvastatin: Crestor Pharm – Crestor Pharm