Proxmox VE Host Networking with Open vSwitch and LACP Bonding
Install Open vSwitch
apt update
apt install openvswitch-switch -y
Define LACP Bond
cat >> /etc/network/interfaces <<'EOF'
auto bond0
iface bond0 inet manual
ovs_type OVSBond
ovs_bridge vmbr0
ovs_bonds eno1 eno2
ovs_options bond_mode=balance-tcp lacp=active other_config:lacp-time=fast
EOF
Conf ...
Posted on Thu, 16 Jul 2026 16:02:12 +0000 by Warmach
Creating a Proxmox VE Cluster Across Multiple Nodes
Initialize a Cluster on the First Host
Log into the initial Proxmox instance, referred to here as host-alpha. Use the cluster management tool to form a new group:
pvecm create alpha-group
This command generates the Corosync authentication material, writes it to /etc/corosync/authkey, and produces an updated /etc/pve/corosync.conf. The cluster ...
Posted on Sat, 30 May 2026 22:46:28 +0000 by kiss the robot
Deploying a Proxmox VE Ceph High-Availability Cluster with OVS Bonding
Cluster Installation
Refer to the official documentation for basic cluster installation:
Proxmox VE Cluster Installation Guide
Management and Bussiness Network Setup
Confiugre the management and business networks as described in:
Proxmox VE Network Configuraton
Ceph Network Configuration
Create OVS bonds and VLAN interfaces for Ceph traffic ...
Posted on Wed, 13 May 2026 10:30:13 +0000 by mwl707