From f65149beec6cc080bcb884c4480df93791b5a01a Mon Sep 17 00:00:00 2001 From: fanyang Date: Sun, 24 May 2026 19:35:34 +0800 Subject: [PATCH 1/2] docs(config): add EasyTier Assistant link --- en/guide/network/config-file.md | 8 ++++++++ guide/network/config-file.md | 8 ++++++++ 2 files changed, 16 insertions(+) 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 会在一个进程中加载多个配置文件并启动多个虚拟网络。 From 570442257503407e322f7da4879f55abb10f8396 Mon Sep 17 00:00:00 2001 From: fanyang Date: Tue, 26 May 2026 23:39:17 +0800 Subject: [PATCH 2/2] docs(nav): add EasyTier Assistant to top navigation --- .vitepress/config/cn.ts | 4 ++++ .vitepress/config/en.ts | 4 ++++ 2 files changed, 8 insertions(+) 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',