Arp: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
== Windows == | == Windows == | ||
<syntaxhighlight lang="batch"> | <syntaxhighlight lang="batch"> | ||
Line 18: | Line 14: | ||
arp -d 192.168.1.1 # flush single entry | arp -d 192.168.1.1 # flush single entry | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[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