centos 7查看ip地址的命令
时间: 2023-12-10 19:30:20 浏览: 132
查看IP地址.cmd
5星 · 资源好评率100%
在CentOS 7中,可以使用以下命令查看IP地址:
1. 使用ifconfig命令:
```bash
ifconfig
```
2. 使用ip命令:
```bash
ip addr show
```
3. 使用hostname命令:
```bash
hostname -I
```
4. 使用nmcli命令:
```bash
nmcli connection show
```
阅读全文