111
Follow the guide.
Cloudflare DDNS 簡易教學2022
Tim31/03/2022
在家中建立伺服器,忙了一團最後處理的事就是IP問題,我想大部人家裡都是動態IP,
DDNS 要解決的方法都是很多,我自己推薦用Cloudflare DDNS+ linux Shell 配合完全免費.資料備用 Global API key 和 API 區域識別碼
Global API key :
API 區域識別碼 :
伺服器設定:
作者的Github
1 wget --content-disposition https:
//github
.com
/K0p1-Git/cloudflare-ddns-updater/archive/refs/heads/main
.zip
12 unzip cloudflare-ddns-updater-main.zip
bash
: unzip:指令找不到
遇到指令找不到是因為還沒有安裝 Unzip 去<這編>解決
12345 unzip cloudflare-ddns-updater-main.zip
cd
cloudflare-ddns-updater-main
cp
cloudflare-template.sh
/etc/cloudflare-errorxyz
.sh
chmod
+x
/etc/cloudflare-errorxyz
.sh
nano
/etc/cloudflare-errorxyz
.sh
修改你自己的資料
auth_email=”” #登入cloudflare 用戶
auth_method=”global” #設為 “global”
auth_key=”” #Global API Key
zone_identifier=”” #API 區域識別碼
record_name=”” #IP更新同步的DNS
ttl=”3600″ #更新時間, 可以不用改
proxy=”true” #”true” IP受保護建立定時執行
123 crontab
-e
*
/15
* * * *
/bin/bash
/etc/cloudflare-errorxyz
.sh
#我設15分鐘檢查一次
完成.
Refer
https://errorxyz.com/cloudflare-ddns-%E7%B0%A1%E6%98%93%E6%95%99%E5%AD%B82022/
https://developers.cloudflare.com/dns/manage-dns-records/how-to/managing-dynamic-ip-addresses/
https://developers.cloudflare.com/api/operations/dns-records-for-a-zone-update-dns-record