From 0f45f6a4c747bf8b798f93dc06a845de454dbfbc Mon Sep 17 00:00:00 2001 From: roc Date: Thu, 7 Mar 2024 17:42:37 +0800 Subject: [PATCH] update at 2024-03-07 17:42:37 --- content/cases/home-network/ddns.md | 2 +- content/cases/home-network/dnsmasq.md | 2 +- content/cases/home-network/ikev2.md | 24 ++++++++++++------------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/content/cases/home-network/ddns.md b/content/cases/home-network/ddns.md index f0a80f4..a730fe1 100644 --- a/content/cases/home-network/ddns.md +++ b/content/cases/home-network/ddns.md @@ -17,7 +17,7 @@ ```txt ddns ├── config -│   └── config.json +│ └── config.json ├── daemonset.yaml └── kustomization.yaml ``` diff --git a/content/cases/home-network/dnsmasq.md b/content/cases/home-network/dnsmasq.md index 6698ddc..d67c99c 100644 --- a/content/cases/home-network/dnsmasq.md +++ b/content/cases/home-network/dnsmasq.md @@ -7,7 +7,7 @@ DHCP 与 DNS 服务需在主路由上开启,如果用的主路由方案,可 ```txt dnsmasq ├── config -│   └── dnsmasq.conf +│ └── dnsmasq.conf ├── daemonset.yaml └── kustomization.yaml ``` diff --git a/content/cases/home-network/ikev2.md b/content/cases/home-network/ikev2.md index 872073c..a48728d 100644 --- a/content/cases/home-network/ikev2.md +++ b/content/cases/home-network/ikev2.md @@ -39,18 +39,18 @@ docker run --rm -it \ ```txt ikev2 ├── config -│   ├── ikev2-vpn-data -│   │   ├── .vpnconfig -│   │   ├── cert9.db -│   │   ├── ikev2.conf -│   │   ├── ikev2setup.log -│   │   ├── key4.db -│   │   ├── passwd -│   │   ├── pkcs11.txt -│   │   ├── roc.mobileconfig -│   │   ├── roc.p12 -│   │   └── roc.sswan -│   └── vpn.env +│ ├── ikev2-vpn-data +│ │ ├── .vpnconfig +│ │ ├── cert9.db +│ │ ├── ikev2.conf +│ │ ├── ikev2setup.log +│ │ ├── key4.db +│ │ ├── passwd +│ │ ├── pkcs11.txt +│ │ ├── roc.mobileconfig +│ │ ├── roc.p12 +│ │ └── roc.sswan +│ └── vpn.env ├── daemonset.yaml └── kustomization.yaml ```