Hello, we have a pair of Mellanox model sn2700 on order with Cumulus linux on order. We'll be replacing a a stack of netgear m5300 . In advance I am researching how to configure pve + the switches.
we have a 7 node cluster . each node is:
- running 4 ceph nvme osd's , 5-6 vm's and 2-3 pct.
- has a connectx-4 and a connectx-5 nic. one for ceph the other for vmbr .
the switches will be set as a mlag .
one of the switches is here and cumulus license should be sent soon.
---------------------------------------------------------------
I am working on network interfaces and have come up with this to try:
on switch:
at pve:
-------------------------------------------
I doubt that is close to a perfect configuration. If anyone has suggestions to improve please reply.
Also any general advice on using cumulus will be appreciated. their documentation is very good and easy to understand.
we have a 7 node cluster . each node is:
- running 4 ceph nvme osd's , 5-6 vm's and 2-3 pct.
- has a connectx-4 and a connectx-5 nic. one for ceph the other for vmbr .
the switches will be set as a mlag .
one of the switches is here and cumulus license should be sent soon.
---------------------------------------------------------------
I am working on network interfaces and have come up with this to try:
on switch:
Code:
### Cumulus add test vlans :
net add vlan 130 ip address 10.1.130.1/24
net add vlan 131 ip address 10.1.131.1/24
net add vlan 132 ip address 10.1.132.1/24
### Cumulus /etc/network/interfaces
auto bridge
iface bridge
bridge-ports swp1-swp8
bridge-vids 130-132
bridge-pvid 1
bridge-vlan-aware yes
at pve:
Code:
### PVE /etc/network/interfaces
auto bond3
iface bond3 inet manual
bond-slaves enp4s0f0 enp4s0f1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
mtu 9000
auto vmbr3
iface vmbr3 inet static
address 10.1.130.3/24
bridge-ports bond3
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 130-132
mtu 9000
-------------------------------------------
I doubt that is close to a perfect configuration. If anyone has suggestions to improve please reply.
Also any general advice on using cumulus will be appreciated. their documentation is very good and easy to understand.