# Networking Tips

## How to find your computer's IP Address

### Windows

1. &#x20;Press the Windows key, type **Command Prompt** and open
2. Type in **ipconfig** and press enter<br>

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2FHabboAWJg0yqkwUUxLMV%2Fimage.png?alt=media&#x26;token=cd5ae51e-d4b5-4384-b3ea-54d028f1ec51" alt=""><figcaption></figcaption></figure>
3. Find the ip address you are looking for. \
   Ethernet adapters will be listed as well as any Wireless adapters. You are looking for the **IPv4 address.**<br>

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2FB06rmYxO5e9JrTtOszul%2Fimage.png?alt=media&#x26;token=e690bf70-6987-4137-b201-bf183b9e6d1c" alt=""><figcaption></figcaption></figure>

### Mac

1. Search for the Mac app Terminal

2. type in ifconfig and press enter<br>

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2F6az83HupWQDA9JGtJHIG%2Fimage.png?alt=media&#x26;token=aac22604-3dff-402e-903c-a1ae799ac4fd" alt=""><figcaption></figcaption></figure>

3. Find for the ip address you are looking for. On my Mac, usually en0 is the wifi

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2FwU2JdV1HUFcUYDnsCuBz%2Fimage.png?alt=media&#x26;token=d7c2765c-e48d-4e4f-986f-4a34772088b7" alt=""><figcaption></figcaption></figure>

## How to ping a device on the network

If you are trying to connect to a network, you can use the ping command to troubleshoot if the computer can talk to the device you are trying to connect to.&#x20;

1. (Windows) Click on Windows and search for Command Prompt. \
   (Mac) Search Applications for Terminal.

2. Type in "ping" then the address you want to ping, with a space between ping and the address. For example I would enter "ping 192.168.1.1"\
   \
   If the ping is successful, it will show a number and **bytes** from the address like in this screenshot:<br>

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2FhypDYotZBf0Cc77RC1K5%2Fimage.png?alt=media&#x26;token=f22bf34b-f8dc-476c-8b86-3916a5edebca" alt=""><figcaption></figcaption></figure>

   If the ping is unsuccessful, it will say **Request timeout**.<br>

   <figure><img src="https://4002977754-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrQtfp6C58EggcONhzAMx%2Fuploads%2Fzr70TeTH9R5ciWtEFi7I%2Fimage.png?alt=media&#x26;token=6cf96ae3-fd2a-47fa-93da-5ca34737cb49" alt=""><figcaption></figcaption></figure>

3. To stop the ping, close the terminal window or press Control+C (Mac and PC).&#x20;
