### Test TCP/IP Configuration with Ping Source: https://www.sharemouse.com/doc/troubleshooting/#debug-file Use the ping command to verify that the TCP/IP protocol is installed and functioning correctly on your computer. This is a basic network diagnostic step. ```bash ping localhost ``` -------------------------------- ### Find IP Addresses with ipconfig Source: https://www.sharemouse.com/docs/04/troubleshooting Use the 'ipconfig' command in the terminal to list network adapters and their IPv4 addresses. Local network IPs typically start with 169.254 or 192.168. ```bash ipconfig ``` -------------------------------- ### Check Network Communication with ping Source: https://www.sharemouse.com/docs/04/troubleshooting Use the 'ping' command followed by an IP address to test network connectivity between computers. 'Request timed out' indicates the target PC cannot be reached. ```bash ping x.x.x.x ```