diff --git a/.vitepress/config/cn.ts b/.vitepress/config/cn.ts
index 7ca7b19..a41a593 100644
--- a/.vitepress/config/cn.ts
+++ b/.vitepress/config/cn.ts
@@ -79,6 +79,10 @@ export const cn = defineConfig({
text: 'Web 控制台',
link: '/web',
},
+ {
+ text: '配置助手',
+ link: 'https://easytier.rs/assistant',
+ },
{
text: '提交反馈',
link: 'https://github.com/EasyTier/EasyTier/issues',
diff --git a/.vitepress/config/en.ts b/.vitepress/config/en.ts
index 02ad84e..7192ea8 100644
--- a/.vitepress/config/en.ts
+++ b/.vitepress/config/en.ts
@@ -76,6 +76,10 @@ export const en = defineConfig({
text: 'Web Console',
link: '/en/web',
},
+ {
+ text: 'Config assistant',
+ link: 'https://easytier.rs/assistant',
+ },
{
text: 'Submit Feedback',
link: 'https://github.com/EasyTier/EasyTier/issues',
diff --git a/en/guide/network/config-file.md b/en/guide/network/config-file.md
index 0788ea4..fc73919 100644
--- a/en/guide/network/config-file.md
+++ b/en/guide/network/config-file.md
@@ -14,6 +14,14 @@ Running with parameters can generate a configuration file with the corresponding
Running `easytier-core` directly without parameters will generate the minimal configuration file.
+## EasyTier Assistant
+
+If you do not want to write the configuration file manually, you can use [EasyTier Assistant](https://easytier.rs/assistant) to generate one, then load it with the `-c` parameter:
+
+```sh
+easytier-core -c ./config.toml
+```
+
## Multiple Configuration Files Startup
You can specify multiple configuration files through the `-c` parameter. EasyTier will load multiple configuration files in one process and start multiple virtual networks.
diff --git a/guide/network/config-file.md b/guide/network/config-file.md
index 0191217..f8b404c 100644
--- a/guide/network/config-file.md
+++ b/guide/network/config-file.md
@@ -14,6 +14,14 @@ easytier-core -c ./config.yaml
在不使用参数的情况下直接运行 `easytier-core` 可以获得最小配置文件。
+## EasyTier 配置助手
+
+如果不想手动编写配置文件,可以访问 [EasyTier 配置助手](https://easytier.rs/assistant) 按需生成配置文件,然后通过 `-c` 参数加载:
+
+```sh
+easytier-core -c ./config.toml
+```
+
## 多配置文件启动
可以通过 `-c` 参数指定多个配置文件,EasyTier 会在一个进程中加载多个配置文件并启动多个虚拟网络。