1. 程式人生 > >Linux 查看IP

Linux 查看IP

bubuko owas url ctrl 網絡工具 address 輸入 安裝 pps

UBuntu 系統下 按Ctrl+Alt+T 喚出終端

在終端輸入: ifconfig 命令

點擊回車 就可以看到自己電腦在局域網的IP地址了

技術分享圖片

圖中第二行 inet 地址:192.168.1.101 就是你的電腦在局域網的IP地址了

如果輸入 ifconfig 提示 找不到命令

那就在終端輸入:sudo apt-get install net-tools 安裝網絡工具

安裝完成後輸入: sudo apt-get update 更新軟件包

完成之後 再次輸入 ifconfig 命令 就不會出現錯誤了

用Linux命令行獲取本機外網IP地址

  

$ curl ifconfig.me

[root@localhost ~]# curl ifconfig.me

14.23.92.186


$ curl icanhazip.com

[root@localhost ~]# curl icanhazip.com

14.23.92.186


$ curl ident.me

[root@localhost ~]# curl ident.me

14.23.92.186


$ curl ipecho.net/plain

[root@localhost ~]# curl ipecho.net/plain

14.23.92.186


$ curl whatismyip.akamai.com

[root@localhost ~]# curl whatismyip.akamai.com

14.23.92.186


$ curl tnx.nl/ip

[root@localhost ~]# curl tnx.nl/ip

14.23.92.186


$ curl myip.dnsomatic.com

[root@localhost ~]# curl myip.dnsomatic.com

14.23.92.186


$ curl ip.appspot.com

[root@localhost ~]# curl ip.appspot.com

curl: (7) couldn‘t connect to host


$ curl -s checkip.dyndns.org | sed ‘s/.*IP Address: [0−9\.]∗[0−9\.]∗.*/\1/g‘

[root@localhost ~]# curl -s checkip.dyndns.org | sed ‘s/.*IP Address: [0−9\.]∗[0−9\.]∗.*/\1/g‘

14.23.92.186

Linux 查看IP