arp questions


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users arp questions
# 1  
Old 09-06-2011
arp questions

Can someone please explain this output to me. Why doesn't ifconfig show the same info?

Code:
~ $ arp -a
? (10.71.0.1) at 00:1b:21:2b:eb:0c [ether] on eth0

# 2  
Old 09-06-2011
It is showing you the contents of the ARP cache, which consists of MAC addresses of the hosts in your network. In this case it shows MAC address of the host having IP address 10.71.0.1.
This User Gave Thanks to bartus11 For This Post:
# 3  
Old 09-06-2011
Quote:
Originally Posted by COKEDUDE
Can someone please explain this output to me. Why doesn't ifconfig show the same info?

Code:
~ $ arp -a
? (10.71.0.1) at 00:1b:21:2b:eb:0c [ether] on eth0
^      ^                ^             ^        ^ Interface where this MAC was
|      |                |             |          seen
|      |                |             \ Hardware Type (ether == Ethernet)
|      |                \ MAC address of the remote host
|      \ IP address of the remote host
\ Host name of the remote host, if resolvable, ? otherwise

If you just use arp you'll get (at least on Linux) an output with fixed columns and headers.
This User Gave Thanks to pludi For This Post:
# 4  
Old 09-06-2011
Quote:
Originally Posted by COKEDUDE
Can someone please explain this output to me. Why doesn't ifconfig show the same info?
ifconfig just shows you information on your own network card. (which does have one bit of arp-related information -- the hwaddr). Entries in your ARP table are from other network cards -- other computers on the same subnet.

This is because to communicate with these addresses, it needs their MAC addresses, and must ask for them. On a local network, i.e. things on the same subnet as you, IP doesn't need to bother routing -- it can transmit directly to the destination network card and expect to be heard. But to talk to a card and not an IP, it needs the MAC address. If you're talking to something not on the local subnet, it doesn't care about the destination's MAC address, it just sends it to the appropriate gateway, which forwards it along. (You'd need the gateway's mac address, though!)

ARP is how it finds out MAC addresses. It works without IP or routing or any addressing at all -- it broadcasts requests and replies across an entire subnet. "arp who-has 10.71.0.1" would get answered with "arp reply 00:1b:21:2b:eb:0c has 10.71.0.1", so your computer would know to send packets for 10.71.0.1 directly to 00:1b:21:2b:eb:0c. It does all this without the programmer having to intervene at all, as far as IP can tell it's just 10.71.0.1 talking to 10.71.0.2 or whatever.

Since this bypasses all routing, I've seen hardwired ARP addresses abused to allow one IP address to talk across multiple subnets on the same wire, though I'm not convinced this would work everywhere.

Last edited by Corona688; 09-06-2011 at 03:27 PM..
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 09-06-2011
Thx everyone for the great responses Smilie.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

[RedHat] ARP issue

Hello, I am setting up a new RedHat server with two network interfaces. These interfaces are on different subnets, and connected to the same firewall. I'm trying to reach a remote IP. It works fine from the first interface. The second interface however, is making ARP requests instead of... (0 Replies)
Discussion started by: Wanou85
0 Replies

2. War Stories

What arp -s is good for

A customer appears to have drastically misunderstood our instructions for connecting to our WAN. He set his PC IP address to the same as one of the bridges. :mad: :wall: This caused much confusion on the network, to put it mildly. He called to complain about the poor performance of the network... (13 Replies)
Discussion started by: Corona688
13 Replies

3. IP Networking

necessary ARP request?

Hello, I have 2 clients with Unix installed. host1: eth0 (192.168.5.10) & eth1 (192.168.10.10) host2: eth0 (192.168.10.20) I've connected host1-eth1 to host2-eth0. host1-eth0 isn't connected. I started 'tcpdump' on wonder that host2 got ARP requests for 192.168.5.10. Any idea why host1... (2 Replies)
Discussion started by: daWonderer
2 Replies

4. IP Networking

Stuck ARP entries

About a week ago a customer hooked up a wireless router backwards to our network, causing it to serve incorrect DHCP addresses to some of them. Our networks are mostly statically assigned so this didn't cause as much damage as it might have, but now, over a week later, I still have incomplete... (1 Reply)
Discussion started by: Corona688
1 Replies

5. Red Hat

Arp Problem

Dear All i have a linux proxy server which has RHEL-5 64 bit, it has two interfaces, it has the following details eth0=10.200.14.42 eth3=10.201.14.42 default gateway=10.201.14.254 one static route=192.168.0.0/24 gw 10.200.14.254 i am facing a problem when i ping 10.201.14.42 from... (2 Replies)
Discussion started by: surfer24
2 Replies

6. IP Networking

arp output (flags)

I'm running an arp -an on a Solaris 10 box. We're using IPMP. One of the systems is not able to see a host on the same network. The only difference between the two systems (one is having a problem, the other isn't) at least so far is the output of arp: # arp -an | grep 224.55 e1000g5... (1 Reply)
Discussion started by: BOFH
1 Replies

7. IP Networking

Modifying ARP frames

Hi All, Is there any way to modify or filter the ARP frames?? thanks! (2 Replies)
Discussion started by: lagigliaivan
2 Replies

8. HP-UX

HW Address and arp

I was checking nettl output for a unstable telnet to my server. this is part of output: ### ***********************************STREAMS/UX*******************************@#% Timestamp : Sun Jun 22 EETDST 2008 22:14:47.492899 Process ID : Subsystem ... (4 Replies)
Discussion started by: xramm
4 Replies

9. IP Networking

ARP Req Pkt

Does ARP Request packet Contains MAC Address of dest during broadcast? I found It So... When i captured ARP Req Pkts on ethereal... Rgds -Meti (1 Reply)
Discussion started by: ashokmeti
1 Replies

10. Solaris

ARP Cache

Dear all, We are testing two of our servers for mq series connectivity. The scenario is, when one machine is shutting down it's services there are some scripts that do a dns update, which removes the ip address and relates it to the ip address of the other node on our dns server, and the update... (7 Replies)
Discussion started by: earlysame55
7 Replies
Login or Register to Ask a Question