Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
89jobrien avatar

Network Engineering

  • 80 installs
  • 4 repo stars
  • Updated April 11, 2026
  • 89jobrien/steve

network-engineering is a Claude Code skill for network architecture, load balancing, DNS, TLS, and connectivity troubleshooting.

About

network-engineering is a Claude Code skill covering network architecture, troubleshooting, load balancing, DNS, and TLS. It provides an OSI reference, VPC subnet strategy, load balancer types and routing, DNS record and TTL guidance, TLS configuration and debugging, and a connectivity troubleshooting checklist with common commands. A developer uses it to design network topologies or debug connectivity, DNS, and certificate issues.

  • VPC subnet strategy (public/private/database tiers) and traffic-flow design
  • Load balancer types (ALB/NLB/Gateway), routing strategies, and health checks
  • DNS record/TTL guidance plus openssl and dig/traceroute debugging commands

Network Engineering by the numbers

  • 80 all-time installs (skills.sh)
  • Ranked #620 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

network-engineering capabilities & compatibility

Capabilities
network design · load balancing · dns configuration · tls debugging · connectivity troubleshooting
Works with
aws
Use cases
devops · debugging
Pricing
Free
From the docs

What network-engineering says it does

Comprehensive network engineering skill covering network design, troubleshooting, load balancing, DNS, and network security.
SKILL.md
Configuring load balancers
SKILL.md
Internet → Load Balancer (public) → App (private) → DB (isolated)
SKILL.md
npx skills add https://github.com/89jobrien/steve --skill network-engineering

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs80
repo stars4
Last updatedApril 11, 2026
Repository89jobrien/steve

What it does

Design network topologies and troubleshoot connectivity, DNS, load-balancer, and TLS issues in cloud infrastructure.

Who is it for?

Developers designing network topologies or debugging connectivity, DNS, load-balancer, and TLS problems.

Skip if: Application-logic or frontend work with no networking or infrastructure component.

When should I use this skill?

Designing network topologies, debugging connectivity issues, configuring load balancers or DNS, or implementing network security.

What you get

A sound network topology and a layered checklist to resolve connectivity, DNS, and TLS failures.

  • network topology design
  • load balancer configuration
  • DNS/TTL plan

By the numbers

  • 7-layer OSI model reference table
  • 6-step connectivity troubleshooting checklist
  • 4 load balancer types documented

Files

SKILL.mdMarkdownGitHub ↗

Network Engineering

Comprehensive network engineering skill covering network design, troubleshooting, load balancing, DNS, and network security.

When to Use This Skill

  • Designing network topologies
  • Troubleshooting connectivity issues
  • Configuring load balancers
  • DNS configuration and troubleshooting
  • SSL/TLS setup and debugging
  • Network security implementation
  • Performance optimization
  • CDN configuration

Network Architecture

OSI Model Reference

LayerNameProtocolsTroubleshooting
7ApplicationHTTP, DNS, SMTPcurl, browser tools
6PresentationSSL/TLSopenssl
5SessionNetBIOS-
4TransportTCP, UDPnetstat, ss
3NetworkIP, ICMPping, traceroute
2Data LinkEthernetarp
1Physical-cable tester

VPC/Network Design

Subnet Strategy:

VPC CIDR: 10.0.0.0/16 (65,536 IPs)

Public Subnets (internet-facing):
  - 10.0.1.0/24 (AZ-a) - Load balancers, bastion
  - 10.0.2.0/24 (AZ-b)
  - 10.0.3.0/24 (AZ-c)

Private Subnets (application tier):
  - 10.0.11.0/24 (AZ-a) - App servers
  - 10.0.12.0/24 (AZ-b)
  - 10.0.13.0/24 (AZ-c)

Database Subnets (isolated):
  - 10.0.21.0/24 (AZ-a) - Databases only
  - 10.0.22.0/24 (AZ-b)
  - 10.0.23.0/24 (AZ-c)

Traffic Flow:

  • Internet → Load Balancer (public) → App (private) → DB (isolated)
  • NAT Gateway for private subnet outbound
  • VPC Endpoints for AWS services

