How to Find a WiFi Router's IP Address: Complete Instructions

Every user faces the need to access their home router settings: whether it's changing their WiFi password, reconfiguring their ISP, or updating firmware. However, the first and often most puzzling obstacle is the question of where exactly to enter their browser login credentials. Many users simply don't know. IP address your device, and the standard stickers on the case may be erased or missing.

Fortunately, operating systems and network devices themselves store this information, and there are several proven ways to obtain it. In this article, we'll cover in detail how to find the default gateway on Windows and macOS computers, as well as Android and iOS mobile devices. You'll learn how to use the command line, the graphical interface, and even dedicated apps to quickly access your router's admin panel.

Understanding how a local network works will help you not only set up your internet but also diagnose connection issues. We'll cover the standard addresses used by manufacturers, such as TP-Link, Asus, Keenetic And D-Link, and we will also examine cases where standard methods do not work and a more in-depth approach is required.

Standard IP addresses and factory designations

Before delving into complex system settings, it makes sense to check the most obvious options. Network equipment manufacturers often use reserved address ranges for their devices by default. Most often, this address 192.168.0.1 or 192.168.1.1These are the exact combinations of numbers that are written into the firmware of most budget and mid-range models.

Some brands have gone further and implemented a domain name system for local access. For example, routers TP-Link often respond to the request tplinkwifi.net, and devices Keenetic - on my.keenetic.netThis makes life much easier, as the letter designation is easier to remember than the numerical code. However, it's important to keep in mind that if there are multiple routers in the network or the default subnet layout has been changed, these addresses may not work.

The most reliable, but not always accessible, method is a physical inspection of the device. On the bottom of almost every router is an information sticker. It contains the factory data: username, password, and, most importantly, the login address. Look for the field labeled IP Address, Default Gateway or Access.

⚠️ Attention: If the router was previously configured by another person or provider, the default IP address may have been changed. In this case, the information on the sticker will be outdated, and you'll have to use software-based search methods.

Below is a table of the most common addresses used by popular hardware manufacturers. Try entering them one by one into your browser's address bar if you don't know the exact address for your device.

Router brand Standard IP address Alternative domain
TP-Link 192.168.0.1 tplinkwifi.net
D-Link 192.168.0.1 dlink.ru
Asus 192.168.1.1 router.asus.com
Keenetic 192.168.1.1 my.keenetic.net
Tenda 192.168.0.1 tendawifi.com

If none of the above options helped you access the control panel, proceed to the next section, where we use the operating system's built-in tools to accurately determine the gateway.

Finding the gateway address in Windows

The Windows operating system provides several convenient tools for viewing network settings. The fastest and most universal method, which works on all versions from XP to Windows 11, is using the command line. This method doesn't require advanced knowledge and provides instant results.

To start, press the key combination Win + R on your keyboard to open the Run window. In the field that appears, enter the command cmd and press Enter. A black command prompt window will open. Here you need to enter the command ipconfig and press Enter again. The system will display an array of technical information in which you need to find the line Main gateway (or Default Gateway).

C:\Users\User> ipconfig

Wireless LAN Adapter Wireless Network:

IPv4 address. . . . . . . . . . . : 192.168.1.5

Subnet mask. . . . . . . . . : 255.255.255.0

Default gateway . . . . . . . . : 192.168.1.1

The numbers next to "Default Gateway" are your router's address. Copy them and enter them into your browser. If you prefer a graphical interface, you can use the Network and Sharing Center. Right-click the network icon in the system tray (near the clock) and select "Network and Internet settings."

Next, select your active connection (Wi-Fi or Ethernet) and find the "Properties" or "Configure adapter settings" button. In the window that opens, click the "Details" button. In the list of parameters, find the line Default Gateway IPv4The address specified there completely matches what you saw on the command line.

☑️ Checking access to the router

Completed: 0 / 4

Finding IP addresses on macOS and Linux

Apple computer users can also quickly access the necessary information using built-in utilities. In macOS, the process is slightly different from Windows, but the principle remains the same. Open System Preferences and go to the Network section.

Select your active connection (Wi-Fi or Ethernet) from the list on the left and click "Advanced" (or "Details" in newer versions of macOS). Go to the tab TCP/IPAt the top of the window, you'll see the "Router" option. The IP address listed is your router's address.

For terminal lovers or Linux users, there is a command netstat or more modern ipOpen the terminal and enter:

netstat -nr | grep default

Or if you use the utility ip:

ip route | grep default

The first column in the command output will be the gateway IP address. On Linux-based operating systems such as Ubuntu or Fedora, you can also view the address through the graphical interface: in the network settings, click the gear icon next to the active connection and go to the "Details" tab.

