You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
Prepare 2 NC nodes, each node has two nics and owns static IP.
e.g. nc1 eth0: 192.168.1.31 , nc2 eth0:192.168.1.32.
While running calyptos provision command the process hang there because the NC's br0 has been configured as DHCP automatically, and br0 got a different IP 192.168.1.103 than previous one.
If there is only one NC, below segment could be added and avoid dhcp issue:
"bridge-ip": "192.168.1.31",
"bridge-netmask": "255.255.255.0",
"bridge-gateway": "192.168.1.1",
But if there are more than one NC, above setting won't work since we can't set all the NC's br0 IP with the same one.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Prepare 2 NC nodes, each node has two nics and owns static IP.
e.g. nc1 eth0: 192.168.1.31 , nc2 eth0:192.168.1.32.
While running calyptos provision command the process hang there because the NC's br0 has been configured as DHCP automatically, and br0 got a different IP 192.168.1.103 than previous one.
Configure NCs in yml file as below:
......
clusters:
one:
cc-1: 192.168.1.167
sc-1: 192.168.1.166
storage-backend: ceph-rbd
nodes: 192.168.1.31 192.168.1.32
nc:
max-cores: 2
network:
mode: EDGE
nc-router: N
config-json:
InstanceDnsServers:
- 192.168.1.1
PublicIps:
- 192.168.1.93
- 192.168.1.98
Clusters:
- Name: one
PrivateIps:
- 192.168.112.93
- 192.168.112.98
Subnet:
Subnet: 192.168.112.0
Netmask: 255.255.255.0
Name: 192.168.112.0
Gateway: 192.168.112.2
public-interface: br0
private-interface: eth1
bridge-interface: br0
bridged-nic: eth0
If there is only one NC, below segment could be added and avoid dhcp issue:
"bridge-ip": "192.168.1.31",
"bridge-netmask": "255.255.255.0",
"bridge-gateway": "192.168.1.1",
But if there are more than one NC, above setting won't work since we can't set all the NC's br0 IP with the same one.
The text was updated successfully, but these errors were encountered: