1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00

arp: add pt_BR translation (#3419)

This commit is contained in:
FilipaDurao 2019-10-17 13:47:59 +01:00 committed by Starbeamrainbowlabs
parent d290603c44
commit 854ed025b0

19
pages.pt_BR/common/arp.md Normal file
View file

@ -0,0 +1,19 @@
# 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}}`