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
# Configurazione Cluster HA a 2 nodi con DRBD, Pacemaker, Corosync, LVM e iSCSI## Prerequisiti- Due server con:
- 2 interfacce di rete (1 per Proxmox, 1 per DRBD punto-punto)
- Disco RAID hardware con strip size 128k
- OS Linux (Debian/Ubuntu)
- Connessione diretta 10GbE tra nodi
## 1. Configurazione Rete```bash# Nodo1
sudo ip addr add 192.168.100.1/30 dev eth1
sudo ip link set eth1 up
# Nodo2
sudo ip addr add 192.168.100.2/30 dev eth1
sudo ip link set eth1 up
# Verifica
ping 192.168.100.2 # Da nodo1 a nodo2