diff --git a/docs/en/guide/pve/pve_custom.md b/docs/en/guide/pve/pve_custom.md index a58d815307..5ace08209b 100644 --- a/docs/en/guide/pve/pve_custom.md +++ b/docs/en/guide/pve/pve_custom.md @@ -181,3 +181,16 @@ echo "kvm64" > /usr/local/bin/cpu_type Specifying the default CPU TYPE in this way allows you to replace ```kvm64``` with the type you want +## When creating virtual machines or containers, you must use a custom IPv6 list + +Enter each IPv6 address to be assigned on a separate line in ```/usr/local/bin/pve_appended_content.txt```, such as: + +```shell +2a01:4f8:1c1c:94de::2 +2a01:4f8:1c1c:94de::3 +2a01:4f8:1c1c:94de::4 +2a01:4f8:1c1c:94de::5 +2a01:4f8:1c1c:94de::6 +``` + +This approach can be used when the host machine has not been fully allocated a subnet larger than /80, possesses only a few IPv6 addresses, yet requires the creation of instances with independent IPv6 addresses. \ No newline at end of file diff --git a/docs/guide/pve/pve_custom.md b/docs/guide/pve/pve_custom.md index 56e48e9fc8..4b7ef2c6f2 100644 --- a/docs/guide/pve/pve_custom.md +++ b/docs/guide/pve/pve_custom.md @@ -181,3 +181,16 @@ echo "kvm64" > /usr/local/bin/cpu_type 这样的方式指定默认的CPU的TYPE,可将```kvm64```替换为你需要的类型 +## 开设虚拟机或容器的时候需要使用自定义的IPV6列表 + +可在 ```/usr/local/bin/pve_appended_content.txt``` 中一行一个写入你待分配的IPV6地址,如 + +```shell +2a01:4f8:1c1c:94de::2 +2a01:4f8:1c1c:94de::3 +2a01:4f8:1c1c:94de::4 +2a01:4f8:1c1c:94de::5 +2a01:4f8:1c1c:94de::6 +``` + +这种方式可用于宿主机未完整分配/80以上大小的子网的时候,仅带几个IPV6的时候,又需要开设独立的IPV6地址的实例 \ No newline at end of file