Hi,
I followed the wiki https://pve.proxmox.com/wiki/Separate_Cluster_Network and with this I can configure a master/slave network for corosync. Since in my 3 node cluster I also have a ceph network, is it possible to configure a master/slave separate network for this storage?
In my ceph initialization I used
So how can I configure a slave network using RRP?
this could be the configuration of master/salve networks:
Thanks.
I followed the wiki https://pve.proxmox.com/wiki/Separate_Cluster_Network and with this I can configure a master/slave network for corosync. Since in my 3 node cluster I also have a ceph network, is it possible to configure a master/slave separate network for this storage?
In my ceph initialization I used
Code:
pveceph init -network 192.168.99.0/24
this could be the configuration of master/salve networks:
Code:
root@vs1:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
# corosync master
192.168.89.1 vs1.domain.bl vs1 pvelocalhost
192.168.89.2 vs2.domain.bl vs2
192.168.89.3 vs3.domain.bl vs3
# corosync slave
192.168.88.1 vs1-slave.domain.bl vs1-slave pvelocalhost
192.168.88.2 vs2-slave.domain.bl vs2-slave
192.168.88.3 vs3-slave.domain.bl vs3-slave
#ceph master
192.168.99.1 one-ceph0.domain.bl one-ceph0
192.168.99.2 two-ceph0.domain.bl two-ceph0
192.168.99.3 three-ceph0.domain.bl three-ceph0
#ceph slave
192.168.98.1 one-ceph1.domain.bl one-ceph1
192.168.98.2 two-ceph1.domain.bl two-ceph1
192.168.98.3 three-ceph1.domain.bl three-ceph1
Thanks.