Network Connections
Display network connections.
netstat -tulpn
ss -tulpn
netstat -rIP Commands
Modern network configuration.
ip addr show
ip route show
ip link show
ip addr add 192.168.1.100/24 dev eth0Ping
Test connectivity.
ping example.com
ping -c 5 example.comAdvertisement
Traceroute
Trace network path.
traceroute example.com
tracepath example.comDNS Lookup
Query DNS records.
nslookup example.com
dig example.com
host example.comDownload Files
Download with wget or curl.
wget https://example.com/file.zip
curl -O https://example.com/file.zip
curl -L https://example.com/file.zipNetwork Interfaces
Configure interfaces.
ifconfig
ifconfig eth0 up
ifconfig eth0 192.168.1.100Last updated: January 2026