知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux获取外网ip

发布时间:2014-09-05 15:11:44作者:知识屋

Linux获取外网ip
 
方法一:curl -s "http://checkip.dyndns.org/"|cut -f 6 -d" "|cut -f 1 -d"<"    www.zhishiwu.com       
方法二:w3m -dump http://submit.apnic.net/templates/yourip.html | grep -P -o '(/d+/.){3}/d+' 
方法三:curl ifconfig.me          
 
方法四:curl icanhazip.com 
方法五:curl -s www.123cha.com | grep -o "[0-9]/{1,3/}/.[0-9]/{1,3/}/.[0-9]/{1,3/}/.[0-9]/{1,3/}" | head -n 1
 
把它们添加到 .bashrc (Bash 专用) 或者 .profile (非 Bash 专用)里面去
 
alias myip='curl ifconfig.me'
 
source .bashrc 或者 . .profile 即可生效
 
输入 myip 就能拿到 WAN IP。
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