---
name: Networking
slug: networking
category: Automation
description: Networking uses doggo for DNS lookups and httpie for readable HTTP requests in the terminal. Use it for DNS debugging, API testing, and inspecting requests without curl or dig.
github: "https://github.com/daxaur/openpaw/tree/main/skills/c-network"
language: TypeScript
stars: 167
forks: 11
install: "npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-network ~/.claude/skills/c-network"
installs_to: ~/.claude/skills/c-network
source_path: skills/c-network/SKILL.md
collection_size: 25
category_size: 2226
collection_url: "https://dirskills.com/collections/daxaur/openpaw"
added: 2026-09-08T05:34:33.565Z
last_synced: 2026-09-08T05:34:33.565Z
canonical_url: "https://dirskills.com/skills/networking"
---

# Networking

Networking uses doggo for DNS lookups and httpie for readable HTTP requests in the terminal. Use it for DNS debugging, API testing, and inspecting requests without curl or dig.

**Install:**

```bash
npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-network ~/.claude/skills/c-network
```

## README

# 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

# DNS over HTTPS
doggo example.com --class IN --type A --nameserver https://cloudflare-dns.com/dns-query

# JSON output
doggo example.com --json
```

## httpie (HTTP client)

Human-friendly alternative to curl:

```bash
# GET request
http GET api.example.com/users

# POST with JSON body
http POST api.example.com/users name=John email=john@example.com

# Headers
http GET api.example.com Authorization:"Bearer token123"

# Download file
http --download https://example.com/file.zip

# Form upload
http --form POST api.example.com file@photo.jpg

# With auth
http -a user:password GET api.example.com/protected

# Follow redirects
http --follow GET example.com

# Show only response headers
http --headers GET example.com

# Verbose (show request + response)
http --verbose GET example.com
```

## Guidelines

- Use `doggo` for DNS debugging instead of `dig` or `nslookup`
- Use `http` (httpie) for API testing instead of curl — output is colorized and formatted
- For POST requests, httpie auto-detects JSON vs form data
- `key=value` sends as JSON string, `key:=123` sends as JSON number
