Hello!
Where to found all the list of command available for using the qemu-guest-agent for setup everything
A list where we can found all the functions available like this:
Adding static IP to network interfaces:
qm guest exec VMID netsh interface ipv4 set address name=Ethernet static IP netmask gateway
Adding DNS server into network interface:
DNS 1: qm guest exec VMID netsh interface ipv4 set dnsservers name="Ethernet" static 8.8.8.8 primary
DNS 2: qm guest exec VMID netsh interface ipv4 add dnsservers name="Ethernet" address=1.1.1.1 index=2
DNS 3: qm guest exec VMID netsh interface ipv4 add dnsservers name="Ethernet" address=9.9.9.9 index=3
For to have all the possibilities..
Thank you
Where to found all the list of command available for using the qemu-guest-agent for setup everything
A list where we can found all the functions available like this:
Adding static IP to network interfaces:
qm guest exec VMID netsh interface ipv4 set address name=Ethernet static IP netmask gateway
Adding DNS server into network interface:
DNS 1: qm guest exec VMID netsh interface ipv4 set dnsservers name="Ethernet" static 8.8.8.8 primary
DNS 2: qm guest exec VMID netsh interface ipv4 add dnsservers name="Ethernet" address=1.1.1.1 index=2
DNS 3: qm guest exec VMID netsh interface ipv4 add dnsservers name="Ethernet" address=9.9.9.9 index=3
For to have all the possibilities..
Thank you