Dani 5,664 The Queen of DaniWeb Administrator Featured Poster

I found this in a few different places around the 'net - hopefully it's helpful:

Use a Shortcut to Local Area Network Connection Information

Something new in Windows XP - instead of using the command line program and typing ipconfig to find local area network information, you can use the following shortcut:

  • Click Start, point to Connect to, and then click Show All Connections.
  • Right-click the connection you want information about, and then click Status.
  • In the connection Properties dialog box, click the Support tab.
  • For even more information, click the Advanced tab.
  • To automatically enable the status monitor each time the connection is active, in the connection Properties dialog box, select the Show icon in taskbar notification area when connected check box.

Dani AI

Generated

Good, concise GUI shortcut from . Two lightweight complements make routine checks faster and produce reproducible output for troubleshooting: a direct applet shortcut and a command-prompt shortcut that prints full TCP/IP details.

Common shortcut targets:

%windir%\system32\ncpa.cpl
cmd.exe /k ipconfig /all

Useful diagnostic commands (what they show):

  • ipconfig /all — complete adapter details: IPs, DHCP server, lease times, DNS servers, and Physical Address (MAC).
  • ipconfig /release and ipconfig /renew — force DHCP to drop and request a new lease.
  • ipconfig /flushdns — clear resolver cache.
  • getmac — list MAC addresses.
  • arp -a — ARP cache (IP-to-MAC mappings).
  • netstat -rn or route print — routing table.
  • nslookup <hostname> — DNS resolution checks.
  • ping <gateway or host> — basic reachability test.

Quick capture and privacy:

ipconfig /all > "%USERPROFILE%\Desktop\nic-info.txt"
ping 192.168.1.1 > "%USERPROFILE%\Desktop\ping-log.txt"

Saving output to files makes it easier to compare results or attach logs. Before posting logs publicly, remove or redact sensitive items such as Physical Address (MAC), DHCP server identifiers, DNS servers, and any credentials.

Diagnostic cues to watch for: an IP in the 169.254.x.x range indicates APIPA/DHCP failure; “Media disconnected” usually points to a physical/driver issue; gateway reachable but DNS failing suggests a name-resolution problem (use nslookup). For hardware-level problems, check cable, switch port, and NIC drivers or try disable/enable the adapter.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.