Arp: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „ Category:Networking“)
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== 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>




[[Category:Networking]]
[[Category:Networking]]

Latest revision as of 19:57, 2 December 2023

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