Arp: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „ Category:Networking“)
 
mNo edit summary
Line 2: Line 2:


[[Category:Networking]]
[[Category:Networking]]
== Windows ==
<syntaxhighlight lang="batch">
arp -a      # display arp table
arp -d      # clear arp cache
</syntaxhighlight>
== Linux ==
<syntaxhighlight lang="bash">
arp                        # display arp table
arp -n                      # display arp table without resolving
ip -s -s neigh flush all    # flush arp cache
arp -d 192.168.1.1          # flush single entry
</syntaxhighlight>

Revision as of 17:11, 9 April 2022


Windows

arp -a      # display arp table
arp -d      # clear arp cache

Linux

arp                         # display arp table
arp -n                      # display arp table without resolving


ip -s -s neigh flush all    # flush arp cache
arp -d 192.168.1.1          # flush single entry