mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-07 13:55:41 +02:00

* Update ipconfig.md zh pages is outdated so I translate it from its en pages. * Update !.md it is outdated so i translate the changes from en pages * Update pages.zh/common/!.md Co-authored-by: Jack Lin <blueskyson1401@gmail.com> --------- Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
28 lines
553 B
Markdown
28 lines
553 B
Markdown
# ipconfig
|
|
|
|
> 显示和管理 Windows 的网络配置。
|
|
> 更多信息:<https://learn.microsoft.com/windows-server/administration/windows-commands/ipconfig>.
|
|
|
|
- 显示网络适配器列表:
|
|
|
|
`ipconfig`
|
|
|
|
- 显示网络适配器的详细列表:
|
|
|
|
`ipconfig /all`
|
|
|
|
- 为一个网络适配器重新获取 IP 地址:
|
|
|
|
`ipconfig /renew {{适配器}}`
|
|
|
|
- 为一个网络适配器释放 IP 地址:
|
|
|
|
`ipconfig /release {{适配器}}`
|
|
|
|
- 显示所有本地 DNS 缓存:
|
|
|
|
`ipconfig /displaydns`
|
|
|
|
- 清除所有本地 DNS 缓存:
|
|
|
|
`ipconfig /flushdns`
|