Related
Test Network Connectivity
linux
Test the reachability of a network host and measure round-trip time for packets sent to it.
Configure Network Interfaces
linux
Display or configure network interface parameters.
Display Network Statistics
linux
Show network connections, routing tables, interface statistics, and listening ports.
Command
curlExplanation
curl is a command-line tool for transferring data with URLs, supporting many protocols including HTTP, HTTPS, FTP.
Examples
GET request to API
curl https://api.example.comPOST JSON data
curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' https://api.example.comDownload file
curl -o file.zip https://example.com/file.zip