IP6.ARPA域名SSL证书自动颁发系统

0
总任务数
0
活跃任务
0%
成功率
-
下次执行
ip6.arpa 注册地址1 ip6.arpa 注册地址2 ip6.arpa 注册地址3
请输入有效的邮箱地址
请输入区域ID
请输入API密钥

注意:ip6.arpa 域名通常仅支持 SSL.com

自动SSL申请

设置自动SSL监控后,系统将定期检查您的域名并自动申请/续期SSL证书。

即时证书续期

立即检查证书状态并续期即将过期或已过期的证书。系统会智能判断是否需要续期。

自动SSL任务管理

查看和管理您的自动SSL任务。系统会按照设定的间隔自动检查并续期证书。

暂无自动SSL任务

域名状态检查

检查您的域名在Cloudflare上的状态和配置信息。

IP6.ARPA 域名生成工具

请输入有效的 IPv6 CIDR

API 调用示例

// JavaScript 调用示例 - 手动申请
const response = await fetch('/api/add-ssl', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: '[email protected]',
    zoneId: 'your-zone-id',
    apikey: 'your-api-key',
    enabled: true,
    ca: 'ssl_com',
    auto_renew: true
  }),
});

// 自动SSL设置
const autoResponse = await fetch('/api/auto-ssl', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: '[email protected]',
    zone_id: 'your-zone-id',
    api_key: 'your-api-key',
    domains: ['example.com', 'sub.example.com'],
    check_interval_days: 7,
    certificate_authority: 'ssl_com'
  }),
});

// 即时续期
const renewResponse = await fetch('/api/immediate-renew', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: '[email protected]',
    zone_id: 'your-zone-id',
    api_key: 'your-api-key',
    certificate_authority: 'ssl_com'
  }),
});

// 获取任务列表
const tasksResponse = await fetch('/api/auto-ssl');
const tasks = await tasksResponse.json();

// 检查域名状态
const statusResponse = await fetch('/api/domain-status', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: '[email protected]',
    zone_id: 'your-zone-id',
    api_key: 'your-api-key'
  }),
});

// 获取证书信息
const certResponse = await fetch('/api/certificate-info', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: '[email protected]',
    zone_id: 'your-zone-id',
    api_key: 'your-api-key'
  }),
});

// 健康检查
const healthResponse = await fetch('/api/health');

GET 请求示例:
https://worker地址/?zoneId=...&email=...&apikey=...&enabled=true&ca=ssl_com

系统特性