1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/common/arp.md

17 lines
238 B
Markdown
Raw Normal View History

2019-02-25 19:14:15 +08:00
# arp
> 显示和操作系统的 ARP 缓存。
> 更多信息:<https://manned.org/arp>.
2019-02-25 19:14:15 +08:00
- 显示当前的 ARP 表:
2019-02-25 19:14:15 +08:00
`arp -a`
- 删除特定条目:
2019-02-25 19:14:15 +08:00
2019-02-25 22:52:30 +08:00
`arp -d {{地址}}`
2019-02-25 19:14:15 +08:00
- 创建指定条目:
2019-02-25 19:14:15 +08:00
2019-10-18 10:33:27 +08:00
`arp -s {{地址}} {{MAC 地址}}`