Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

whats the purpose of local IP addresses if there are mac addresses? ARP maps mac addresses to IP addresses but I don't see why it's needed, because I thought data on LANs are sent as frames which only care about the mac addresses.

share|improve this question

closed as off topic by Flexo, talonmies, Mike Pennington, Dharmendra, bipen Jan 12 at 19:21

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 0 down vote accepted

And what happens if you want to talk to a macine that isn't on your local area network (such as StackOverflow).

IP allows routing of packets anywhere, not just locally in your current network segment and, though it's mostly over Ethernet now, IP can equally well work over other underlying layers, giving a consistent view to the upper layers. This is vital given how much stuff is actually built on IP (DNS, FTP, SSH, HTTP and so on).

Machines almost certainly will cache IP-to-ethernet details to speed up subsequent transfers so the impact of translation on the LAN isn't so bad.

share|improve this answer
I asked about LAN IP addresses not IP addresses in general. – Dan Webster Jan 12 at 11:50
@Dan, you'll probably find that there's no real advantage since ARP details will be cached so you may as well use IP for everything rather than trying to figure out what's local and what's not. Especially if your local LAN IP addresses may change (DHCP and so on) - ARP allows for automated discovery whereas if you used hardcoded MAC addresses, you'd have to change them. – paxdiablo Jan 12 at 11:53
@ paxdiablo so the only purpose of lan IP addresses to is to make it easier for applications to transition from communicating over Lan to WAN or vice versa easier? I don't understand what you mean by using hardcoded mac addresses, these don't change so why would it be more difficult to use them? – Dan Webster Jan 12 at 11:56
MAC addresses can change though it's rare. I've seen cards that have that capability. But that's beside the point. If you only want to communicate in a LAN, you could use ethernet only, but you'd have to provide your own comms stack. Ethernet is machine level addressing like IP, so you won't get port-level addressing like with TCP. – paxdiablo Jan 12 at 12:29
1  
In addition, all that other stuff like dns, dhcp, arp, ftp, and so on, is built on top of tcp/ip. – paxdiablo Jan 12 at 12:32
show 3 more comments

Long ago and far away, there was more to the world than Ethernet LANs, and application writers didn't care whether your PC was attached to an Ethernet, a Token Ring, an XNS net, or dial-up. IP provides a layer of abstraction and coherence across the top of all those and many more, allowing application authors to ignore the differences between them.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.