Proxmox

Table of Contents

For Kali on Proxmox, see Kali Linux.

APIs

  • API viewer: /pve-docs/api-viewer/index.html
  • All VMs with IPs: /api2/json/cluster/sdn/ipams/pve/status
  • LANs: /api2/json/cluster/sdn/zones/
  • VM list: /api2/json/cluster/resources?type=vm
  • VM IP address: /api2/json/nodes/{node}/qemu/{vm-id}/agent/network-get-interfaces

Remove the license message

You do not have a valid subscription for this server.

cd /usr/share/javascript/proxmox-widget-toolkit
cp proxmoxlib.js proxmoxlib.js.back

Edit proxmoxlib.js to invert the condition on “active”.

//if (res === null || res === undefined || !res || res.data.status.toLowerCase() !== 'active') {
                    
if (res === null || res === undefined || !res || res.data.status.toLowerCase() == 'active') {

Restart the service if needed.

systemctl restart pveproxy.service

Reference

  • N/A