0

我有 pdns 服务器 4.2.3。我想通过 api 更改 A 记录的名称。例子:

test1 A ttl 60 192.168.1.2 -> test2 A ttl 60 192.168.1.2

4

1 回答 1

1

从 powerdns 主机:

要删除记录:

curl -X PATCH --data '{"rrsets": [{"changetype": "DELETE", "type": "A", "name": "test1.fqdn."}]}' -H 'X-API-Key: TURBOSECRET' http://127.0.0.1:8081/api/v1/servers/localhost/zones/zonename. -s | jq .

添加记录:

curl -X PATCH --data '{"rrsets": [{"changetype": "REPLACE", "type": "A", "name": "test2.fqdn.", "ttl": "60", "records": [{"content": "test2.fqdn.", "disabled": false}]}]}' -H 'X-API-Key: TURBOSECRET' http://127.0.0.1:8081/api/v1/servers/localhost/zones/zonename. -s | jq .

请相应调整 TURBOSECRET、fqdn 和 zonename。

于 2021-10-06T15:04:06.527 回答