add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# netsh 接口端口代理
> 配置和显示各种网络组件的状态。
> 更多信息:<https://learn.microsoft.com/windows-server/networking/technologies/netsh/netsh-interface-portproxy>。
- 显示当前的端口转发设置:
`netsh interface portproxy show all`
- 设置 IPv4 端口转发(在提升的控制台中运行):
`netsh interface portproxy add v4tov4 listenaddress={{192.168.0.1}} listenport={{8080}} connectaddress={{10.0.0.1}} connectport={{80}}`
- 移除 IPv4 端口转发(在提升的控制台中运行):
`netsh interface portproxy delete v4tov4 listenaddress={{192.168.0.1}} listenport={{8080}}`
- 显示帮助信息:
`netsh interface portproxy`