update at 2024-03-07 12:01:06

pull/153/head
roc 2024-03-07 12:01:06 +08:00
parent 9724826c50
commit 57c63ceb04
3 changed files with 107 additions and 1 deletions

View File

@ -0,0 +1,40 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
app: ddns
name: ddns
namespace: default
spec:
selector:
matchLabels:
app: ddns
template:
metadata:
labels:
app: ddns
spec:
terminationGracePeriodSeconds: 1
containers:
- image: newfuture/ddns:v2.13.3
imagePullPolicy: IfNotPresent
name: ddns
securityContext:
privileged: true
volumeMounts:
- mountPath: /config.json
subPath: config.json
name: config
dnsPolicy: Default
hostNetwork: true
restartPolicy: Always
volumes:
- configMap:
name: ddns-config
name: config
updateStrategy:
rollingUpdate:
maxSurge: 0
maxUnavailable: 1
type: RollingUpdate

View File

@ -0,0 +1,66 @@
# DDNS
## 为什么需要 DDNS 服务
如果希望从外面通过 ssh 远程登录家里的路由器,或者通过 VPN 连上家里的内网,就需要知道家里的公网 IP 地址,而公网 IP 地址每次拨号都会变(比如断点或重启路由器就会重新拨号),所以需要一个 DDNS 服务来自动修改 DNS 解析,指向当前家里的公网 IP 地址。
## 告知运营商开通固定 IP
目前我知道的只有电信的宽带支持独占 IP固定 IP 即拨号后分配的公网 IP 只有你一家在用,不是多家共享。只有开通了这个固定 IP 功能,你才能从外面通过公网地址连上家里,需要打电话给运营商(电信是 10000通过人工服务让客户给开通理由就说家里有许多智能家居设备比如摄像头有从外网连上家里网络的需求。
## DDNS 开源项目
本文部署的 DDNS 服务使用这个开源项目https://github.com/NewFuture/DDNS
## 目录结构
```txt
ddns
├── config
│   └── config.json
├── daemonset.yaml
└── kustomization.yaml
```
## 准备 DDNS 配置
```json showLineNumbers title="config/config.json"
{
"$schema": "https://ddns.newfuture.cc/schema/v2.8.json",
"debug": false,
"dns": "dnspod",
"id": "******",
"token": "********************************",
"index4": "shell:ip -4 addr show ppp0 scope global | awk '/inet/{print $2}' | awk -F '/' '{print $1}'",
"ipv4": [
"home.imroc.cc"
],
"proxy": null,
"ttl": null
}
```
* 我的域名在 DNSPod 管理,所以配置的是 DNSPod 的 id 和 token。
* 我用的主路由方案,所以获取公网 IP 的方法直接读 `ppp0` 网卡上的公网 IP 地址就行,不需要调外部接口获取。
## 准备 daemonset.yaml
<FileBlock showLineNumbers title="daemonset.yaml" file="home-network/ddns.yaml" />
## 准备 kustomization.yaml
```yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- daemonset.yaml
configMapGenerator:
- files:
- config/config.json
name: ddns-config
namespace: default
```

View File

@ -24,7 +24,7 @@ dnsmasq
## 准备 daemonset.yaml
<FileBlock showLineNumbers title="daemonset.yaml" file="home-network/daemonset.yaml" />
<FileBlock showLineNumbers title="daemonset.yaml" file="home-network/dnsmasq.yaml" />
## 准备 kustomization.yaml