Skip to content

5000+ Great Articles

Best Articles & Essays: Interesting Articles to Read Online

  • What Is Microsoft Visual C++ Redistributable Help Desk
  • How to Optimize Windows 10 for Gaming Windows 10
  • The 5 Best New Features in Windows 10’s 1809 Update Windows
  • Best free minecraft server hosting Gaming
  • How to Stream Movie Torrents Computer Tips
  • How to Respond to Instagram Messages (Mobile and Web) Smartphones
  • Transfer Data to Amazon S3 Quickly using AWS Import Export Computer Tips
  • How to Fix Roblox Error Code 524 Gaming

How to Assign Static IP Address to Your Devices

Posted on October 14, 2023October 15, 2023 By bilal 1983 No Comments on How to Assign Static IP Address to Your Devices

How to Assign Static IP Address to Your Devices.

By default, your router assigns a dynamic IP address to every device that connects to it. This is called DHCP (short for Dynamic Host Control Protocol). But sometimes we need our devices to have the same IP address (i.e. static IP address) every time they connect to the network. The reason is that

  • is accessing your computer from the Internet.
  • Data exchange between two devices on the same network.
  • Quick access to a network printer or NAS.
  • Use your computer as a media server.
  • Or your work WiFi requires a static IP.

How to Assign Static IP Address to Your Devices

What IP address should you choose?

If two devices on the network have the same IP address, conflicts will occur. Internet will not work on either or both of them, depending on your router. So, it’s important to assign a unique IP address to your computer. There are several ways to select an unused IP address.

For example – first find the IP address of your device, say 192.168.1.7; then leave the first three values ​​(for example 192.168.1) as they are and replace the last digit with some far number, for example 192.168.1.222. However, make sure the last digit must be between 0 and 255.

Assigning a static IP address to most devices is easy: just go to network settings, find the DHCP option and turn it off. After that, you will see a text area for entering a static IP address. Enter the new IP address, save the changes and that’s it.

So let’s see how to assign a static IP address to various operating systems.

1. Assign IP address on Windows 10/8/7

You can do this quickly through the command line. First, you will need to find the subnet mask, default gateway, and network adapter name. In my case, I am on a Wi-Fi network, so the adapter name is Wi-Fi. To find yours, just enter the following command. ipconfig

Once you get the result, find the network adapter under which the IP address is listed. The adapter name is a one-word name appended to the end of the network header. You will also need the subnet mask and default gateway address.

How to Assign Static IP Address to Your Devices

Once you have the adapter name, subnet mask and default gateway, run the following command. netsh interface ip set address name = “Wi-Fi” static 192.168.1.106 255.255.255.0 192.168.1.1

In this case, instead of Wi-Fi, you should specify the name of your adapter, IP address, subnet mask and gateway address in accordance with your configuration.

How to Assign Static IP Address to Your Devices

This will change your IP address from DHCP to manual with the static IP you provided.

If you find this overly confusing, you are not alone. You can do the same through the graphical interface, which is much more intuitive. You will need a subnet mask and a default gateway address. You can refer to the step above to find out how to find these details. After writing down the address, click “Start” and type “Network and Sharing Center”. Click when you see the Network and Sharing Center icon.

How to Assign Static IP Address to Your Devices

Alternatively, if you’re on Windows 10, you can right-click the Start menu and select Network Connections.

How to Assign Static IP Address to Your Devices

In the new window, click “Change adapter settings”.

How to Assign Static IP Address to Your Devices

Right click on your current network adapter (eg WiFi) and select Properties.

How to Assign Static IP Address to Your Devices

When a new window appears, select Internet Protocol Version 4 (TCP / IPv4) and click Properties.

How to Assign Static IP Address to Your Devices

After the pop-up window appears, select “Enter the desired IP address” and enter the IP address, for the subnet mask and the Default gateway address, enter the values ​​you wrote down earlier. Then click OK to save your changes.

How to Assign Static IP Address to Your Devices

To switch to dynamic IP, click Obtain an IP address automatically. Once this is enabled, your system will start dynamically picking an IP address from the router.

2. How to set up static IP on Ubuntu

In Ubuntu, you can set a static IP address via terminal or GUI. First, let’s start with the command line. Right click anywhere on the desktop to open a terminal.

How to Assign Static IP Address to Your Devices

Once the terminal window opens, we need to run the command. We need the subnet mask and the name of the network adapter to set a static IP address, and to get it, run the following command on the terminal. ifconfig -a

