Operators switching between Windows and Linux need parallel mental models. Windows exposes ipconfig, route print, and PowerShell Get-NetAdapter; Linux uses ip addr, ip route, and nmcli. Socket inspection maps netstat -ano to ss -tanp. DNS on Windows often uses nslookup or Resolve-DnsName; Linux favors dig and resolvectl. Scripting differs—PowerShell objects versus POSIX text pipelines.
| Task | Windows | Linux |
|---|---|---|
| IP summary | ipconfig /all | ip -br a |
| Listeners | netstat -ano | ss -ltnp |
| Path ping | tracert | traceroute / mtr |
Related
ipconfig vs ifconfig, Windows ipconfig, Windows netstat, tracert, Linux networking, netstat vs ss