Как поменять айпи адрес на windows 10

  • Home
  • Partition Magic
  • How to Change IP Address on Windows 10 [Step-by-Step Guide]

By Ariel | Follow |
Last Updated

Sometimes, we have to change IP address out of many reasons. How to change IP address on Windows 10? If you are also searching for the answer, you can follow this Windows 10 guide provided by MiniTool to change IP address.

Before You Do

How to change your IP address? In order to change IP address Windows 10 smoothly, it’s required to log in to Windows 10 using an administrator account. Besides, you need to find the IP address of your router and computer. To do so, follow the steps below.

Step 1. Press the Win + I keys to open the Settings app and go to the Network & Internet section.

Step 2. In the Status tab, scroll down the right sidebar and click on the View your network properties option.

Step 3. Now, scroll down the new screen to find the Default gateway and IPv4 address sections. The router’s IP address is next to the Default gateway and the IPv4 address identifies your computer. Remember the IP addresses you have found.

find the IP addresses of the router and computer

Now, let’s see how to change IP address Windows 10 in the following part.

How to Change My IP Address in Windows 10

Here we will walk you through 2 methods. Each method will be discussed in detail. Now, let’s start learning how to change IP address Windows 10.

Method 1. Change IP Address Windows 10 Using the Settings App

The first and simplest way to change IP address is to use the Settings app. Here’s a full guide for you:

Step 1. Open the Settings app by pressing Win + I keys and then click on Network & Internet.

Step 2. In the pop-up window, select the network type based on your situation. If your device connects to the Internet through a wireless card, select the Wi-Fi section. If your device is using a wired connection, select the Ethernet section.

click on Wifi

Step 3. Scroll down the right sidebar to locate the IP settings section and click on the Edit button.

Step 4. In the pop-up dialog box, select Manual from the drop-down menu and enable the IPv4 switch.

Tip: If you want the Windows 10 IP address is to be assigned by the router automatically, you can select Automatic (DHCP) option from the drop-down menu.

Step 5. Enter all the required details below including IP address, Subnet prefix length, Gateway, etc.

IP address: It refers to the static IP address that you want to use.

Subnet prefix length: It refers to the prefix length that determines the size of the subnet.

Gateway: It refers to the IP address of your router.

The Preferred DNS and Alternate DNS settings are not mandatory to enter. The setting will be automatically assigned by your router if they are blank.

Step 6. After the details are entered, click on the Save button to change IP address.

Method 2. Change IP Address Windows 10 in Control Panel

In addition to the above method, you can change IP address Windows 10 through the Control Panel. Here’s how to do that:

Step 1. Type control in the search window and select the Control Panel app from the best match.

Step 2. Change the View by to Category, and then click on View network status and tasks under the Network and Internet section.

click on View network status and tasks

Step 3. Navigate to the View your active networks tab and click on your Internet connection next to it.

click on your Internet connection

Step 4. In the pop-up window, click on Properties and then select the Internet Protocol Version 4 or IPv6, which depends on the IP address that you’re ready to change. 

Step 5. Click on the Properties button.

Step 6. In the Properties window, select the Use the following IP address option if you want to set a static IP address.

Step 7. Then you need to enter all the required details manually including IP address, subnet mask, and Default gateway. After that, click on OK to save the changes and exit the window.

change IP address

How to change your IP address in Windows 10? I believe that already have known detailed steps. Now, it’s your turn to have a try.

About The Author

Position: Columnist

Ariel has been working as a highly professional computer-relevant technology editor at MiniTool for many years. She has a strong passion for researching all knowledge related to the computer’s disk, partition, and Windows OS. Up till now, she has finished thousands of articles covering a broad range of topics and helped lots of users fix various problems. She focuses on the fields of disk management, OS backup, and PDF editing and provides her readers with insightful and informative content.

How to Change IP address in Windows 10: IP address is the unique numerical label each device possesses on any particular computer network. This address is used to send and receive messages between the devices on a network.

The dynamic IP address is provided by the DHCP server (your router). A device’s dynamic IP address changes every time it connects to the network. The static IP address, on the other hand, is provided by your ISP and remains the same until it manually changes by the ISP or the administrator. Having dynamic IP addresses reduces the risk of being hacked than having static IP addresses.

How to Change IP address in Windows 10

On a local network, you might want to have resource sharing or port forwarding. Now, both of these require a static IP address to work. However, the IP address assigned by your router is dynamic in nature and will change every time you restart the device. In such a situation, you will need to manually configure a static IP address for your devices. There are many ways to do it. Let’s check them out.

Table of Contents

Make sure to create a restore point just in case something goes wrong.

Method 1: USE CONTROL PANEL TO CHANGE IP ADDRESS

