I wonder it it is tied to my NIC at all or if the OS or driver intercepts and immediately returns data sent to the loopback address?

Do the electrons actually travel to my NIC then the NIC returns them?

link|improve this question

3  
More trivia the entire 127 /8 is dedicated to loop back – Jacob Feb 11 '11 at 11:33
2  
It would be interesting to see some real-world throughput and/or latency figures for the loopback if anyone has them. – aix Feb 11 '11 at 12:25
Even if the electrons travel there, the NIC probably wouldn't return the same electrons :) – Halil Özgür Oct 6 '11 at 20:31
:) yeah i should say signal.. – Mrk Mnl Nov 25 '11 at 0:49
feedback

5 Answers

up vote 12 down vote accepted

You don't mention a particular OS but for most all that happens is that the data travels down the stack until it gets to IP at which point it's pretty much sent back. That's a massive oversimplification but means that the entire process is usually CPU bound so its performance is therefore directly linked to CPU speed plus stack efficiency. In practical terms modern CPUs and OSs should be able to 'bounce' loopback traffic considerably faster than 40Gbps - which is the fastest NIC I think I'm capable of buying today. Hope this helps.

link|improve this answer
feedback

No all 127.0.0.1 traffic never hits the physical network, it gets processed by a loop back adapter in the kernel.

link|improve this answer
so that means super fast right :) – Mrk Mnl Feb 11 '11 at 4:45
@Mrk Mnl yes you bet. For my ping 00ms using XAMP 1.7.4 – Benny Feb 11 '11 at 11:17
7  
any local address never hits the physical network. 127.0.0.1 just one of them – alvosu Feb 11 '11 at 11:27
"hitting the physical network" is a bit ambiguous as it could get to your NIC without being sent and not hit the physical network, anyway if it is returned by the kernel, i.e. the OS, obviously it doesnt get to the NIC. – Mrk Mnl Feb 21 '11 at 7:46
feedback

It depends on what OS you're running, but Windows 2000 had a bug in it where requests on the loopback adaptor would be slow. There's some useless trivia for you!

Please see this kb article for more information.

link|improve this answer
feedback

I'd rather say that you find your answer in it's name itself. The name says: "Local Loopback Address", which in itself means that the network never intervenes in the process and the request is in itself looped back locally.

link|improve this answer
I was about to post the same when I noticed you beat me to it. Indeed 'loopback address' should give a hint :) – Luis Espinal Feb 11 '11 at 12:35
the question was how fast, i know what it does – Mrk Mnl Feb 12 '11 at 8:22
feedback

127.0.0.1 is no faster any other local ip. The local ip fast, because it doesn't use physical device and 2-layers.( It never hits your NIC)

iperf -c 109.191.109.xxx 1111 -t 5
iperf: ignoring extra argument -- 1111
------------------------------------------------------------
Client connecting to 109.191.109.241, TCP port 5001
TCP window size: 49.7 KByte (default)
------------------------------------------------------------
[  3] local 109.191.109.xxx port 32840 connected with 109.191.109.xxx port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0- 5.0 sec  4.72 GBytes  8.12 Gbits/sec

$ iperf -c 127.0.0.1 1111 -t 5
iperf: ignoring extra argument -- 1111
------------------------------------------------------------
Client connecting to 127.0.0.1, TCP port 5001
TCP window size: 49.7 KByte (default)
------------------------------------------------------------
[  3] local 127.0.0.1 port 56482 connected with 127.0.0.1 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0- 5.0 sec  4.62 GBytes  7.94 Gbits/sec
link|improve this answer
2  
There's an awful lot wrong with this answer. It is faster. If you aturate the collision window then the limiting factor will be driven by context switching. – symcbean Feb 11 '11 at 13:02
feedback

Your Answer

 
or
required, but never shown

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