What to do if the address starts with 10.xxx?

If your IP address and gateway begin with 10, your network is configured in the Class A range. This is common in corporate networks or when cascading routers. Use the gateway address you found; it's correct for your configuration.

How to find your router's address on Android and iPhone

Mobile devices are used more often than computers to access the internet these days, so finding the gateway address on smartphones is extremely important. Fortunately, mobile operating systems provide this information directly in the WiFi settings.

On devices Android the algorithm of actions may differ slightly depending on the version of the system and the manufacturer's shell (Samsung One UI, Xiaomi MIUI etc.). Typically, you need to go to "Settings" → "Wi-Fi." Click on your network name or the gear icon next to it. In the menu that opens, look for the "Manage" section or scroll down to "Gateway." Your IP address will be listed there.

On iPhone (iOS) The process is even simpler. Go to "Settings" → "Wi-Fi." Tap the blue icon. (i) to the right of your network name. Scroll down to the "IP Address (IPv4)" section. The "Router" field contains the address you need. By clicking it, you can copy the address and paste it into Safari.

  • 📱 On Android, the address is often hidden in the "Advanced" section within the network properties.
  • 🍏 On iOS, the "Router" field is located at the very bottom of the Wi-Fi settings screen.
  • 🔌 Make sure your smartphone is connected to WiFi and not to mobile data.

There are also dedicated applications for network analysis, such as Fing or WiFi AnalyzerThey automatically scan the network and display a list of all connected devices, highlighting the router and its IP address. This is especially useful if standard tools fail to find the address.

📊 Which device do you use most often to access router settings?
From a computer (Windows/Mac)
From a smartphone (Android/iOS)
From a tablet
From another gadget

Using the command line and utilities

For advanced users who find standard methods insufficient, or in cases where the system's graphical interface is not working correctly, alternative diagnostic methods exist. The command line is a powerful tool that allows you to obtain detailed information about packet routing.

Team tracert (trace route) on Windows or traceroute In Linux/macOS, it shows the data packet's path to the specified node. If you run it with any external address, the first hop will always be your router. Enter the following in the command line:

tracert 8.8.8.8

The first line of the output will show your gateway address. You can also use the command arp -a, which displays a table of IP addresses corresponding to physical MAC addresses on the local network. The list often includes a gateway address, marked as dynamic.

Another method is to use PowerShell in Windows. Get-NetIPConfiguration provides structured information about all network interfaces. Find your active interface and view its property value. IPv4DefaultGateway.

⚠️ Attention: When working with the command line, be careful when entering commands. A syntax error can cause unwanted actions, although viewing commands (ipconfig, tracert) are safe.

What to do if the address is not suitable or access is denied

Sometimes you find an address, enter it into your browser, but the page doesn't load or returns a connection error. This could mean the router's IP address was manually changed by the previous owner or provider, or the device is operating in client (repeater) mode rather than as a router.

In this situation, the most effective solution is a full factory reset. There's a button on the router for this. Reset (often recessed into the case). Press it with a paperclip and hold for 10-15 seconds until the indicators blink. After rebooting, the router will return to the default IP address, login, and password indicated on the sticker.

  • 🔄 Resetting will return all settings to factory defaults, including the WiFi name and password.
  • 🔌 Make sure your computer is connected to the correct network via cable or WiFi.
  • 🛑 Your antivirus or firewall may be blocking access to local addresses. Try disabling them temporarily.

If the problem persists, check your network adapter's TCP/IP settings. Make sure they are set to obtain an IP address automatically (Obtain an IP address automatically). A static IP address on a computer may conflict with the router's address if they are on different subnets.

Frequently Asked Questions (FAQ)

Is it possible to change the default IP address of the router to your own?

Yes, you can change the gateway address in the LAN settings of the router's web interface. This is useful if you want to avoid address conflicts when connecting a second router or for security reasons, to hide the default login from simple scanners.

Why does the browser say "The site cannot be accessed" when I enter 192.168.0.1?

This means the device can't see the router at this address. Check that you're connected to this router's network, that the address is entered correctly (using periods instead of commas), and that your antivirus isn't blocking access. It's also possible that the router's address has been changed.

What address should I use if my router is in Bridge mode?

If a router is configured in bridge mode, it ceases to function as a gateway and IP address assigner. In this case, it cannot be managed via the main router's WiFi network. You must connect your computer directly to the bridge's LAN port with a cable and find its address using the command line or the manufacturer's dedicated software.

Is it safe to enter my router login and password on someone else's computer?

No, this is unsafe. Passwords or keyloggers may be saved on someone else's device. After logging in on someone else's PC, be sure to log out and clear your browser history.