1.Use the search field beside the windows icon on the taskbar and search for the control panel.

2.Open control panel.

3.Click on ‘Network and Internet’ and then on ‘Network and sharing center’.

From Control Panel go to Network and sharing center

4.Click on ‘Change adapter settings’ on the left side of the window.

change adapter settings

5.Network connection windows will open.

Network connection windows will open

6.Right-click on the relevant network adapter and click on properties.

7.In the networking tab, select ‘Internet Protocol Version 4 (TCP/IPv4)’.

8.Click on Properties.

9.In the IPv4 Properties window, select the ‘Use the following IP address’ radio button.

10.Enter the IP address you want to use.

11.Enter the subnet mask. For a local network that you use at your home, subnet mask would be 255.255.255.0.

12.In the Default gateway, enter your router’s IP address.

13.In the Preferred DNS server, enter the IP address of the server which provides DNS resolutions. It is usually your router’s IP address.

14.You can also add an alternate DNS server to connect to in case your device can’t reach the preferred DNS server.

15.Click on OK to apply your settings.

16.Close the window.

17.Try navigating a website to see if it works.

This how you can easily Change IP Address in Windows 10, but if this method doesn’t work for you then make sure to try the next one.

Method 2: USE COMMAND PROMPT TO CHANGE IP ADDRESS

1.Press Windows Key + X then select Command Prompt(Admin).

2.To see your current configurations, type ipconfig /all and hit Enter.

Use ipconfig /all command in cmd

3.You will be able to see the details of your network adapter configurations.

You will be able to see the details of your network adapter configurations

4.Now, type:

netsh interface ip set address name=”yourNetworkAdapter” static 10.20.30.40 255.255.255.0 2.4.6.8

Note: These three addresses being your device’s static IP address you want to assign, subnet mask, and default getaway address, respectively.

These three addresses being your device’s static IP address you want to assign, subnet mask, and default getaway address

5.Press enter and this will assign a static IP address to your device.

6.To set your DNS server address type the following command and hit Enter:

netsh interface ip set dns name=”yourNetworkAdapter” static 10.20.30.1

Note: The last address being that of your DNS server.

Set your DNS Server Address using Command Prompt

7.To add an alternate DNS address, type

netsh interface ip add dns name=”alternateServer” 8.8.8.8 index=2

Note: This address will be the alternate DNS server address.

To add an alternate DNS address type the following command into cmd

8.Try navigating a website to see if it works.

Method 3: USE POWERSHELL TO CHANGE IP ADDRESS

1.Press Windows Key + S to bring up the Search then type PowerShell.

2.Right-click on Windows PowerShell shortcut and select ‘Run as administrator’.

3.To see your current IP configurations, type Get-NetIPConfiguration and hit Enter.

To see your current IP configurations, type Get-NetIPConfiguration

4.Note down the following details:

InterfaceIndex
IPv4Address
IPv4DefaultGateway
DNSServer

5.To set a static IP address, run the command:

New-NetIPAddress -InterfaceIndex 13 -IPAddress 10.20.30.40 –PrefixLength 24 -DefaultGateway 2.4.6.8

Note: Here, replace InterfaceIndex number and DefaultGateway with the those you noted down in previous steps and IPAddress with the one you want to assign. For subnet mask 255.255.255.0, PrefixLength is 24, you can replace it if you require to with correct bit number for subnet mask.

6.To set DNS server address, run the command:

Set-DnsClientServerAddress -InterfaceIndex 3 -ServerAddresses 10.11.12.13

Or, if you want to add another alternate DNS address then use the command:

Set-DnsClientServerAddress -InterfaceIndex 3 –ServerAddresses 10.11.12.13, 8.8.8.8

Note: Use the relevant InterfaceIndex and DNS server addresses.

7.This how you can easily Change IP Address in Windows 10, but if this method doesn’t work for you then make sure to try the next one.

Method 4: CHANGE IP ADDRESS IN WINDOWS 10 SETTINGS

Note: This method works only for wireless adapters.

1.Press Windows Key + I to open Settings then click on ‘Network & Internet’.

Press Windows Key + I to open Settings then click on Network & Internet

2.Click on Wi-Fi from the left pane and select your required connection.

Click on Wi-Fi from left pane and select your required connection

3.Scroll down and click on Edit button under IP settings.

Scroll down and click on Edit button under IP settings

4.Select ‘Manual’ from the drop-down menu and toggle on the IPv4 switch.

Select ‘Manual’ from the drop-down menu and toggle on the IPv4 switch

5.Set IP address, Subnet prefix length (24 for subnet mask 255.255.255.0), Gateway, Preferred DNS, Alternate DNS and click on Save button.

Using these methods, you can easily set a static IP address for your computer.

