ping <hostname or IP>
Check Network Connections, Routing Tables, Interface Statistics, Masquerade Connections, and Multicast Memberships
netstat -tuln
ifconfig
route -n
nslookup <domain>
ifstat
speedtest-cli
sudo lsof -i -P -n
ss -tuln
traceroute -p <port> <hostname or IP>
sudo apt-get update
sudo apt-get install netcat
nc -zv <ip> <port>
-z
tells Netcat to only scan for listening services without sending any data.-v
enables verbose mode, providing more details about the operation.