]> git.proxmox.com Git - pve-docs.git/blame_incremental - pvenode.adoc
update link qemu documentation non web.archive
[pve-docs.git] / pvenode.adoc
... / ...
CommitLineData
1ifdef::manvolnum[]
2pvenode(1)
3==========
4:pve-toplevel:
5
6NAME
7----
8
9pvenode - Proxmox VE Node Management
10
11SYNOPSIS
12--------
13
14include::pvenode.1-synopsis.adoc[]
15
16DESCRIPTION
17-----------
18endif::manvolnum[]
19ifndef::manvolnum[]
20Proxmox Node Management
21-----------------------
22ifdef::wiki[]
23:pve-toplevel:
24endif::wiki[]
25endif::manvolnum[]
26
27The {PVE} node management tool (`pvenode`) allows to control node specific
28settings and resources.
29
30Currently `pvenode` allows to set a node's description and to manage
31the node's SSL certificates used for the API and the web GUI through `pveproxy`.
32
33ifdef::manvolnum[]
34include::output-format.adoc[]
35
36Examples
37~~~~~~~~
38
39.Install an externally provided certificate
40
41`pvenode cert set certificate.crt certificate.key -force`
42
43Both files need to be PEM encoded. `certificate.key` contains the private key
44and `certificate.crt` contains the whole certificate chain.
45
46.Setup ACME account and order a certificate for local node.
47
48-----
49pvenode acme account register default mail@example.invalid
50pvenode config set --acme domains=example.invalid
51pvenode acme cert order
52systemctl restart pveproxy
53-----
54
55endif::manvolnum[]
56
57Wake-on-LAN
58~~~~~~~~~~~
59Wake-on-LAN (WoL) allows to switch on a sleeping computer in the network by
60sending a magic packet. At least one NIC must support this feature and the
61respective option needs to be enabled in the computers firmware (BIOS/UEFI)
62configuration. The option name can vary from 'Enable Wake-on-Lan' to
63'Power On By PCIE Device', check your motherboards vendor manual, if unsure.
64`ethtool` can be used to check the WoL configuration of `<interface>` by
65running:
66
67----
68ethtool <interface> | grep Wake-on
69----
70
71`pvenode` allows to wake sleeping members of a cluster via WoL using the
72command:
73
74----
75pvenode wakeonlan <node>
76----
77
78This broadcasts the WoL magic packet on UDP port 9, containing the MAC address
79of `<node>` obtained from the `wakeonlan` property. The node specific
80`wakeonlan` property can be set by the following command:
81
82----
83pvenode config set -wakeonlan XX:XX:XX:XX:XX:XX
84----
85
86// TODO: extend and improve chapter!
87
88ifdef::manvolnum[]
89include::pve-copyright.adoc[]
90endif::manvolnum[]