Recommended:

  • How to Setup Gmail in Windows 10
  • Add a Printer in Windows 10 [GUIDE]
  • Microsoft Word has Stopped Working [SOLVED]
  • How to Disable Google Chrome PDF Viewer

I hope the above steps were able to help you Change IP address in Windows 10 but if you still have any questions regarding this guide then feel free to ask them in the comment’s section.

Your public IP address is unique and visible to websites and network admins. It contains information about your internet service provider, city, region, and country.

As you can imagine, having your public IP address visible is not the best for privacy.

Moreover, the information provided by your IP is the reason why you can’t access a lot of sites due to geo-restrictions or governmental regulations.

For this reason, many people use VPNs to hide their IP. But VPNs do much more than that, and you may not want to pay for a full VPN service if you only need it for changing your IP.

Luckily, there are other ways you can change your IP address on Windows 10.

What is an IP address?

what is an ip address

An Internet Protocol (IP) address is a long string of numbers assigned to every device connected to a network.

→ In version 4 of the internet protocol (IPv4), an IP address is a 32-bit number in the form x.x.x.x, where x is a value between 0 and 255.

→ However, if your internet provider offers IPv6 (internet protocol version 6) on its network, you will have something like this: 2001:0db8:85a3:0000:0000:8a2e:0370:7334

In theory, IPv6 is safer and more secure, but it’s not supported by a lot of ISPs and applications due to outdated infrastructure.

Both are equally safe for most online activities, but IPv4 is still the preferred choice because of this compatibility issue.

Now, let’s see how you can change your IP address.

How to change IP without VPN on Windows 10

If you want to change your IP address without using a VPN on Windows 10, you can try a few different methods.

1. Use a proxy server

Like a VPN, a proxy is a middleman between your device and the internet. Websites and apps see the IP address of the proxy server and not your actual IP address.

A VPN is technically a proxy that can be an SSL, SSH, or SOCKS proxy. 

Here’s how to set up a proxy server on Windows 10:

  1. Open the Windows Settings.
  1. Click on “Network & Internet.
Settings Network and internet

  1. Select “Proxy” from the left-hand menu.

  1. Turn on the “Use a proxy server” toggle switch.

  1. Enter the IP address and port number of the proxy server you want.

  1. Click “Save” to apply the changes.

✅ Pros

  • Configurable in existing apps like your browser
  • There are free proxy servers available online

❌ Cons

  • Real IP could be exposed if the proxy connection drops for some reason
  • Susceptible to man-in-the-middle attacks
  • They lack encryption and other security features

Changing your IP address using a proxy server can help protect your online privacy and security.

Moreover, it will allow you to access geographically restricted content and bypass network restrictions.

2. Use the Tor browser

When you connect to Tor, your internet traffic is encrypted and routed through a random sequence of these volunteer “nodes,” which are sort of like proxy servers. 

Tor browser uses nodes that hide your IP address whenever you access any network. The nodes will change each time you use them. That guarantees your anonymity as well.

Websites can only see the IP address of the last server in the sequence, called the exit node.

Each time you visit a website, the nodes’ sequence changes, making tracing activity back to the original IP address practically impossible.

✅ Pros

  • It’s completely free
  • Easy to use

❌ Cons

  • Some websites block connections from known Tor nodes
  • May sometimes leak IP address

Tor is used to avoid censorship, ensure online privacy, and avoid targeted ads based on browsing history.

3. Use the Command Prompt

Changing your IP address using Command Prompt can help troubleshoot network issues or protect online privacy. 

Following these simple steps, you can release your current IP address, renew it with a new one, and verify your new network configuration information.

  1. Press the Windows key + R to open the Run dialog box.
  1. Type “cmd” and hit Enter to open the Command Prompt.
run cmd windows 10

  1. Now, type “ipconfig /release” and hit Enter.
Wireless key mismatch error

  1. Type “ipconfig /renew” and hit Enter to obtain a new IP address from your network.

✅ Pros

  • Helpful in diagnosing network problems
  • Improves privacy
  • It resolves network issues such as slow internet speed
  • Free
  • Changes IP within seconds

❌ Cons

  • Disruption to the network connection.
  • Changes IP to one belonging to your ISP
  • It doesn’t stop tracking

When experiencing network issues and looking to protect your online privacy, this method can help with quick resolution.

4. Change your router’s MAC address. 

The MAC address is a unique identifier for a computer’s network interface, with which websites can track online activities.

When using a router, every device on the network has a unique identifiable MAC address.

By changing your router’s or system’s MAC address, you can change your IP address or that of all devices connected to the router’s network.

