Questions tagged [arp]

Address Resolution Protocol is a layer 2 networking protocol used for resolving layer 3 addresses (such as IP addresses) into layer 2 addresses (such as Ethernet MACs). It is used by network devices when communicating with devices on the same layer 2 network.

421 questions
10
votes
2 answers

Neighbour table overflow on Linux hosts related to bridging and ipv6

Note: I already have a workaround for this problem (as described below) so this is only a "want-to-know" question. I have a productive setup with around 50 hosts including blades running xen 4 and equallogics providing iscsi. All xen dom0s are…
tim
  • 1,217
  • 3
  • 11
  • 23
10
votes
4 answers

How to find the process which causes the arp request?

When i run tcpdump in the gateway, i get a lot of arp requests originating from the gateway itself. I wonder know why this happens. How can i find the process that causes these arp requests? $ tcpdump -n arp tcpdump: verbose output suppressed, use…
Ping Yin
  • 101
  • 1
  • 1
  • 5
9
votes
1 answer

Why does Linux answer to ARP on incorrect interfaces?

I have the following Linux networking setup: there is an eth10 network interface with the assigned address 10.11.0.1/24. Then there is a tap0 network interface with assigned dummy address 0.0.0.1/32 (I assigned a dummy address to bring the interface…
juhist
  • 302
  • 1
  • 3
  • 10
9
votes
4 answers

When do STALE arp entries become FAILED when never used?

root@openwrt:~# ip -s -s -4 neigh show dev lan 10.64.42.121 lladdr b8:20:00:00:00:00 used 6387/6341/6313 probes 1 STALE 10.64.42.157 lladdr b8:20:00:00:00:00 used 24/813/19 probes 1 STALE 10.64.42.12 used 29066/30229/29063 probes 6…
Fox
  • 992
  • 2
  • 14
  • 23
9
votes
2 answers

Dynamic ARP Entries turning into Static ARP entries

I recently acquired a client that has a strange ARP caching issue on one of thier servers. I have a server that will eventually start turning it's dynamic ARP entries into static ARP entries. This causes problems because when the machine that has a…
Zach
  • 126
  • 4
9
votes
4 answers

Network throughput issue (ARP-related)

The small college where I work is having some very strange network issues. I'm looking for any advice or ideas here. We were fine over the summer, but the trouble began few days after students returned to campus in force for the fall term.…
Joel Coel
  • 12,932
  • 14
  • 62
  • 100
9
votes
2 answers

ARP reply vanishes from br0 to tap0 using OpenVPN in bridging mode

I have setup a linux box (on an esxi5) which acts as an OpenVPN server. the server is configured to use bridging for the clients, which essentially works, with one exception. If the client pings some machine on the network which is not the server…
fen
  • 415
  • 4
  • 8
9
votes
2 answers

linux routing bug?

I have been struggling with this not easily reproducible issue since a while. I am using linux kernel v3.1.0, and sometimes routing to a few IP addresses does not work. What seems to happen is that instead of sending the packet to the gateway, the…
Balázs Pozsár
  • 2,133
  • 1
  • 14
  • 16
9
votes
2 answers

Why my laptop sends ARP request to itself?

I have just started to learn about protocols. While studying the packets in wireshark, I came across a ARP request sent by my machine to my own IP. Here is the details of the packet : No. Time Source Destination …
user58859
  • 518
  • 3
  • 8
  • 17
8
votes
2 answers

ARP/Mac address table

What is the difference between a mac address table and an arp table? Is it correct to say only one arp cache is kept for each switch which self learns to forward information to another host, and every host on the network has its own mac table, which…
user171131
  • 145
  • 2
  • 4
  • 7
8
votes
2 answers

Is it possible to use proxy-arp back to the same interface?

I have a WiFi Access Point connected to a Linux Router. The Router is itself connected to the Internet. For multiple reasons (mostly to control security and quality of service), I want to force all the users' traffic to go through the Linux…
MiniQuark
  • 3,875
  • 2
  • 21
  • 23
8
votes
6 answers

Is it possible to match an internal IP address to a switch port?

I'm trying to find a computer that has a certain IP address on our internal network. I have identified the computer name from DNS, but in this case it does not help me. Just wondering if I can somehow tie the IP to a switch port, and track it from…
Brent
  • 22,857
  • 19
  • 70
  • 102
7
votes
2 answers

How to query the age of an ARP-cache entry in Linux

How can I query the local ARP-cache on my Linux-machine to see when a specific ARP-entry was learned and/or updated the last time?
nitram
  • 73
  • 1
  • 7
7
votes
1 answer

Cannot ping B from A until B pings A

I have a server cluster all connected on a local network(all physical machines, not virtual). When trying to ping from Server A to B, I get a Desitination Host Unreachable. I can ping from B to A no problem, which then allows me to ping from A to…
Eumcoz
  • 217
  • 3
  • 8
7
votes
1 answer

How do I poll the ARP table with an SNMP OID?

When you need to poll the ARP table of a device, conventional wisdom is to use ipNetToMediaPhysAddress or atPhysAddress; however, both of these OIDs are deprecated according to Cisco's documentation. These OIDs work just fine; however, I'm building…
Mike Pennington
  • 8,305
  • 9
  • 44
  • 87
1
2
3
28 29