In This Section: |
This procedure describes how to configure the Load Sharing Multicast, Load Sharing Unicast, and High Availability modes from scratch. Their configuration is identical, apart from the mode selection in SmartConsole Cluster object or Cluster creation wizard.
Important - See Hardware Requirements for Cluster Members and Software Requirements for Cluster Members. |
To install new cluster members for ClusterXL:
cpconfig
from the command line and select Enable cluster membership for this gateway. This change requires reboot.Note - Do not define IPv6 addresses for synchronization interfaces.
Note - You can also perform synchronization over a WAN.
Example topology:
[internal network 10.10.2.0/24] --- (VIP 10.10.2.100/24) [Cluster] (VIP 192.168.2.100/24) --- [external network 192.168.2.0/24]
To configure routing for client computers:
In R80.10, the Cluster Control Protocol (CCP) has two modes:
Mode |
Description |
---|---|
Multicast |
In this CCP mode, the CCP packets are sent to a multicast Layer 2 destination MAC address (01:00:5E:xx:yy:zz). See sk25977. This is the default CCP mode for non-Sync interfaces. |
Broadcast |
In this CCP mode, the CCP packets are sent to a broadcast Layer 2 destination MAC address (FF:FF:FF:FF:FF:FF). See sk25977 and sk36644. This is the default CCP mode for Sync interface. This is the only supported CCP mode on Bridge interfaces. Use this CCP mode if the connecting switches do not pass CCP multicast packets. |
To set the CCP mode:
In Expert mode, run: cphaconf set_ccp {multicast|broadcast}
This configuration applies immediately and survives reboot.
To monitor the CCP mode:
In Expert mode, run: cphaprob -a if
Example output:
[Expert@Member2:0]# cphaprob -a if
Required interfaces: 3 Required secured interfaces: 1
eth0 UP non sync(non secured), multicast eth1 UP non sync(non secured), multicast eth2 UP sync(secured), multicast
Virtual cluster interfaces: 2
eth0 192.168.2.63 eth1 172.30.2.63
[Expert@Member2:0]# [Expert@Member2:0]# cphaconf set_ccp multicast [Expert@Member2:0]# [Expert@Member2:0]# cat $FW_BOOT_DIR/ha_boot.conf ha_installed 1 ccp_mode multicast [Expert@Member2:0]# [Expert@Member2:0]# cphaconf set_ccp broadcast [Expert@Member2:0]# [Expert@Member2:0]# cphaprob -a if
Required interfaces: 3 Required secured interfaces: 1
eth0 UP non sync(non secured), broadcast eth1 UP non sync(non secured), broadcast eth2 UP sync(secured), broadcast
Virtual cluster interfaces: 2
eth0 192.168.2.63 eth1 172.30.2.63
[Expert@Member2:0]# [Expert@Member2:0]# cat $FW_BOOT_DIR/ha_boot.conf ha_installed 1 ccp_mode broadcast [Expert@Member2:0]# |