How to Assign Static IP Address to Your Devices

Having written down the subnet mask, in my case it is 255.255.255.0, we can proceed.

It’s pretty straightforward and straightforward. We need to open the network adapter settings. To do this, click the network icon in the upper right corner of your desktop.

How to Assign Static IP Address to Your Devices

Now go to the active network and click the Expand button to see more options. Click Wired Network Settings to open the Network menu.

How to Assign Static IP Address to Your Devices

After you get the Wired Network Settings dialog box, make sure you are on the Network page. Click the Options icon next to the active network to open the adapter properties.

How to Assign Static IP Address to Your Devices

When you get a popup, go to the IPv4 tab to change your IP settings.

How to Assign Static IP Address to Your Devices

On the IPv4 tab, select the radio button labeled “Manual”. Some text boxes will appear, you need to enter the IP address, netmask and gateway respectively. After confirmation, you can click the “Apply” button to register the changes.

How to Assign Static IP Address to Your Devices

You will need to restart the network again for the changes to take effect. You can do this manually via the command line, or simply turn off and on the network adapter. Then run ifconfig on a terminal to check the IP address. This should be the same IP address you entered earlier.

How to Assign Static IP Address to Your Devices

3. How to set up static IP on Mac

If you are using macOS, setting up a static IP address is very similar to setting up Ubuntu. But here you don’t need the subnet mask or the default gateway address. Right click on the apple icon in the upper left corner of the desktop. Select System Preferences from the drop-down list.

How to Assign Static IP Address to Your Devices

When the System Preferences dialog box appears, go to Network and click on it to open the Network Settings.

How to Assign Static IP Address to Your Devices

Alternatively, you can also press Cmd + Space to launch Spotlight search. Enter “Network” in the search bar and click the icon when it appears. This will take you directly to the network settings.

How to Assign Static IP Address to Your Devices

In the pop-up window, select the active network interface. For example, I am connected to a Wi-Fi network, so my active network is Wi-Fi. Make sure you are on the active network tab and then click on Advanced.

How to Assign Static IP Address to Your Devices

A new window will open the configuration options for that adapter. Go to IP settings by clicking the TCP / IP tab.

How to Assign Static IP Address to Your Devices

From the Configure IPv4 menu, select Use DHCP with manual address . Enter a static IP address in the IPv4 address and leave the default Subnet Mask and Router fields. Click OK to save your changes.

How to Assign Static IP Address to Your Devices

Now, when you run ifconfig, the system should use the static IP address that you defined earlier. If the IP hasn’t changed, try restarting the Wi-Fi and that should fix it.

To return to dynamic IP, go back to Using DHCP in the Configure IPv4 menu.

4. How to set up static IP on Android

How to Assign Static IP Address to Your Devices

You can set a static IP address on Android. But the way to do this may be different on each phone due to the manufacturer’s skin. We’ll see how to do this on the Pixel3, and the process should be the same on other phones. So go to the Settings menu and click Network & Internet. You will see Wi-Fi at the top of the menu, click on it to go to Wi-Fi settings.

How to Assign Static IP Address to Your Devices

The network you are connected to should be at the top of the list. Click the settings icon next to the Wi-Fi network name.

How to Assign Static IP Address to Your Devices

When the pop-up window opens, you will see the IP settings at the bottom of the menu. The default is “DHCP”. Click on it to change the IP configuration.

How to Assign Static IP Address to Your Devices

Select “Static” from the drop-down menu provided. Enter the desired IP address and leave the other defaults. Make sure no other devices are using the same IP address. You can see the IP addresses of other devices on your network using the little Fing utility. For more details, check out our article on how to find the IP address of any device on your network. After you have entered the IP address, click Save to register the change. Your Android phone should now start using the desired IP address.

How to Assign Static IP Address to Your Devices

In almost all versions of Android, you can set a static IP address. For some rare older versions of Android, you can use a third party app like WiFi Static. It is free and does not require ROOT.

To switch to dynamic IP again, repeat the same procedure and select “DHCP” in the IP settings instead.

5. How to set up static IP on iPhone and iPad

If you are using an iPhone or iPad, you can set a static IP address initially. You will need your network subnet mask. This can be obtained in the Wi-Fi settings, and we will take care of that in the next steps. To get started, click the Settings icon in the dock to go to the Settings menu.

How to Assign Static IP Address to Your Devices

Now on the settings menu page, tap Wi-Fi to go to Wi-Fi settings.

