COMPANY

About VeriSilicon
Executive Team
Press Release
In the News
Events
Partners
Careers
Trademark
Contact Us

INVESTOR RELATIONS

Board of Directors
Major Investors
Stock Information
IR Contacts
Home Request SFTP/GitLab Access Request
SFTP/GitLab Access Request
Requestor Details
Name *
Company Name *
Email *
Code *
Captcha
Verification Key *
Region / Partner *
Access to *
Public IP Address *

Accepts single public IPv4. Click '+' to add more IPs.

Search

Contact

Language

简体中文

English

日本語

芯原股份 (688521.SH)
Thank You for Subscribing
Thank you for subscripting to receive the latest news of VeriSilicon via email .
While you await our next issue, we invite you to learn more about VeriSilicon through the resources below.
CUSTOMSILICONSOLUTIONS
Embedded Vivante GPU, Vision, and IoT cores
Embedded Vivante Dedicated Vision IP
ZSP Digital Signal Processors
Hantro Video Encoder and Decoder IP
Company Information
Close
Sending...
Close
Error encountered while processing your request. Please submit your request at a later time.If this error persists, please contact system administrator.
Close
Network Access Support
 

How to Find Your Public IP Address

 

What is a Public IP and How to Check It via a Web Browser?


About Public IP Address:


A public IP (Public IP Address) is the unique address that identifies your computer or server on the internet. It is assigned by your Internet Service Provider (ISP). Unlike private IP addresses (e.g., 192.168.x.x, 10.x.x.x) used inside a local network, the public IP can be reached from anywhere globally.

Checking via Web Browser (works on all operating systems):


This is the quickest and easiest method. Open any web browser and visit one of the following public IP lookup sites. The page will display your current public IP address directly, usually in a prominent position.

• ip.sb (simple and fast, recommended)
• whatismyip.com
• ipinfo.io
• ifconfig.me

Important: Make sure you are connecting directly with your device’s own network (not through a VPN or proxy). Otherwise, the site will show the VPN/proxy server’s public IP instead of your real public IP.


How to Find Your Public IP Address Using the Command Line?


You can also use command-line tools to query the public IP. This is especially useful for servers without a graphical interface. Run the appropriate command in a terminal or command prompt according to your operating system. The returned IP address is the current public IP of your network.

Windows (Command Prompt or PowerShell):
Method 1 (using nslookup, built-in):
nslookup myip.opendns.com resolver1.opendns.com
Method 2 (using curl, built-in on Windows 10 and later):
curl ifconfig.me
Method 3 (PowerShell):
(Invoke-WebRequest ifconfig.me).Content.Trim()

Linux / macOS (Terminal):
Method 1 (using curl):
curl ifconfig.me
Method 2 (using wget):
wget -qO- ifconfig.co
Method 3 (using dig):
dig +short myip.opendns.com @resolver1.opendns.com

Example (Windows nslookup command output):
C:\> nslookup myip.opendns.com resolver1.opendns.com
Server: resolver1.opendns.com
Address: 208.67.222.222

Non-authoritative answer:
Name: myip.opendns.com
Address: 203.0.113.1

In the example above, the line "Address: 203.0.113.1" shows the public IP address of the current network. Please record this address for further configuration or application.