1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 19:44:56 +02:00
tldr/pages.pt_BR/common/arp.md
2019-10-17 13:47:59 +01:00

261 B

arp

Mostrar e manipular a cache ARP do sistema.

  • 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}}