公司

关于芯原
管理团队
新闻发布
公司动态
市场活动
合作伙伴
加入我们
商标
联系我们

投资者关系

董事成员
主要投资者
股票信息
投资者联系
可持续发展报告
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.

搜索

联系我们

语言

简体中文

English

日本語

芯原股份 (688521.SH)
感谢您的订阅
感谢您通过邮件.订阅芯原的最新消息。在您等待我们网站的下次更新时,我们邀请您通过以下资源来了解芯原的更多信息。
芯片定制解决方案
Vivante图形处理器IP
Vivante神经网络处理器IP
ZSP数字信号处理器IP
Hantro视频处理器IP
关于芯原
关闭
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.