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

21 lines
309 B
Markdown
Raw Normal View History

2019-10-17 13:47:59 +01:00
# arp
> Mostrar e manipular a cache ARP do sistema.
> Mais informações: <https://manned.org/arp>.
2019-10-17 13:47:59 +01:00
- Mostrar a tabela arp atual:
`arp -a`
- Limpar toda a cache:
`sudo arp -a -d`
- Eliminar uma entrada específica:
`arp -d {{endereço}}`
- Criar uma entrada:
`arp -s {{endereço}} {{endereço_mac}}`