How to Assign Static IP Address to Your Devices

On the Wi-Fi page, you should see your connected Wi-Fi network at the top. Click on the “i” button next to it. This will open the Wi-Fi configuration window.

How to Assign Static IP Address to Your Devices

Once the Wi-Fi settings page appears, you will see the “Configure IP” option. By default, this will be installed automatically. Below this option you will see the “Subnet Mask”, write it down, as we will need it in the next steps. To set a static IP address, we need to change the “Configure IP” option to “Manual”. Click on it and the IPv4 settings page will open.

How to Assign Static IP Address to Your Devices

The Configure IPv4 page should have 3 options. Select “Manual” from it. As soon as the IP address is manually enabled, additional text fields will appear at the bottom for entering the IP address, subnet mask, router. We need to specify the IP address and subnet mask of our choice that we wrote down in the previous step. Now, when you fill in both fields, the save button in the upper right corner will become active. Click on it to save the static IP configuration.

How to Assign Static IP Address to Your Devices

Now when you return to the Wi-Fi settings page, you will see that your device is using a static IP address. This should be the same IP that we set in the IP configuration menu.

How to Assign Static IP Address to Your Devices

This static IP address will only apply to that specific Wi-Fi network. If you are connecting to any other Wi-Fi network, the IP address will change accordingly.

6. How to set up static IP for any router

Other network devices like wireless printer, PS4, NAS, IP camera, Raspberry Pi, etc. do not have an interface. Hence, to set up your network, you need to either connect remotely or use a router. If you have access to a router, setting a static IP address for network devices is the easiest and most convenient way. I would recommend this method over any other.

So, in order to assign a static IP address to any network device, you need to login to the router’s web portal. The web portal address, username and password are in most cases printed behind the router. If you don’t have physical access to your router, the web portal URL is basically the gateway address of your PC. To find this, open a command prompt and enter the following command. ipconfig | findstr “Default Gateway”

After loading the web portal, log in with your credentials. Now each router has a different web interface, but the overall structure remains the same. Basically, you will need to associate the IP address with the Mac address and hostname of the device. So, we need to find the MAC address and hostname of the network device. To do this, find a list of DHCP clients, which should look something like the following screenshot.

How to Assign Static IP Address to Your Devices

You can get your MAC address and hostname from the DHCP client list. Once you write down the MAC address and hostname, we can proceed. On most routers, you will have the option to set a static IP address under Bind IP to Mac or Static DHCP IP. If you are using a custom ROM like dd-wrt go to the Services tab and you will have a DHCP server. In the DHCP Server section, add an entry for the static lease by clicking the Add button.

How to Assign Static IP Address to Your Devices

When you click on the “Add” button, a new line will be created. You have to enter the MAC address, hostname, desired static IP and lease time. The lease time is a unit in minutes after which your IP will be renewed. Since we only add 1 entry for a specific host, the IP address will be the same even after the update. Once everything is ready, click Save Changes.

How to Assign Static IP Address to Your Devices

After successfully configuring the router, simply restart the Wi-Fi on the device. When it connects, it should start using a static IP. In case of problems, make sure you have the correct MAC address and hostname. To verify, simply run the ipconfig command or look again at the router’s DHCP clients list.

How to Assign Static IP Address to Your Devices

These changes are written to ROM, so restarting the router will not change the static IP configuration. To revert to dynamic IP, simply remove the entry from the IP lease.

What’s Next

Once you’ve started configuring the IP addresses on your router and network devices, you’re ready to set up telnet and SSH. Check out our short article How to Enable Telnet Server on Windows 10, Best SSH Clients for iOS for Managing Remote Servers, and 6 Best FTP Clients for Android. As a caveat, the static IP addresses assigned to the devices should be noted, as assigning the same IP address to two network devices would render them useless.

Also read: How To Change Your DNS Provider In Windows | Mac | Android | iOS

Share this:

  • Facebook
  • X
How-To Tags:address, Assign IP address on Windows How to set up static IP on Ubuntu, Devices, How to Assign Static IP Address to Your Devices, How to set up static IP for any router, How to set up static IP on Android, How to set up static IP on iPhone and iPad, How to set up static IP on Mac, What IP address should you choose?, Whats Next?, your

Post navigation

Previous Post: How to Find Out What DNS Server Am I Using?
Next Post: 25+ Best Safari Extensions You Should Try in 2019

