Just to be sure.
To change the Public Network and / or Cluster Network in Ceph you can modify the Cheph configuration file:
For example, my actual configuration on my test machine:
If I want to change the networks I will have to chenge cluster_network and public_network:
Probably it will need a reboot.
Am I missing something?
To change the Public Network and / or Cluster Network in Ceph you can modify the Cheph configuration file:
Code:
/etc/pve/ceph.conf
For example, my actual configuration on my test machine:
Code:
[global]
auth_client_required = cephx
auth_cluster_required = cephx
auth_service_required = cephx
cluster_network = 10.1.0.245/22
fsid = dc0e8f62-4ab8-441b-9891-0cf905b52e87
mon_allow_pool_delete = true
mon_host = 10.1.0.245
osd_pool_default_min_size = 2
osd_pool_default_size = 2
public_network = 10.1.0.245/22
[client]
keyring = /etc/pve/priv/$cluster.$name.keyring
[mon.pveZZ]
public_addr = 10.1.0.245
If I want to change the networks I will have to chenge cluster_network and public_network:
Code:
[global]
auth_client_required = cephx
auth_cluster_required = cephx
auth_service_required = cephx
cluster_network = 10.10.10.1/25
fsid = dc0e8f62-4ab8-441b-9891-0cf905b52e87
mon_allow_pool_delete = true
mon_host = 10.1.0.245
osd_pool_default_min_size = 2
osd_pool_default_size = 2
public_network = 10.10.20.1/25
[client]
keyring = /etc/pve/priv/$cluster.$name.keyring
[mon.pveZZ]
public_addr = 10.1.0.245
Probably it will need a reboot.
Am I missing something?