You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docker container is running with IPVLAN, so same access as docker container. In the logs, it does not work, trying the command on the docker host directly with curl wirks fine.
2025-01-20T19:47:56Z DEBUG configured to fetch IP: v4 or v6: false, v4: true, v6: false
2025-01-20T19:48:01Z DEBUG obtaining ipv4 address: try 1 of 3 failed: Get "https://api.ipify.org": context deadline exceeded
2025-01-20T19:48:01Z INFO obtaining ipv4 address succeeded after 1 failed try
2025-01-20T19:48:01Z DEBUG your public IP address are: v4 or v6: invalid IP, v4: a.b.c.d_current_IP, v6: invalid IP
2025-01-20T19:48:01Z INFO Last ipv4 address stored for xyz.abc is invalid IP and your ipv4 address is a.b.c.d_current_IP
2025-01-20T19:48:01Z INFO Updating record [domain: xyz.abc | owner: @ | provider: cloudflare | ip: ipv4] to use a.b.c.d_current_IP
2025-01-20T19:48:01Z DEBUG GET https://api.cloudflare.com/client/v4/zones/CLOUDFLARE-ZONE-KEY/dns_records?name=XYZ.ABC&page=1&per_page=1&type=A | headers: User-Agent: DDNS-Updater [email protected]; Content-Type: application/json; Accept: application/json; Authorization: Bearer API-KEY-DNS-EDIT
2025-01-20T19:48:11Z ERROR getting record id: Get "https://api.cloudflare.com/client/v4/zones/CLOUDFLARE-ZONE-KEY/dns_records?name=XYZ.ABC&page=1&per_page=1&type=A": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all,
Docker container is running with IPVLAN, so same access as docker container. In the logs, it does not work, trying the command on the docker host directly with curl wirks fine.
2025-01-20T19:47:56Z DEBUG configured to fetch IP: v4 or v6: false, v4: true, v6: false
2025-01-20T19:48:01Z DEBUG obtaining ipv4 address: try 1 of 3 failed: Get "https://api.ipify.org": context deadline exceeded
2025-01-20T19:48:01Z INFO obtaining ipv4 address succeeded after 1 failed try
2025-01-20T19:48:01Z DEBUG your public IP address are: v4 or v6: invalid IP, v4: a.b.c.d_current_IP, v6: invalid IP
2025-01-20T19:48:01Z INFO Last ipv4 address stored for xyz.abc is invalid IP and your ipv4 address is a.b.c.d_current_IP
2025-01-20T19:48:01Z INFO Updating record [domain: xyz.abc | owner: @ | provider: cloudflare | ip: ipv4] to use a.b.c.d_current_IP
2025-01-20T19:48:01Z DEBUG GET https://api.cloudflare.com/client/v4/zones/CLOUDFLARE-ZONE-KEY/dns_records?name=XYZ.ABC&page=1&per_page=1&type=A | headers: User-Agent: DDNS-Updater [email protected]; Content-Type: application/json; Accept: application/json; Authorization: Bearer API-KEY-DNS-EDIT
2025-01-20T19:48:11Z ERROR getting record id: Get "https://api.cloudflare.com/client/v4/zones/CLOUDFLARE-ZONE-KEY/dns_records?name=XYZ.ABC&page=1&per_page=1&type=A": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
curl "https://api.cloudflare.com/client/v4/zones/CLOUDFLARE-ZONE-KEY/dns_records?name=XYZ.ABC&page=1&per_page=1&type=A"
-H 'Content-Type: application/json'
-H 'Accept: application/json'
-H 'Authorization: Bearer API-KEY-DNS-EDIT'
-H 'User-Agent: DDNS-Updater [email protected]'
{"result":
[
{"id":"c8a19f61919b8df6a31744636dd70475",
"zone_id":"CLOUDFLARE-ZONE-KEY",
"zone_name":"XYZ.ABC",
"name":"XYZ.ABC",
"type":"A",
"content":"a.b.c.d_myOLD-IP",
"proxiable":true,
"proxied":true,
"ttl":1,
"settings":{},
"meta":{
"auto_added":false,
"managed_by_apps":false,
"managed_by_argo_tunnel":false
},
"comment":"Test",
"tags":[],
"created_on":"2025-01-19T18:35:31.096799Z",
"modified_on":"2025-01-19T19:59:55.578753Z",
"comment_modified_on":"2025-01-19T18:41:50.719618Z"
}
],
"success":true,
"errors":[],
"messages":[],
"result_info":
{
"page":1,
"per_page":1,
"count":1,
"total_count":1,
"total_pages":1
}
}
Any ideas or suggestions?
Beta Was this translation helpful? Give feedback.
All reactions