Related Posts

  • How to Use Android Phone to Verify Google Sign in on iOS Using 2SV How-To
  • How to Disable Night Shift for Certain Apps on Mac How-To
  • How to Access Shared Windows Folders on iPhone 2023 How-To
  • How To Move Your Thunderbird Profile & Email To a New Windows Computer How-To
  • 4 best 4chan apps for Android and iOS 2023 How-To
  • How to Create an Amazon S3 Bucket and Folder How-To

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Archives

  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • March 2021
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • December 2019
  • July 2019
  • May 2019
  • April 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018

Categories

  • – 436
  • – 939
  • 1Win AZ Bonuslar, Mobil Tətbiq və Mərc Marketləri – 376
  • 1xBet giriş, güzgü 1 xBet Azərbaycanda rəsmi sayt – 413
  • AI Tools & Guides
  • Amazon Web Services
  • Apple Watch
  • B1 Bet Aviator: Jogo de Cassino Online Tutorial Passo a Passo 202 – 14
  • blog
  • Calculator
  • Computer Tips
  • Cool Websites
  • Dasinmaz emlak elanlari, ev elanlari, ev alqi satqisi, kiraye evler, torpaq, obyekt, bina, bina ev, mənzil, villa, kreditle satilan evler – 814
  • Featured Posts
  • Free Software Downloads
  • Gadgets
  • Gaming
  • General Software
  • Google Software/Tips
  • Hardware
  • Help Desk
  • How-To
  • iOS
  • iPad
  • iPhone
  • islamic Books
  • Linux
  • Linux Tips
  • Mac OS X
  • macOS
  • MS Office Tips
  • Networking
  • Office Tips
  • OS X
  • Product Reviews
  • Reviews
  • Safari
  • Smart Home
  • Smartphones
  • Software Reviews
  • technology
  • text
  • Tools Review
  • Troubleshooting
  • Tutorial
  • Tutorials
  • Uncategorized
  • Urdu Books PDF
  • Web Site Tips
  • Windows
  • Windows 10
  • Windows 7
  • Windows XP Tips
  • Wordpress
  • бонусы до 250%, официальный сайт в Узбекистане – 69
  • Мостбет Уз Ставки на спорт и казино в букмекерской конторе Mostbet Uz – 527
  • ベラジョンカジノの出金方法一覧【2023年 最新】出金限度額・出金の流れ・出金手数料・出金条件 – 466
  • How to get Android O Features on any Android Smartphone
  • How to Connect USB Mic to Smartphone for Video Recording
  • How to Listen to YouTube with Screen OFF (Android & iOS)
  • Youtuber Onlyfans Try Now OnlyFans Sites!
  • How to Access Your Android From Computer Using SSH [No ROOT]
DMCA.com Protection Status

Recent Posts

  • How to Share HQ Images on WhatsApp Without Any Compression
  • How to get Android O Features on any Android Smartphone
  • How to Connect USB Mic to Smartphone for Video Recording
  • How to Automatically Mute your Mac When it Wakes Up From Sleep
  • Get Android O Custom Navigation Bar on any Android Running Nougat [No Root]

Recent Comments

  1. Instagram stories not working/loading? Try These 9 Fixes on Can’t update PS5 system software? Try These 10 Fixes
  2. How to Link to a Specific Part Of A Webpage & Share it on Best PDF to Word Converter Online (Free Without Email)
  3. See What’s Taking up Space on Your Hard Drive on 7 best 3D scanning apps for Android and iOS
  4. Make your Devices Read Out Text, With Text to Speech on 9 Best 10K Running Apps for 2023
  5. How to Find your Router’s IP Address on How to Fix Apple CarPlay Not Working? 7 Possible ways
  • How to turn webcam OSD notifications on / off in Windows 10 Windows 10
  • Can’t Play MP4 Files on Your XBox 360? Computer Tips
  • How to Download Google Photos Albums on Mobile How-To
  • 15 Best Ways to Fix iPad Keyboard Not Working iPad
  • Best scientific calculator casio 2020

    Best scientific calculator casio 2020. 1 - Casio #FX-82MS 2-Line Display Scientific Calculator Top Reviews Pretty good

  • HDG Explains : What Is Miracast? Networking
  • How To Enable & Use ‘Picture In Picture’ Mode On Your Mac OS X
  • How to Create a Wix Blog That Matches WordPress Wordpress

Copyright © 2023 How To Blog.

Powered by PressBook News WordPress theme

Go to mobile version