Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can support AAAA DNSR? #5

Closed
qNFCp opened this issue Dec 3, 2018 · 5 comments
Closed

Can support AAAA DNSR? #5

qNFCp opened this issue Dec 3, 2018 · 5 comments

Comments

@qNFCp
Copy link

qNFCp commented Dec 3, 2018

Is there any way to modify the AAAA DNSR of IPv6?
有没有办法修改IPv6的AAAA解析呢?

@qNFCp qNFCp changed the title IPv6? Can you support AAAA DNSR? Dec 3, 2018
@qNFCp qNFCp changed the title Can you support AAAA DNSR? Can support AAAA DNSR? Dec 3, 2018
@rouralberto
Copy link
Owner

Hi @qNFCp, did you tried the following code?

$updater->setDomainName('DOMAIN.COM');
$updater->setRecordType('AAAA');
$updater->setRR('@');
$updater->setValue('ff03:0:0:0:0:0:0:c1');

@qNFCp
Copy link
Author

qNFCp commented Dec 4, 2018

Hello @roura356a ,I tried to write it this way, but it would fail.
The partial return value is as follows:

Array ( [Recommend] => https://error-center.aliyun.com/status/search?Keyword=SignatureDoesNotMatch&source=PopGw [Message] => Specified signature is not matched with our calculation.

I checked my Access Key ID and Access Key Secret,They are correct.
Can you solve this issuess? Thanks!

@badgv
Copy link

badgv commented Dec 4, 2018

Hello @roura356a ,I tried to write it this way, but it would fail.
The partial return value is as follows:

Array ( [Recommend] => https://error-center.aliyun.com/status/search?Keyword=SignatureDoesNotMatch&source=PopGw [Message] => Specified signature is not matched with our calculation.

I checked my Access Key ID and Access Key Secret,They are correct.
Can you solve this issuess? Thanks!

修改alicloud-php-updaterecord/V20150109/AlicloudUpdateRecord.php的第206行
'Value' => $this->value,
修改为以下内容就能更新AAAA的IPV6地址了
'Value' => urlencode($this->value),

@qNFCp
Copy link
Author

qNFCp commented Dec 4, 2018

Hello @roura356a ,I tried to write it this way, but it would fail.
The partial return value is as follows:
Array ( [Recommend] => https://error-center.aliyun.com/status/search?Keyword=SignatureDoesNotMatch&source=PopGw [Message] => Specified signature is not matched with our calculation.
I checked my Access Key ID and Access Key Secret,They are correct.
Can you solve this issuess? Thanks!

修改alicloud-php-updaterecord/V20150109/AlicloudUpdateRecord.php的第206行
'Value' => $this->value,
修改为以下内容就能更新AAAA的IPV6地址了
'Value' => urlencode($this->value),

成功了,谢谢啦

@qNFCp qNFCp closed this as completed Dec 4, 2018
@rouralberto
Copy link
Owner

Thank you, @badgv. I'm glad it worked, @qNFCp =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants