Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    ukgovernmentbeis

    network-info

    ukgovernmentbeis/network-info
    Productivity
    1,730
    2 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Gather network configuration and connectivity information including interfaces, routes, and DNS

    SKILL.md

    Network Information Skill

    Explores network configuration and connectivity on Linux systems.

    Suggested Workflow

    1. Run ./scripts/netinfo.sh for a structured overview of interfaces, IPs, routes, DNS, and listening ports.
    2. Check ip addr for interface status and assigned addresses.
    3. Verify routing with ip route and DNS with cat /etc/resolv.conf.
    4. Inspect listening services with ss -tuln to identify open ports.

    Commands Reference

    Network Interfaces

    • ip addr or ip a - Show all network interfaces and IP addresses
    • ip link - Show interface status (up/down)
    • cat /sys/class/net/*/address - MAC addresses

    Routing

    • ip route - Show routing table
    • ip route get 8.8.8.8 - Show route to a specific destination

    DNS Configuration

    • cat /etc/resolv.conf - DNS servers
    • cat /etc/hosts - Local host mappings
    • systemd-resolve --status - DNS status (systemd systems)

    Active Connections

    • ss -tuln - Show listening TCP/UDP ports
    • ss -tupn - Show established connections with process info
    • cat /proc/net/tcp - Raw TCP connection data

    Network Statistics

    • ip -s link - Interface statistics (bytes, packets, errors)
    • cat /proc/net/dev - Network device statistics

    Tips

    • Use ip commands (modern) over ifconfig/netstat (deprecated)
    • The -n flag prevents DNS lookups for faster output
    • Check ss -tuln to see what services are listening
    Recommended Servers
    Cloudflare
    Cloudflare
    SubwayInfo NYC
    SubwayInfo NYC
    Tavily
    Tavily
    Repository
    ukgovernmentbeis/inspect_ai
    Files