查看Windows的IP地址命令
时间: 2024-11-15 12:22:30 浏览: 12
在 Windows 操作系统中,查看 IP 地址通常使用 `ipconfig` 命令(注意这仅适用于早期版本的 Windows)。如果你正在使用 Windows 10 或更新版本,`ipconfig` 可能已经被 `netsh` 或 `Get-NetAdapter` 所取代,它们提供了更详细的网络设置信息。
以下是几种查看 IP 地址的方式:
1. **使用 `cmd` (命令提示符)**:
- 对于所有网络适配器的 IP 地址:
```
ipconfig /all
```
- 如果只想查看某个特定接口(例如 Ethernet)的 IP 地址:
```
ipconfig Ethernet
```
2. **使用 `PowerShell`**:
- 获取所有适配器的 IP 地址:
```
Get-NetAdapter | Select-Object Name, IPv4Address
```
- 获取指定接口的 IP 地址:
```
(Get-NetAdapter Ethernet).IPv4Address.IPAddressToString
```
3. **使用 `netsh`** (较旧版本):
- 查看所有适配器的 IP 地址:
```
netsh interface ip show addresses
```
- 同样可以针对特定接口查询。
阅读全文