Here’s how to change your system MAC address, hence IP address on Windows 10:

  1. Press the Windows key + X and select “Device Manager” from the menu.

  1. Expand the “Network adapters” section.

  1. Right-click on the network adapter you are using and select “Properties“.

  1. Click “Advanced” and select “Network address” from the list.

  1. Select “value” and enter the new MAC address you want to use.

  1. Select “ok” to apply changes.

✅ Pros

  • Bypass network traffic restrictions by allowing your device to appear as a different device on the network, potentially gaining access to restricted resources..
  • Improves online security
  • It makes it difficult for websites to link your device to your previous activities.

❌ Cons

  • Limited effectiveness as some ISPs may not assign a new IP address
  • Technical knowledge is required
  • Can disrupt network connection

Some public WiFi networks may restrict access to specific devices based on MAC addresses. 

If you cannot connect to a public WiFi network, changing your MAC address can help you bypass these restrictions and access the network.

How to change IP without VPN on Windows 11?

The methods of changing your IP address on Windows 11 are similar to that of Windows 10, as outlined above.

Therefore, you can change your IP address without VPN on Windows 11 using the Command Prompt, proxy server, or Tor browser.

The main difference between Windows 11 and Windows 10 is the location of some of the settings. 

In Windows 11, the Settings app has a new design and layout, but the options for changing your IP address are still in the Network & Internet section.

Summary

Changing your IP address without a VPN on Windows 10 is possible, but it’s important to proceed cautiously and understand each method’s potential risks and benefits. 

By using a proxy server, releasing and renewing your IP address, or changing your MAC address, you can take steps to protect your online privacy and access blocked content.

Download Windows Speedup Tool to fix errors and make PC run faster

Have you ever wondered how you can change your IP address and location on Windows 11/10? It is legal to change IP address or location. There are many instances like IPs blocked by certain websites or geo-blocked websites or services where we need to change the IP address or location to access them. In this guide, we show you a few ways to do it.

Change your IP and Location

If you ever want to change your IP address or location for any reason, these are the following ways that can help you do it.

  1. Use a VPN or Proxy
  2. Use Tor
  3. Disconnect your modem
  4. Change ISP
  5. Ask ISP for a new IP address

Let’s get into the details of each method.

1] Use a VPN or Proxy

Whenever you use a VPN, it generally masks your real IP address with its IP address from the location you have selected. All the web activity seems to take place through that new IP address from the location you’ve selected. This is one way to change your IP and location easily with just a click when you use VPN software.

A proxy works just like a VPN, but it is more like a middleman. It connects the website you visit with the proxy instead of you. The main difference between a proxy and a VPN is that the data is not encrypted whereas VPN has various protocols to encrypt it. There are many proxy programs that can help you do it easily.

2] Use Tor

Tor is accessible only through the Tor browser which you have to download from Torproject.org. Whenever you use Tor, it sends the traffic and communication through numerous nodes around the world masking your IP and location. It is just like a VPN but without many options or features where only security takes the front seat. You need to give up on internet speeds when you use Tor.

3] Disconnect your modem

The internet you use has an IP address assigned by the internet service provider that you use through a modem or router. Disconnect your modem or router and wait for a few minutes to get a new IP address, if the previous IP is given to someone else. Also, there is no guarantee that you don’t get the same IP address again.

Read: How to block ISP tracking your traffic and data usage

4] Change ISP

IP addresses are assigned by internet service providers. Whenever you get an internet connection, you are assigned an IP. So, if you change your internet service provider, you will get a new IP address.

Read: How to set a Static IP Address in Windows 11/10

5] Ask ISP for a new IP address

As the internet service provider (ISP) is responsible for assigning IP addresses, you can ask your ISP for a new IP address. Most of them provide as they have numerous IPs. Changing IP once or twice is possible, but asking them to change IP multiple times, will not work.

These are the different ways to change your IP address and location on a Windows 11/10 PC.

Read: What can someone do with your IP address?

Can I change my IP address to a specific location?

IP addresses are assigned by internet service providers. You cannot change to a specific location with it. You have to use a VPN to change your IP (a new one provided by VPN) to a specific location. Even, VPNs may not have the servers in the specific locations you may want.

Does VPN change IP location?

Yes, VPN changes IP location. Not only, does it change the IP location, but also, hides your IP address by assigning you a new one from the country or location you select. It cannot change the location of your original IP address.

Related read: Find out, renew, and change IP address in Windows.

Guru is a Communications graduate with hands-on experience with computers, cameras, and editing tools. A tech enthusiast and a movie buff who loves writing about computers, he dreams of living a life devoid of all tech and modern-day advancements in a forest.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Программы для создания иконок для windows
  • Что значит загрузочная флешка windows 10
  • Как поставить драйвера на windows 10 на ноутбуке
  • Не копируется текст в буфер обмена windows
  • Iso usb для windows 10