How To Enter An IP Address | Connect Or Configure Any Device

Entering an IP address means either typing it into a browser to access a web interface, or manually configuring it in a device’s network settings with the correct subnet mask, gateway, and DNS values.

Whether you’re trying to open your router’s admin page or set a static IP on a Windows PC, the exact steps depend on what you’re doing and which device you’re using. The two use cases — accessing a web interface versus assigning a static address — require completely different workflows, and mixing them up is the most common source of frustration. This guide covers both scenarios, from browser entry to manual configuration, with the exact menu names and button sequences for each platform.

Typing An IP Address Into A Browser

The simplest use case is opening a device’s web interface by entering its IP address into a browser’s address bar. Click the address bar, clear any existing text, type the IP address, and press Enter.

For most websites and router interfaces, prefix the IP with http://. For an FTP server, use ftp:// instead. Browsers sometimes interpret a bare numeric string as a search query rather than a URL, especially for local IP addresses like 192.168.x.x — adding the prefix avoids that confusion.

A common issue: typing 192.168.1.1 without a prefix may trigger a Google search instead of loading the router page. The fix is http://192.168.1.1.

How To Manually Assign A Static IP On Windows

Setting a static IP on Windows requires navigating to the network adapter’s properties and entering four values: IP address, subnet mask, default gateway, and DNS server addresses.

  1. Open Start > Control Panel > Network and Sharing Center > Change adapter settings.
  2. Right-click your active network adapter (usually Ethernet or Wi-Fi) and select Properties.
  3. Select Internet Protocol Version 4 (TCP/IPv4) and click Properties.
  4. Select Use the following IP address and enter the assigned values for IP address, Subnet mask, and Default gateway.
  5. Select Use the following DNS server addresses and enter Preferred DNS server and Alternate DNS server, then click OK.
  6. Click OK on the adapter properties window — both OK buttons must be clicked or the settings will not save.

If you need to revert to automatic addressing, return to this same panel and select Obtain an IP address automatically and Obtain DNS server address automatically.

IP Address Entry On Cisco Switch CLI

Network administrators configuring managed switches use command-line interface (CLI) commands rather than a graphical menu. These steps apply to Cisco 350 Series Managed Switches and similar SMB hardware.

  1. Connect via serial cable and log in. The default login is cisco/cisco if unchanged.
  2. Enter configure mode.
  3. Enter the interface context, for example: interface vlan 1.
  4. Enter the IP command with the address and subnet mask: ip address 192.168.100.201 255.255.255.0.
  5. To remove the address, use: no ip address.
  6. Save the configuration so it persists after reboot: copy running-config startup-config.

Failing to save means the configuration will be lost after a power cycle.

Static IP Configuration For Different Devices

Device / OS Where To Enter The IP Key Steps
Windows Control Panel > Adapter Properties > TCP/IPv4 Enter IP, subnet mask, gateway, and DNS; click both OK buttons
Mac System Preferences > Network Select active connection, choose Manual, enter the four values
iPhone / iPad Settings > Wi-Fi > (i) next to network Tap Configure IP > Manual
Android Settings > Wi-Fi > Long-press network > Modify Network Select Static under IP settings
Linux (nmcli) Terminal via nmcli tool Use nmcli con mod [connection] ipv4.addresses 192.168.1.10/24
Cisco Switch CLI configure > interface context ip address [ip] [mask] then save with copy running-config startup-config

Common Mistakes That Break Connectivity

Entering an IP address correctly means entering all four companion values, not just the IP itself. A missing or wrong subnet mask, gateway, or DNS entry can leave the device connected to the network but unable to reach the internet or any other device.

  • IP conflict: Using an address already assigned to another device on the same network. Verify the address is unused before applying it.
  • Wrong subnet: The IP must fall within the correct subnet range for your network. A device on a 255.255.255.0 subnet cannot reach addresses ending in a different third octet without a router.
  • Missing gateway: Without a default gateway, the device can reach local devices but not any network beyond its own subnet.
  • Forgetting to save: On managed switches and some routers, an IP set in the running configuration is lost after reboot unless explicitly saved to the startup configuration.
  • Confusing IPv4 with other adapters: The address needed is your active network adapter’s IPv4 address — not virtual adapters, Bluetooth, or unrelated entries.

When Static IP Is Appropriate And When It Isn’t

Static IP assignment is necessary for servers, printers, security cameras, and any device that other systems need to find at a consistent address. For everyday desktop and laptop use, DHCP (automatic IP assignment) is safer and simpler — it avoids conflicts and requires no manual setup.

On corporate or campus networks, static IPs are typically assigned by the IT department or network administrators. Entering a random static address on such a network can cause an IP conflict and trigger a block. The official RFC 1918 private address standard defines which ranges are reserved for internal use and should never be routed over the public internet.

Private Vs Public IP Addresses

Type Range Use Case
Private (RFC 1918) 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 Internal home and office networks; not routable on the internet
Public Any address outside private ranges Direct internet access; assigned by your ISP
Loopback 127.0.0.0/8 (typically 127.0.0.1) Testing local network services on the same machine

Private IP addresses work only within your local network. If you enter a 192.168.x.x address in a browser and it doesn’t load, the device may not expose a web interface, or the address may be incorrect. For devices that do expose a web interface — most routers, network-attached storage, and managed switches — the browser method works reliably with the http:// prefix.

Quick Reference: The Correct Values Checklist

Before entering any static IP, confirm each of these four values with your network administrator or router’s DHCP settings page:

  • IP address: A unique, unused address within your subnet range
  • Subnet mask: Usually 255.255.255.0 for small home networks
  • Default gateway: Typically the router’s IP (often 192.168.1.1 or 192.168.0.1)
  • DNS server: Your ISP’s DNS, or a public option like 8.8.8.8 (Google) or 1.1.1.1 (Cloudflare)

Entering the IP without matching these three companion values is the most common cause of “connected but no internet” after a static IP change. Match all four, test the connection, and you’re set.

References & Sources

Please use a real email you check. If it's fake or mistyped, your message won't reach us and we can't reply — wrong addresses are rejected automatically.