https://github.com/matmoore/toy-dns
A toy DNS resolver
https://github.com/matmoore/toy-dns
Last synced: about 1 year ago
JSON representation
A toy DNS resolver
- Host: GitHub
- URL: https://github.com/matmoore/toy-dns
- Owner: MatMoore
- Created: 2023-08-13T08:08:05.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T15:38:01.000Z (almost 3 years ago)
- Last Synced: 2025-02-08T12:47:10.997Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toy DNS resolver
This is based on the code for *Implement DNS in a Weekend* by Julia Evans, available at
[https://implement-dns.wizardzines.com](https://implement-dns.wizardzines.com).
## Usage
python resolver.py example.com
## Further reading
- [RFC 1034 - Domain names - concepts and facilities](https://datatracker.ietf.org/doc/html/rfc1034)
- [RFC 1035 - Domain names - implementation and specification](https://datatracker.ietf.org/doc/html/rfc1035#section-3.2.2)
- [What is a DNS resolver?](https://www.nslookup.io/learning/what-is-a-dns-resolver/)