Learn Python, Microsoft 365 and Google Workspace
To find your public IP address, you can use several methods. Here are a few tasks you can perform to achieve that:
Run the following command:
nslookup myip.opendns.com resolver1.opendns.com
This will show your public IP address by querying OpenDNS.
The command nslookup myip.opendns.com resolver1.opendns.com
is used to find your public IP address by querying the OpenDNS servers. Here’s a breakdown of how to use it and what to expect:
Win + R
, type cmd
, and hit Enter
.Type the following command and press Enter
:
nslookup myip.opendns.com resolver1.opendns.com
You should see output similar to this:
Server: resolver1.opendns.com
Address: 208.67.222.222
Non-authoritative answer:
Name: myip.opendns.com
Address: <Your Public IP Address>
<Your Public IP Address>
will be replaced by your actual public IP address.nslookup
: This command queries the Domain Name System (DNS) to obtain domain name or IP address mapping.myip.opendns.com
: This is a special domain provided by OpenDNS that returns the public IP address of the client making the request.resolver1.opendns.com
: This specifies the DNS server to use for the query, in this case, one of OpenDNS’s resolvers.This command is a quick and efficient way to retrieve your public IP address from the command line.
Run the following command:
(Invoke-WebRequest -Uri "http://ifconfig.me/ip").Content.Trim()
This will make a web request and display your public IP address.
find_public_ip.py
).Use the following code:
import requests
response = requests.get("https://api.ipify.org")
if response.status_code == 200:
print("Your public IP address is:", response.text)
else:
print("Unable to fetch public IP address.")