How do I find my IP

Network-Ip-Address-iconHow do you find your ip? This is actually a two part question. First do you want your global ip or your local ip?

A global ip is the ip you use on the internet. This ip is provided to you by your internet service provider (ISP). The easiest way for you to find your global ip is to visit http://www.whatsmyip.org.

A local ip is the ip on your local (or private) network. The ip your local wifi router (or any other local router) with a DHCP server. DHCP meaning Dynamic Host Configuration Protocol. All private or local networks should have ip addresses in these ranges:
10.0.0.0 – 10.255.255.255
172.16.0.0 – 172.31.255.255
192.168.0.0 – 192.168.255.255

But how do I find my local ip?
This depends on what kind of operating system you are using.
On a windows machine, open command line (press the windows key, and type cmd + ) and type in ipconfig + . You should see something like this. IPv4 Address is your local ip.
local-ip-windows

 

 

 

On a Linux machine open terminal and type ifconfig (you need to be root or using sudo). And you should see something like this. Where is says inet addr is your local ip.
linux-local-ip

 

 

On a unix or a Mac (OS X), open terminal and type netstat -in
And you should see something like this. Here is your local ip.
unix-local-ip

 

Happy iping!

About Author

Related Posts

php8 gd

PHP8 gd Activate after installation

PHP8 GD activate after installation. GD doesn’t get activated by default. Not even a reboot after installation will activate it. So how do we do it? In…

Debian 12: linux-image-6.1.0-10amd64

Troubleshooting dependency issues in Debian 12: Resolving linux-image-6.1.0-10amd64 package dependency problems. If you installed the Debian 12 from the live image the issue is the raspi-firmware. Even…

4 Best Free Nas Software That Is Open Source

Free NAS software or operating systems that are free to use and will turn a computer into a NAS more advanced than the dedicated boxes sold. What…

Raspbian default password

Raspbian default password

Looking for the Raspbian default password? It is the most essential username and password that you will need for your raspberry. At least if you are running…

OpenMediaVault default password

OpenMediaVault default password

OpenMediaVault default password is printed in the documentation. I did not see it the first time I installed it either. So I had to do some detective…

Debian change dns

Debian change DNS settings to a new DNS

Debian change DNS settings for speed improvement or privacy. It is really easy to do. So let us see how it’s done and get to it. The…

Leave a Reply