centos 获取公网ip
时间: 2024-07-07 10:00:51 浏览: 266
AliDDNS-阿里云自动解析脚本(含ipv6公网IP自动解析).zip
5星 · 资源好评率100%
在 CentOS 中获取公网 IP,你可以使用以下几种方法:
1. **命令行工具**:
使用 `ifconfig` 或者 `ip` 命令来查看网卡信息:
```sh
ifconfig eth0 | grep 'inet addr'
ip addr show eth0 | grep 'inet'
```
这里 `eth0` 可能会根据你的网络配置不同,换成实际的网卡名。
2. **`dig` 或 `nslookup`**:
运行 `dig myip.opendns.com @resolver1.opendns.com` 或 `nslookup myip.opendns.com`,结果中会有你的公网 IP。
3. **`curl` 服务端查询**:
```sh
curl -s https://api.ipify.org
```
这个服务会返回你的公网 IP 地址。
4. **`wget`**:
```sh
wget -qO- https://icanhazip.com
```
5. **Linux系统内置脚本**:
有些系统提供了 `hostname -I` 命令,同样可以获取到 IP 地址。
如果想永久设置或显示在终端的 hostname 上,可以在 `/etc/hosts` 文件添加自己的 IP 地址,并在 `/etc/sysconfig/network-scripts/ifcfg-eth0`(或其他网卡配置文件)中设置 `DNS` 或 `GATEWAY` 为公网 IP。
阅读全文