linux中ifconfig查看不到ens33ip
时间: 2023-11-25 16:04:51 浏览: 212
Linux之网络管理----IP地址(动态变静态).docx
如果在Linux中使用ifconfig命令无法看到ens33网卡的IP地址,可能是因为该网卡没有启动或者没有配置IP地址。可以使用以下命令来检查ens33网卡是否启动:
```
ifconfig -a
```
如果ens33网卡没有启动,可以使用以下命令来启动:
```
ifconfig ens33 up
```
如果ens33网卡已经启动,但是没有配置IP地址,可以使用以下命令来配置IP地址:
```
ifconfig ens33 <IP地址> netmask <子网掩码>
```
例如,配置IP地址为192.168.1.100,子网掩码为255.255.255.0,可以执行以下命令:
```
ifconfig ens33 192.168.1.100 netmask 255.255.255.0
```
完成配置后,再次使用ifconfig命令即可看到ens33网卡的IP地址。
阅读全文