LinuxAdminToolkitLinuxAdminToolkit
Home
Guide
About Me
GitHub
Home
Guide
About Me
GitHub
  • Administrator's Manual

    • Commands
      • Basic Commands
      • File Management
      • Process Management
      • User and Group Management
      • System Information
      • Disk Usage
    • Networking
      • IP Address
      • Subnetting
      • Routing
      • Firewall
      • Network Tools
    • Services
      • Service Management
      • Service Configuration
      • Common Services
    • Monitoring and Logging
      • System Monitoring
      • Log Management
      • Monitoring Tools
      • Log Analysis Tools
    • Shell Scripting
      • Basic Shell Script Structure
      • Variables
      • Control Structures
      • Functions
      • Input and Output
      • Debugging and Error Handling
      • Advanced Topics
    • Configurations Files
      • System Configuration Files
      • Network Configuration Files
      • Service Configuration Files
      • Application Configuration Files
      • Editing Configuration Files
      • Backup and Restore Configuration Files

Network Tools

ping (check network connectivity)

  • send ICMP echo requests to test connectivity.
ping google.com

traceroute (trace route to a host)

  • traces the route packets take to a destination
traceroute google.com

netstat (network statistics)

  • displays listening ports and other network statistics
netstat -tuln

nmap (network scanning)

  • performs a network scan to discover active hosts.
nmap -sP 192.168.1..0/24

curl (transfer data from or to a server)

  • fetches the contents of a URL
curl http://example.com

wget

  • downloads a file from the web
wget http://example.com/file.tar.gz

ss (Socket Statistics)

  • displays socket statistics similar to netstat
ss -tuln
Edit this page on GitHub
Last Updated:
Contributors: jenilgajjar20
Prev
Firewall