You can find your network gateway using the Command Prompt on Windows. Here's how:
-
Open the Run dialog box: Press the "Win + R" keys simultaneously.
-
Open the Command Prompt: Type
cmd
in the Run dialog box and click "OK." This will launch the Command Prompt window. -
Execute the
ipconfig
command: In the Command Prompt window, typeipconfig
and press the "Enter" key. This command displays your network configuration details. -
Locate the Default Gateway: Look for the line labeled "Default Gateway." The IP address listed next to it is your network gateway IP address.
Example output:
Windows IP Configuration
Ethernet adapter Ethernet:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::xxxx:xxxx:xxxx:xxxx%x
IPv4 Address. . . . . . . . . . . : 192.168.1.10
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
In this example, the Default Gateway is 192.168.1.1
.