Cloudflare的代理开启关闭脚本/Cloudflare小云朵开启关闭bash脚本

Cloudflare小云朵开启关闭bash脚本

可以配合面板里的计划任务实现Cloudflare定时开启定时关闭小云朵

#!/bin/bash

# 设置您的 Cloudflare API 密钥和账户 ID
api_key="Cloudflare API 密钥"
account_id="Cloudflare 账户 ID"

# 设置 网站域名和DNS记录域名
zone_name="Cloudflare里的网站域名"
record_name="DNS的记录,例如:baidu.com或者tieba.baidu.com"

# 获取区域 ID
zone_id=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=${zone_name}" \
     -H "Authorization: Bearer ${api_key}" \
     -H "Content-Type: application/json" | jq -r '.result[0].id')

# 获取 DNS 记录的 ID
record_id=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/${zone_id}/dns_records?type=A&name=${record_name}" \
             -H "Authorization: Bearer ${api_key}" \
             -H "Content-Type: application/json" | jq -r '.result[0].id')

# 检查当前的代理状态
current_proxy_status=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/${zone_id}/dns_records/${record_id}" \
     -H "Authorization: Bearer ${api_key}" \
     -H "Content-Type: application/json" | jq -r '.result.proxied')

if [[ $current_proxy_status == "true" ]]; then
  # 如果代理状态是已开启,则关闭它
  curl -s -X PATCH "https://api.cloudflare.com/client/v4/zones/${zone_id}/dns_records/${record_id}" \
       -H "Authorization: Bearer ${api_key}" \
       -H "Content-Type: application/json" \
       --data '{"proxied":false}' > /dev/null
  echo "Cloudflare DNS记录的代理状态已关闭。"
else
  # 如果代理状态是已关闭,则开启它
  curl -s -X PATCH "https://api.cloudflare.com/client/v4/zones/${zone_id}/dns_records/${record_id}" \
       -H "Authorization: Bearer ${api_key}" \
       -H "Content-Type: application/json" \
       --data '{"proxied":true}' > /dev/null
  echo "Cloudflare DNS记录的代理状态已启用。"
fi

Cloudflare API 密钥:API 令牌 | Cloudflare

Cloudflare 账户 ID:Cloudflare 站点设置里的概述页右下角

小云朵开启关闭API权限

jq: command not found

如果运行脚本时遇到了 jq: command not found 错误,那么可能是因为您的系统上没有安装 jq 命令行工具。jq 是一款强大的 JSON 处理工具,可以帮助您轻松地解析 JSON 数据并提取所需的信息。

在 Ubuntu / Debian 系统上:

sudo apt-get update
sudo apt-get install jq

在 CentOS / RHEL 系统上:

sudo yum install epel-release
sudo yum install jq

在 macOS 上(使用 Homebrew):

brew install jq

在 Windows 上(使用 Scoop):

scoop install jq

评论

  1. TheSafeInternetSearch
    1 月前
    2025-2-21 19:41:33

    pQqAX9bAQQH

  2. TheSafeInternetSearch
    1 月前
    2025-2-21 22:58:11

    tG1p7oERynP

  3. 1 月前
    2025-2-21 23:10:18

    WZ335jTIGIf

  4. TheSafeInternetSearch
    1 月前
    2025-2-21 23:15:59

    zaTSc0AwQ1U

  5. TheSafeInternetSearch
    1 月前
    2025-2-21 23:21:41

    SOhxEZtDO1T

  6. TheSafeInternetSearch
    1 月前
    2025-2-21 23:27:23

    yMe7EVnXWKG

  7. TheSafeInternetSearch
    1 月前
    2025-2-21 23:33:09

    TqWXWDImhNn

  8. TheSafeInternetSearch
    1 月前
    2025-2-21 23:38:53

    7V8TSJF1LvK

  9. TheSafeInternetSearch
    1 月前
    2025-2-21 23:44:33

    bhgWxMDQT3R

  10. TheSafeInternetSearch
    1 月前
    2025-2-21 23:50:13

    9o3SlbnBQgy

  11. TheSafeInternetSearch
    1 月前
    2025-2-21 23:55:56

    4w8egHB4yJL

  12. TheSafeInternetSearch
    1 月前
    2025-2-22 0:01:38

    1cFEbjlHj0I

  13. TheSafeInternetSearch
    1 月前
    2025-2-22 0:07:20

    7T66VHZ2cFh

  14. TheSafeInternetSearch
    1 月前
    2025-2-22 0:13:01

    ttT8tpE0zhG

  15. TheSafeInternetSearch
    1 月前
    2025-2-22 0:18:47

    23KDbguktCX

  16. TheSafeInternetSearch
    1 月前
    2025-2-22 0:24:26

    U6mFcA1HqZF

  17. TheSafeInternetSearch
    1 月前
    2025-2-22 0:30:07

    bFjVrlyTdxd

  18. TheSafeInternetSearch
    1 月前
    2025-2-22 0:35:50

    6WQ3yxygtVi

  19. TheSafeInternetSearch
    1 月前
    2025-2-22 0:41:33

    WIkG7iKg3jS

  20. TheSafeInternetSearch
    1 月前
    2025-2-22 0:47:13

    5rFIJqNU8Fh

  21. TheSafeInternetSearch
    1 月前
    2025-2-22 0:52:51

    ZPRKzowuZ52

  22. 1 月前
    2025-2-22 0:58:29

    UJAR4Bv7yFS

  23. TheSafeInternetSearch
    1 月前
    2025-2-22 1:04:13

    F4KScVPWRxN

  24. TheSafeInternetSearch
    1 月前
    2025-2-22 1:09:57

    GZI7Sbz2HXC

  25. TheSafeInternetSearch
    1 月前
    2025-2-22 1:15:41

    KfUxkqnYvt3

  26. TheSafeInternetSearch
    1 月前
    2025-2-22 1:21:22

    FeYqbOQ4sCT

  27. TheSafeInternetSearch
    1 月前
    2025-2-22 1:27:04

    IZ3d79xNZ7d

  28. TheSafeInternetSearch
    1 月前
    2025-2-22 1:32:42

    fAUzVwMHoUr

  29. TheSafeInternetSearch
    1 月前
    2025-2-22 1:38:24

    r9NZTqxtEBW

  30. TheSafeInternetSearch
    1 月前
    2025-2-22 1:44:05

    VxSrSC9FOjO

  31. TheSafeInternetSearch
    1 月前
    2025-2-22 1:49:45

    9LGwV9ZXZpT

  32. TheSafeInternetSearch
    1 月前
    2025-2-22 1:55:22

    r7vh9d7kIW2

  33. TheSafeInternetSearch
    1 月前
    2025-2-22 2:01:05

    3i6MmKC1id9

  34. TheSafeInternetSearch
    1 月前
    2025-2-22 2:06:49

    SBp2UsvbA8j

  35. TheSafeInternetSearch
    1 月前
    2025-2-22 2:12:33

    N6bZBkPegqs

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