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 @@
# dumpcap
> 一个网络流量捕获工具。
> 更多信息:<https://www.wireshark.org/docs/man-pages/dumpcap.html>。
- 显示可用的接口:
`dumpcap --list-interfaces`
- 在特定接口上捕获数据包:
`dumpcap --interface {{1}}`
- 将数据包捕获到特定位置:
`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}}`
- 以特定的最大文件限制和特定大小写写入环形缓冲区:
`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}} --ring-buffer filesize:{{500000}} --ring-buffer files:{{10}}`