-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Only perform DNSLink lookups on fully qualified domain names (FQDN) #5950
Conversation
This change halves the number of DNS queries requires to lookup DNSLink information for "example.com" by forcing the use of a FQDN. * example.com * example.com.local (removed) * _dnslink.example.com * _dnslink.example.com.local (removed) Where .local is the local system's organization/domain name. License: MIT Signed-off-by: Daniel Aleksandersen <[email protected]>
License: MIT Signed-off-by: Daniel Aleksandersen <[email protected]>
License: MIT Signed-off-by: Daniel Aleksandersen <[email protected]>
I don’t beleive that the remaining failure is caused by the changes in this branch. |
Yeah, |
DNS bind ipns failure !!!! working sample: local gateway publick gateway Now I bind domain 'pdfbay.org' DNS txt record @ means current domain pdfbay.org @ | TXT | 1m | "dnslink=/ipns/QmbX1mn42J9Fh7ascyaX2txtqRxRNFg3NWMXFr8k6HqKBj" Now the failure happened: (nothing shows) By the way, on terminal, I try ipfs name resolve, it works fine: D:>ipfs name resolve -r pdfbay.org Never Mind, after a few hours try again, delete DNS, try again, The working DNSlink bind to domain pdfbay.org as Note, Even you config correctly ,it need some time, may be up to 1 hours to have ipfs bind works, http://localhost:8080/ipns/pdfbay.org |
It's not. Let's discussion the issue (#5992). |
This change halves the number of DNS queries required to lookup DNSLink information for "example.com" by forcing the use of a FQDN (e.g.
example.com.
).Where .local is the local system's organization/domain name.
License: MIT
Signed-off-by: Daniel Aleksandersen