Networking
- Use `doggo` for DNS debugging instead of `dig` or `nslookup`
LLM Evaluation
Evaluated by: xiaomi/mimo-v2-flash:free
Last evaluated: March 29, 2026
Prompt Preview
---
name: c-network
description: DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
tags: [dns, http, networking, api]
---
# Networking
## doggo (DNS client)
```bash
# Basic DNS lookup
doggo example.com
# Specific record type
doggo example.com MX
doggo example.com AAAA
doggo example.com TXT
doggo example.com NS
doggo example.com CNAME
# Use specific nameserver
doggo example.com --nameserver 1.1.1.1
doggo example.com --nameserver 8.8.8.8...
Full prompt length: 1592 characters