fix: 添加PVE的关于自定义IPV6列表分配的方式

This commit is contained in:
spiritlhl
2025-09-22 14:58:22 +00:00
parent 9739a4b3fa
commit 5f94d60edd
2 changed files with 26 additions and 0 deletions

View File

@@ -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.

View File

@@ -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地址的实例