Fix Proxmox root SSH to allow key-based login for cluster communication
Proxmox nodes require root SSH key access for inter-node cluster communication (web UI node switching, live migration, etc.). Set PermitRootLogin to prohibit-password in group_vars/proxmox.yml so key-based root login is allowed but password login remains disabled. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
4196ac3185
commit
e9d517f398
|
|
@ -1,6 +1,9 @@
|
||||||
---
|
---
|
||||||
# Proxmox-specific variables
|
# Proxmox-specific variables
|
||||||
|
|
||||||
|
# Allow root SSH login with keys (required for Proxmox cluster inter-node communication)
|
||||||
|
common_ssh_permit_root_login: "prohibit-password"
|
||||||
|
|
||||||
# Disable firewall on Proxmox (uses its own iptables rules)
|
# Disable firewall on Proxmox (uses its own iptables rules)
|
||||||
common_firewall_enabled: false
|
common_firewall_enabled: false
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue