当前位置:首页 » 云服务器 » 服务器如何查看IP

服务器如何查看IP

发布时间: 2022-01-08 18:14:41

❶ 怎么查看linux服务器的ip地址

我们可以通过如下方法获取linux系统服务器的公网IP出口。可以根据自己不同需求方式进行调用。

下面小编收集一些方法:
curl 纯文本格式输出:
curl http://icanhazip.com
curl http://ifconfig.me
curl http://curlmyip.com
curl http://ip.appspot.com
curl http://ipinfo.io/ip
curl http://ipecho.net/plain
curl http://www.trackip.net/i
curl XML格式输出:
curl http://ifconfig.me/all.xml
curl JSON格式输出:
curl http://ipinfo.io/json
curl http://ifconfig.me/all.json
curl http://www.trackip.net/ip?json
curl 得到所有IP细节 (挖掘机):
curl http://ifconfig.me/all
使用 DYDNS (当你使用 DYDNS 服务时有用)
curl -s 'http://checkip.dyndns.org' | sed 's/.*Current IP Address: ([0-9.]*).*/1/g'
curl -shttp://checkip.dyndns.org/ | grep -o;"[[:digit:].]+"
使用 Wget 代替 Curl
wgethttp://ipecho.net/plain -O - -q ; echo
wgethttp://observebox.com/ip -O - -q ; echo
使用 host 和 dig 命令
host -t a http://dartsclink.com | sed 's/.*has address //'
dig +short http://myip.opendns.com @resolver1.opendns.com<pr》
bash 脚本示例:
#!/bin/bash
PUBLIC_IP=`wgethttp://ipecho.net/plain -O - -q ; echo`
echo $PUBLIC_IP
这里获取到公网IP以后,自己还上传到了一个线上服务器,毕竟公司这里申请的是公网IP,每隔几天都要更换一下。家里或其他地方如果要连接公司内部的虚拟机或管理路由器,就要获取准确公网IP才可以。
这里就简单写了一个脚本定期执行,获取到公网IP以后上传到一台线上的服务器,这样每次可以直接通过登录服务器获取到公司的公网出口IP了,公司内部测试机器linux上部署的脚本如下:
#!/bin/bash
curl http://ipinfo.io/ip > public_ip.txt
rsync -avz /home/yunwei/public_ip.txt 1.2.3.4:/home/yunwei/
以后每次到线上1.2.3.4的服务器cat /home/yunwei/public_ip.txt 就知道公司IP了。

❷ 如何查看本机的服务器IP和端口

方法步骤如下:

1、首先打开计算机,在计算机内打开运行界面,在运行界面的输入框内输入cmd。

热点内容
python的类方法 发布:2024-12-26 12:31:12 浏览:359
编译器c语言输入不了中文 发布:2024-12-26 12:21:05 浏览:42
配电脑用什么配置 发布:2024-12-26 12:21:05 浏览:285
不知密码如何删除短信 发布:2024-12-26 12:05:46 浏览:892
普通民众怎么存储汽油 发布:2024-12-26 12:05:36 浏览:628
安卓手机已安装的软件如何备份 发布:2024-12-26 12:04:59 浏览:421
好玩儿的我的世界服务器电脑 发布:2024-12-26 12:04:58 浏览:112
C表格源码 发布:2024-12-26 11:56:18 浏览:680
emobile服务器地址查询 发布:2024-12-26 11:56:17 浏览:240
aspnet数据库路径 发布:2024-12-26 11:47:35 浏览:973