ipconfig (Windows)
ipconfig /all lists adapters, DHCP enabled flag, lease obtain/expire times, default gateways, and DNS servers registered by the stack. ipconfig /flushdns clears the local resolver cache—useful after DNS cutovers but irrelevant for pure routing issues.
ifconfig vs ip (Linux)
Classic ifconfig still exists on some systems but is superseded by ip addr, ip link, and ip route from iproute2. The ip suite understands policy routing, VLAN subinterfaces, and tunnels consistently—scripts should not rely on ifconfig-only parsing on modern distros.
Apple macOS
ifconfig remains common for quick checks; networksetup handles service order and proxy settings at a higher layer.
When people confuse the two
They sound similar but live on different OS families—there is no ipconfig binary on stock Linux, and Windows has no first-party ifconfig (use WSL or third-party ports if you see one).
Related: Windows ipconfig explained, Linux networking commands, routing table commands, public and private IP commands.