{"id":37207781,"url":"https://github.com/serverwentdown/dns64","last_synced_at":"2026-01-14T23:53:21.341Z","repository":{"id":57491204,"uuid":"100832430","full_name":"serverwentdown/dns64","owner":"serverwentdown","description":"CoreDNS plugin to run a DNS64 server","archived":true,"fork":false,"pushed_at":"2020-04-02T05:57:50.000Z","size":59,"stargazers_count":12,"open_issues_count":0,"forks_count":6,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-06-20T03:36:29.617Z","etag":null,"topics":["coredns","coredns-plugin","dns64","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/serverwentdown.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-20T02:05:36.000Z","updated_at":"2023-11-11T03:56:30.000Z","dependencies_parsed_at":"2022-08-29T20:31:44.467Z","dependency_job_id":null,"html_url":"https://github.com/serverwentdown/dns64","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/serverwentdown/dns64","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverwentdown%2Fdns64","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverwentdown%2Fdns64/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverwentdown%2Fdns64/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverwentdown%2Fdns64/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serverwentdown","download_url":"https://codeload.github.com/serverwentdown/dns64/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverwentdown%2Fdns64/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28439576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coredns","coredns-plugin","dns64","golang"],"created_at":"2026-01-14T23:53:20.825Z","updated_at":"2026-01-14T23:53:21.336Z","avatar_url":"https://github.com/serverwentdown.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# dns64\n\n\u003e *DEPRECATED*: This plugin has been merged upstream. Credit goes to @SuperQ.\n\nThe `dns64` plugin implements the DNS64 IPv6 transition mechanism. From Wikipedia:\n\n\u003e DNS64 describes a DNS server that when asked for a domain's AAAA records, but only finds\n\u003e A records, synthesizes the AAAA records from the A records.\n\nThe synthesis in only performed if the query came in via IPv6.\n\n## TODO\n\nNot all features required by DNS64 are implemented, only basic AAAA synthesis.\n\n* [ ] Support other `proxy` protocols in the configuration file\n  - Requires writing a custom parser for the proxy plugin\n* [ ] Support \"mapping of separate IPv4 ranges to separate IPv6 prefixes\"\n* [ ] Resolve PTR records\n* [ ] Follow CNAME records\n* [ ] Make resolver DNSSEC aware\n* [ ] Improve test coverage\n* [ ] Improve the hooking method\n  - At the moment, the plugin hijacks WriteMsg and does the modifications on the message being written. This very likely can break other plugins especially plugins like DNSSEC. \n  - [ ] What position should the plugin be? \n\n## Usage\n\n\u003e **The syntax has changed since 20 September 2019**. \"upstream\" has been renamed to proxy\n\nTranslate with the well known prefix. Applies to all queries\n\n```\ndns64\n```\n\nUse a custom prefix\n\n```\ndns64 64:1337::/96\n# Or \ndns64 {\n    prefix 64:1337::/96\n}\n```\n\nUse a reverse proxy, with a custom prefix\n\n```\ndns64 {\n    proxy . 1.1.1.1 1.0.0.1\n    prefix 64:1337::/96\n}\n```\n\nEnable translation even if an existing AAAA record is present\n\n```\ndns64 {\n    translateAll\n}\n```\n\n* `prefix` specifies any local IPv6 prefix to use, instead of the well known prefix (64:ff9b::/96)\n* `proxy` optionally specifies upstream DNS protocol addresses like the `proxy` plugin\n\n## See Also\n\nRFC 6147\n\n## Installation\n\nSee [CoreDNS Documentation](https://coredns.io/2017/07/25/compile-time-enabling-or-disabling-plugins/) for more information on how to include this plugin. A [DNS64 example](https://github.com/serverwentdown/dns64-build) is available too. \n\nHere's the summary:\n\n```\npackage main\n\nimport (\n\t_ \"github.com/coredns/coredns/core/plugin\"\n\t_ \"github.com/coredns/proxy\"\n\t_ \"github.com/serverwentdown/dns64\"\n\n\t\"github.com/coredns/coredns/core/dnsserver\"\n\t\"github.com/coredns/coredns/coremain\"\n)\n\nvar additionalDirectives = []string{\n\t\"dns64\",\n\t\"proxy\",\n}\n\nfunc init() {\n\tdnsserver.Directives = append(dnsserver.Directives, additionalDirectives...)\n}\n\nfunc main() {\n\tcoremain.Run()\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverwentdown%2Fdns64","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserverwentdown%2Fdns64","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverwentdown%2Fdns64/lists"}