Load Balancing

Load Balancer Types

TypeLayerUse Case
Application (ALB)7HTTP/HTTPS, path routing
Network (NLB)4TCP/UDP, static IP, high performance
Classic4/7Legacy
Gateway3Third-party appliances

Health Checks

# ALB Health Check
health_check:
  path: /health
  protocol: HTTP
  port: 8080
  interval: 30
  timeout: 5
  healthy_threshold: 2
  unhealthy_threshold: 3
  matcher: "200-299"

Routing Strategies

  • Round Robin: Equal distribution
  • Least Connections: Route to least busy
  • IP Hash: Sticky sessions by client IP
  • Weighted: Percentage-based distribution
  • Path-based: Route by URL path
  • Host-based: Route by hostname

DNS

Record Types

TypePurposeExample
AIPv4 addressexample.com → 192.0.2.1
AAAAIPv6 addressexample.com → 2001:db8::1
CNAMEAliaswww → example.com
MXMail serverexample.com → mail.example.com
TXTArbitrary textSPF, DKIM, verification
NSName serverDNS delegation
SRVService location_sip._tcp.example.com
CAACertificate authorityRestrict CA issuance

DNS Debugging

# Query specific record type
dig example.com A
dig example.com MX
dig example.com TXT

# Query specific DNS server
dig @8.8.8.8 example.com

# Trace DNS resolution
dig +trace example.com

# Check propagation
dig +short example.com @{dns-server}

TTL Strategy

Record TypeRecommended TTL
Static content86400 (1 day)
Dynamic content300 (5 min)
Failover records60 (1 min)
Pre-migrationLower to 60

SSL/TLS

Certificate Types

TypeValidationUse Case
DVDomain ownershipBasic sites
OVOrganization verifiedBusiness sites
EVExtended validationHigh-trust sites
Wildcard*.domain.comMultiple subdomains
SANMulti-domainMultiple specific domains

TLS Configuration

Recommended Settings:

  • TLS 1.2 and 1.3 only
  • Strong cipher suites (AEAD)
  • HSTS enabled
  • OCSP stapling
  • Certificate transparency

Debugging SSL

# Check certificate
openssl s_client -connect example.com:443 -servername example.com

# Check certificate chain
openssl s_client -connect example.com:443 -showcerts

# Check expiration
echo | openssl s_client -connect example.com:443 2>/dev/null | openssl x509 -noout -dates

# Test TLS versions
openssl s_client -connect example.com:443 -tls1_2
openssl s_client -connect example.com:443 -tls1_3

Troubleshooting

Connectivity Checklist

1. Physical/Cloud layer: Is the instance running? 2. Security groups: Are ports open? 3. NACLs: Are subnets allowing traffic? 4. Route tables: Is routing correct? 5. DNS: Does name resolve? 6. Application: Is service listening?

Common Commands

# Check if port is listening
netstat -tlnp | grep :80
ss -tlnp | grep :80

# Test TCP connectivity
nc -zv hostname 443
telnet hostname 443

# Check routes
ip route
traceroute hostname
mtr hostname

# DNS resolution
nslookup hostname
dig hostname
host hostname

# Network interfaces
ip addr
ifconfig

# Active connections
netstat -an
ss -tuln

Performance Debugging

# Bandwidth test
iperf3 -c server-ip

# Latency analysis
ping -c 100 hostname | tail -1

# MTU issues
ping -M do -s 1472 hostname

# Packet capture
tcpdump -i eth0 port 443

Reference Files

  • `references/troubleshooting.md` - Detailed troubleshooting workflows

Integration with Other Skills

  • cloud-infrastructure - For cloud networking
  • security-engineering - For network security
  • performance - For network optimization

Related skills

FAQ

What does the network-engineering skill cover?

Network architecture and VPC design, load balancing, DNS, SSL/TLS, network security, and connectivity troubleshooting.

Does it help debug TLS and DNS?

Yes, it includes openssl commands for certificate inspection and dig/nslookup commands for DNS resolution and propagation.

Cloud & Infrastructureinframonitoring

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.