Skip to main content

Networking Cheat Sheet

Quick reference for the iproute2 suite and other networking tools.

Interface Management

CommandDescription
ip aShow IP addresses of all interfaces.
ip link showShow link layer information.
ip link set dev eth0 upBring interface eth0 up.
ip link set dev eth0 downBring interface eth0 down.

Routing and Connections

CommandDescription
ip route showDisplay routing table.
ip route add default via 192.168.1.1Set default gateway.
ss -tulnShow listening TCP/UDP ports.
ping hostSend ICMP ECHO_REQUEST to network hosts.

DNS and Troubleshooting

CommandDescription
dig google.comQuery DNS records.
nslookup google.comQuery Internet name servers interactively.
traceroute hostPrint the route packets trace to network host.
mtr hostNetwork diagnostic tool combining traceroute and ping.

Practical Example: Assigning an IP

sudo ip addr add 10.0.0.5/24 dev eth0