Query domain name DNS records, resolve to IP addresses, test connectivity with ping, and display geolocation information
Возможности
- DNS Resolution: Resolve domain names to IP addresses using DNS over HTTPS (DoH), supporting multiple DNS providers with automatic failover for high availability
- Ping Testing: Test domain connectivity using HTTP HEAD requests, measure response time, and check HTTP/HTTPS status codes to verify server availability
- Geolocation Display: Automatically query geolocation information for resolved IP addresses, displaying country, region, city, coordinates, and network information on an interactive map
- Multiple IP Support: Display all IP addresses resolved from domain name A records, supporting domains with multiple IP addresses for load balancing or CDN configurations
Руководство по использованию
- Enter Domain Name: Enter the domain name you want to query in the input box (e.g., example.com). The tool will automatically remove protocol prefixes (http://, https://) and www prefixes.
- Execute DNS Lookup: Click the 'Lookup' button or press Enter to query DNS records. The system will resolve the domain name to IP addresses using DNS over HTTPS (DoH) and display the results.
- Test Connectivity: Click the 'Ping' button to test domain connectivity using HTTP HEAD requests. Select HTTP or HTTPS protocol, and view response time and status code.
- View Results: View DNS resolution results (IP addresses), geolocation information (country, region, city, coordinates), network information (ISP, ASN), and map visualization.
Технические детали
DNS over HTTPS (DoH)
DNS over HTTPS is a protocol that encrypts DNS queries using HTTPS, improving privacy and security. This tool uses Google DNS and Cloudflare DNS DoH services to resolve domain names. DoH queries are sent over HTTPS connections, preventing DNS query interception and tampering. The tool implements automatic failover: if Google DNS fails, it automatically switches to Cloudflare DNS to ensure query success rate.
HTTP Ping Implementation
Since Cloudflare Workers does not support ICMP ping, this tool uses HTTP HEAD requests to simulate ping functionality. HEAD requests only retrieve response headers without downloading content, making them faster than GET requests. The tool measures the time from sending the request to receiving the response header, calculating response time. It supports both HTTP and HTTPS protocols, allowing users to test different service endpoints.
Domain Name Format Validation
Domain name validation follows RFC 1123 standards: domain names consist of labels separated by dots, each label can contain letters, numbers, and hyphens, must start and end with alphanumeric characters, maximum length 63 characters per label, total domain name length maximum 253 characters. The tool automatically removes protocol prefixes (http://, https://) and www prefixes before validation, ensuring accurate domain name parsing.
Часто задаваемые вопросы
- Почему ping использует HTTP HEAD вместо ICMP?
- Cloudflare Workers (где работает этот инструмент) не поддерживает протокол ICMP ping. HTTP HEAD-запросы используются в качестве альтернативы: они проверяют подключение сервера, измеряют время отклика и проверяют HTTP-коды состояния. Хотя это не идентично ICMP ping, HTTP ping предоставляет аналогичную функциональность для веб-инструментов и лучше работает в браузерных средах.
- В чем разница между поиском DNS и ping?
- Поиск DNS разрешает доменные имена в IP-адреса, запрашивая DNS-серверы. Ping проверяет подключение сервера, отправляя HTTP-запросы и измеряя время отклика. Поиск DNS показывает, куда указывает домен (IP-адреса), а ping показывает, доступен ли сервер и как быстро он отвечает. Оба полезны для устранения сетевых неполадок.
- Почему у домена может быть несколько IP-адресов?
- Домены могут иметь несколько IP-адресов по нескольким причинам: 1) Балансировка нагрузки - распределение трафика между несколькими серверами;2) Избыточность - резервные серверы для высокой доступности;3) CDN - сети доставки контента используют несколько IP в разных местах;4) Round-robin DNS - ротация между несколькими серверами. Инструмент отображает все разрешенные IP-адреса.
- Насколько точна информация о геолокации?
- Точность геолокации зависит от распределения и маршрутизации IP-адресов. Обычно точна на уровне города или региона, а не точных физических адресов. Для CDN и облачных сервисов геолокация может показывать местоположения центров обработки данных, а не фактические местоположения серверов. Мобильные сети и VPN могут показывать местоположения ISP, а не местоположения пользователей. Местоположение является приблизительным и основано на диапазонах IP-адресов.
Связанная документация
- RFC 1035 - Domain Names - Official DNS protocol specification, defining domain name structure, DNS query format, and record types
- RFC 8484 - DNS over HTTPS - DNS over HTTPS (DoH) protocol specification, defining how to send DNS queries over HTTPS
- Google DNS Documentation - Google Public DNS service documentation, including DNS over HTTPS API usage
- Cloudflare DNS Documentation - Cloudflare DNS over HTTPS service documentation and API reference
- MDN - DNS - Mozilla Developer Network DNS documentation, explaining DNS concepts and working principles