Slashdot Mirror


Network Card for Gamers - Uses Linux to Reduce Lag

Cujo writes "The folks at GDHardare have an interview with Bigfoot Networks discussing the pending release of their Killer Network Card which is said to greatly reduce in-game latency. According to the Interview, this card uses a Linux-based subsystem to do its magic."

44 of 410 comments (clear)

  1. Is it credible? by Whiney+Mac+Fanboy · · Score: 4, Funny
    From TFA:

    All the founders met at the University of Texas while getting their MBAs.

    Oh - and it runs FNapps, so as well as being good for games, its suitable for FNapping.
    --
    There are shills on slashdot. Apparently, I'm one of them.
    1. Re:Is it credible? by __aaclcg7560 · · Score: 4, Funny

      You mean they went to the University of Texas to find Linux instead of God?! I guess that answers the root question then.

    2. Re:Is it credible? by snowgirl · · Score: 5, Insightful

      It's obvious that they're all about the business here.

      "Powered by Lag and Latency Reduction (LLR) Technology"
      "Future-Proof: Field Upgradeable"
      "UltimatePing(tm)"
      "MaxFPS(tm)"
      "FNA(tm)"
      "GameFirst(tm)"
      "PingThrottle(tm)"

      Seriously, who else but a marketting department would think that it's a good idea to trademark a name describing everything "new" that your product does? And the page is so full of TLAs (three letter acronyms) that you need a glossary to read it.

      So, yes, I'd have to weigh in with everyone else, it's snakeoil. Basically, any product designed entirely by a marketting group is going to be snakeoil, and this definitely was.

      --
      WARNING! This girl exceeds the MAXIMUM SAFE standards established by the FDA for BRATTINESS
    3. Re:Is it credible? by SoloFlyer2 · · Score: 5, Insightful

      While the network card Might improve the network connectivity for that one person, it more than likely does it by hurting the performance of the the network as a whole...

      IE see the ALOHA protocol...
      http://en.wikipedia.org/wiki/Aloha_protocol#The_AL OHA_protocol

      Changing the way that the network card responded so that rather than using a random backoff time it just retried staight away would decrease the network latency but if there were several of the cards on the network all trying to do the same thing the network would grind to a halt...

      There are alot of protocols with backoffs etc which could be changed to improve the individuals connection but making them faster would be a BAD THING for the network as a whole!

      but, there are also other things which could be done to improve network connectivity without hurting the network as a whole... just setting up some kind of QoS on the network card so that small packets like ping response would always get pushed to the front of the queue would improve the ping time signifigantly under non-idle situations...

      --
      "I reject your reality, and substitute my own" - Adam Savage
  2. Yes. by Spazntwich · · Score: 5, Insightful

    I'm sure another layer of abstraction to the network is exactly what gamers need to reduce lag.

    Overloaded and slow routers will say, "Whoah, his network card RUNS LINUX. I'll shuffle these packets through more quickly."

    I'd believe their hype more if we already had an openly tiered internet and these guys gave you a free year's subcription to the top tier with purchase of the card.

    1. Re:Yes. by Beuno · · Score: 4, Informative
      I agree, although, also from TFA:

      Many network products today claim to 'offload' network calculations (like checksum, tcp segmentation, etc.). Those technologies are usually only for TCP/IP networking (which most games that Hardcore Gamers play don't use). Those technologies are also incomplete as they still go through multiple layers of the gaming network stack to eventually get data to the game. With Killer, we completely bypass your gaming PC's operating system and go directly from our card to the game. Our card automatically handles things like IP Reassembly, UDP/IP checksum, UDP and IP header verification and stripping, etc, etc, etc. By bypassing your gaming PC's operating system and allowing Killer to handle everything, Killer can achieve levels of gaming network performance well beyond the offloading features claimed by other consumer networking products (NICs or onboard chipsets).
    2. Re:Yes. by tomstdenis · · Score: 4, Insightful

      TCP isn't avoided because it's slow but because it's totally useless for streaming applications (e.g. games). Missing packets is much more easy to deal with than halting waiting for missing packets.

      Maybe that shows the founders don't know that much about networking?

      Tom

      --
      Someday, I'll have a real sig.
    3. Re:Yes. by CyberBill · · Score: 5, Insightful

      A lot of games are TCP based... World of Warcraft for example. Even games that arent exactly TCP are typically a reliable messaging system on top of UDP that pretty much mimics TCP.

      With that said, I cant see how this network card could reduce your latency by more than 1ms or 2ms round trip. Latency isnt introduced because your PC is stupid, its introduced because you're waiting the time it takes for packets to travel to your ISP, to its ISP, to its ISP, down to its child, down to its child, and back to some other PC, and having to interact with the 20 routers, gateways, and switches along the way. Most switches use something called Hold and Forward (I might have the name wrong...) which listens for the whole packet, reads the header information, and then passes it along, rather than writing the bits as they come in like a hub does... (Please dont read into this and think hubs are better :P )

      --
      -Bill
    4. Re:Yes. by Zebra_X · · Score: 4, Insightful

      WOW. Just wow. I think that I have seen it all. This fellow has actually posted a smart, witty and insightful comment about a totally bunk product and got modded troll as a result.

      And yet others defend this weak, limp wristed marketing gimmick and have been modded up.
      Is there no justice on slashdot!? Have the Mod gods forsaken us for the last time!?

      We pray to you mod gods, remove the blight from the parent post and restore the balance of good and newb on slashdot!

    5. Re:Yes. by russ1337 · · Score: 5, Interesting

      ....and probably bypasses any software firewall on your machine at the same time... how long till there is an exploit to get the network card to trigger 'gaming mode' for a worm... my bet is 2 days from release...

    6. Re:Yes. by Jherek+Carnelian · · Score: 5, Informative
      Even games that arent exactly TCP are typically a reliable messaging system on top of UDP that pretty much mimics TCP.

      With that said, I cant see how this network card could reduce your latency by more than 1ms or 2ms round trip.
      Given the constraints - TCP and various homegrown reliable protocols on top of UDP, it isn't too hard to come up with some options to improve latency. But they all involve violating the RFCs.

      First you have to wrap head around one important factor that can absolutely kill latency for any transport with guaranteed delivery -- packet loss. Packet loss means you have to discover what packets were lost and then retransmit them - those two steps can easily introduce delays on the order of seconds.

      So one trick would be to pre-send the retransmits. Send duplicate packets spaced apart by a few miliseconds. If the other end receives multiple copies of the same packet, it will silently discard any extras - but if one copy gets lost en route, the other packet might still make it through, thus eliminating the whole timeout/retransmit cycle. It should be possible to do this for both TCP and UDP.

      However, doing something like that is very unfriendly because it wastes resources. The primary reason packets get lost en route is because of bandwidth saturation. So, if you double or triple your traffic you are just making the problem worse. If you are the only one out of thousands who "breaks the rules" you will probably get away with it and probably even benefit from it since packet loss will be a somewhat even distribution among all traffic, so chances are if one of your packets gets dropped the copy won't get dropped - instead someone else's packet gets dropped.

      But if a significant minority of users were to do the same thing, it would probably result in a complete collapse of any usuable bandwidth. Which is exactly the kind of thing I would expect a bunch of MBA's to come up with.
    7. Re:Yes. by mrbcs · · Score: 5, Insightful
      IMNSHO, most latency is caused by "CRAPPY $5 onboard NETWORK CARDS!"

      Get a 3com NIC and be done with it. I've seen a machine getting pings of 200 to 300 and when I switched the crap card to a real 3com the ping times went down to 50.There is a reason that 3com charges $35 for their cards... they work well. I use them exclusively in my network.

      Shitty hardware always causes problems.

      --
      I'm not anti-social, I'm anti-idiot.
    8. Re:Yes. by Schraegstrichpunkt · · Score: 3, Insightful

      My guess is that the drivers are broken. I can't imagine anyone shipping an Ethernet NIC that, by design, adds 75-125 ms of latency to each frame.

    9. Re:Yes. by Feyr · · Score: 3, Funny

      in other news, there is such a thing as a "gaming network stack". forget ipv6! we're going full on gaming network!

    10. Re:Yes. by sketerpot · · Score: 3, Interesting

      One of the cooler features of this card is that it can be programmed to run things like firewalls on its own processor.

  3. Pricey by HeWhoRoams · · Score: 5, Informative

    Pre order cost is $280. You'll see a better FPS increase spending that on a graphics card, RAM, or some groceries for 6 months.

    1. Re:Pricey by bcmm · · Score: 4, Funny

      Yes, because we thought we'd get a better FPS increase from lower network latency.

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
  4. Huh? by SatanicPuppy · · Score: 4, Insightful

    It's always been my understanding that the bigger bottlenecks are upstream of your NIC. I mean, my home network set up goes gigabit from my desktop to my hardware router, gigabit from my router to my gateway firewall, then gigabit (minus a few MTU) to my DSL modem, and after that the speed gets massively reduced and there's nothing I can do about it. My lan latency is practically non-existant.

    Can you really reprioritize your packets coming from your desktop in such a way that you make a significant gain after it hits your ISP? Or is this just cyberpenis enlargement? Seems to me that, unless you're hosting a bunch of internet spyware or network-heavy background processes, you're not going to be making much of a gain.

    --
    ad logicam Claiming a proposition is false because it was presented as the conclusion of a fallacious argument.
    1. Re:Huh? by forkazoo · · Score: 5, Insightful
      It's always been my understanding that the bigger bottlenecks are upstream of your NIC. I mean, my home network set up goes gigabit from my desktop to my hardware router, gigabit from my router to my gateway firewall, then gigabit (minus a few MTU) to my DSL modem, and after that the speed gets massively reduced and there's nothing I can do about it. My lan latency is practically non-existant.


      Now, maybe I'm completely misunderstanding teh point of this NIC, but...

      You are correct. The NIC isn't an appreciable source of latency. Right now, I ping'd a server on another subnet, and I averaged 0.3 ms latency. This is bog standard 100 Mb. Nothing the least bit fancy. That server might have a nice NIC of some sort, but this desktop certainly doesn't. And, that's hopping between subnets. Crossing between buildings over a T-1, with a few routers involved in about 5 ms. Pinging my home machine over the internet is abou 150 ms. So, assuming that of the .3 ms latency I have inside this building, none of it is due to the switch, and none of it is due to actual wire delay, then about half of the latency is my system, and half is from the server. So, my NIC is responsible for abou 0.15 ms of latency.

      Now, assuming that I was playing a game with my home computer, moving to a NIC that cut the latency of my PC down by 2/3 (from .15 ms to .05 ms), I'd be shaving my total latency for the connection to 149.9 ms (from 150ms).

      Which would improve my lag by .06%

      No, dammit. You won't see a noticeable improvement from a lower latency NIC. There are probably a few microbenchmarks where you will get a phenomenal speedup. Gaming isn't one of those cases.
  5. Klingons on the starboard bow! by cannonfodda · · Score: 4, Funny

    Wow the first network card with built in Bat'leth!

    --
    Hmmmmmm
  6. Oooo... Killer by snowgirl · · Score: 5, Funny

    OMG, they named it the "KillerNIC"? Like, does this kind of advertising actually work?

    "This NIC is so hardcore it KILLED SOMEONE!"

    I can just imagine their second version coming with a muzzle a la Silence of the Lambs.

    --
    WARNING! This girl exceeds the MAXIMUM SAFE standards established by the FDA for BRATTINESS
    1. Re:Oooo... Killer by Tumbleweed · · Score: 4, Funny

      I'd buy it if had a better name. Something like Xtreme NIC Ultra or something.

      And some VTEC stickers and a big-ass wing on it.

      Yeah, that'd be phat, yo!

      Pimp my NIC, bitches!

  7. network card lag? by Fullaxx · · Score: 3, Insightful

    since when is lag caused by your local NIC? So what if you get an extra .001 ms to your router? Never once have I seen my cpu above 5% b/c of network usage, even full network usage. No way is this legit

  8. Two reasons. by khasim · · Score: 4, Insightful

    #1. It's more difficult to issue updated software in firmware.

    #2. It's another chip. Software is far cheaper than hardware for OEM's.

  9. Is this really needed? by adamwright · · Score: 5, Insightful

    As a small test, I ran up Quake 3 on it's highest settings, and had it play back a reasonably heavy demo. Now, Quake3 isn't the most modern of games, but it can still peg a CPU at 100%. Then, I found the latency to my router.

    Pinging 192.168.0.1 with 32 bytes of data:

    Reply from 192.168.0.1: bytes=32 time1ms TTL=255
    Reply from 192.168.0.1: bytes=32 time1ms TTL=255
    Reply from 192.168.0.1: bytes=32 time1ms TTL=255

    Assuming this product entirely eliminates all latency on the first hop (impossible), that's a net gain of 1ms.

    The entire concept of these FNApps also strikes me as a route to evil; I heard a subtext of "Now, even the most clueless Windows gamer with too much money can run packet scanning cheating tools with no chance of detection!".

    I'm placing this one firmly in the "Snake oil" bin, based on this interview.

  10. Retarded, by u16084 · · Score: 5, Insightful

    If your ISP sucks ass, a $250 lan card is not going to help.

    --
    -- I Dont Deserve A Sig I Have Bad Karma
  11. So it's a QoS Network Card? by tlhIngan · · Score: 5, Insightful

    The only thing I can guess it needs Linux for is to do the routing and QoS services (see lartc.org)...

    Then again, considering I get sub-1ms latencies across my network (only 100Mbps...), and this is with some rather pathetic equipment (Celeron system running Win2k), I fail to see how I can improve my 80ms ping with a better network card.

    It seems that hardcore gamers are starting to become the computing equivalent of the "audiophile". From CRT displays that do 120hz refresh (do they notice the difference between 100 and 120, I wonder?) since LCDs that do 6ms are "too slow". Gaming mice that do 10k-dpi for ultra-precise positioning, videocards that cost the better part of a grand. And now, network cards that cut down microseconds or give you that extra frame per second. There's also keyboards, the gaming mousepad (though, some are nice for general use), and god knows what other accessories, doodads and other monster-cable-type things.

    1. Re:So it's a QoS Network Card? by bcmm · · Score: 4, Interesting

      This is offtopic, but I have to mention this while we're talking about audiophiles. About a month ago, I saw in a shop a device even more blatantly pointless than this NIC. It was an "A/V USB cable". Gold-plated. That's right, ordinary USB cables are not good enough for running a projector, presumably because those cheap stainless steel USB connectors introduce too much noise into the (digital) signal.

      (For anyone who doesn't frequent the same shops as crazy people, it is common to gold-plate the connectors of analogue audio connectors to improve the quality of the signal. Presumably the untarnishable gold reduces the resistance of the connection. This gets taken to rather silly extremes when gold-plated 3.5mm connectors are marketed for use with low-quality stuff like MP3 players.)

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
    2. Re:So it's a QoS Network Card? by slackmaster2000 · · Score: 5, Interesting

      Yeah audiophiles are very easily fooled. I laugh every time I hear about digital technology being described in analog terms, which is terribly common in the audiophile realm. It's sort of understandable though because "digital" is so variable whenever we interface with the analog world. Not all AD/DA converters are created equal. Audio CD playback is very similar to analog technology in that it's designed play right through and mask errors which can result in high frequency distortion and various other artifacts that one might not expect from "digital" and how that term is marketed. It can be difficult to understand, so why wouldn't the quality of a USB cable be as important as the quality of a microphone cable or the weight of a speaker cable? Well, most of us would say "duh", but the second big problems is that these people can "hear" the difference! Ah the power of suggestion. You won't find a lot of double blind studies published by audiophile gear manufacturers.

      Aside from $30,000 speaker cables (I shit you not), my most favorite audiophile product is a wooden knob that costs $500. "What does the wooden knob do, though?" Well, nothing on its own. It is in fact, a wooden knob. A knob made from wood. It sounds great when attached to your volume pot, though. Five hundred dollars please.

      So today we learn about a network card that somehow reduces lag by implementing hardcore quality of service on an endpoint that is for all intents and purposes dedicated to a single application. Are gamers analogous to audiophiles? "Quake III is a lot more responsive now. My ping is about the same, but I can feel the difference." It must work though. I mean, who would make something and charge so much for it if it didn't actually work? :)

  12. It must be good !! by Midnight+Thunder · · Score: 4, Funny

    It must be good! Have you seen the size of the fan on that thing ;)

    --
    Jumpstart the tartan drive.
  13. The telling comment at the end by grasshoppa · · Score: 4, Insightful

    All the founders met at the University of Texas while getting their MBAs.

    That says all that needs to be said for the article.

    --
    Mod me down with all of your hatred and your journey towards the dark side will be complete!
  14. I've said it before... by BertieBaggio · · Score: 4, Insightful

    This, of course, was covered earlier. And I still agree with the tag - I think it is snake oil.

    Let's try and remember a few fundamentals. As per RFC 1925, "The 12 Networking Truths":

    [2] No matter how hard you push and no matter what the priority, you can't increase the speed of light.

    (Déja vu? Yes!)

    Right on. This card might process incoming data quicker, or perhaps even send the data to the CPU faster, but it won't reduce latency. The high price ($280? TFA is not responding) does not justify the alleged 'improvements' in lag this card offers. Games communicating over UDP like BF2 have fairly low lag anyway (when they stay connected...). As others have said: spend the money on RAM or some other upgrade. The 'lag' improvement will be much more cost-effective.
    --
    If all you have is a grenade, pretty soon every problem looks like a foxhole -- MightyYar
  15. Re:Oh, Geeky! by harrkev · · Score: 3, Informative

    But... if you read the specs, you have to run Windows in order to use it. It uses Linux, but no Linux drivers...

    --
    "-1 Troll" is the apparently the same as "-1 I disagree with you."
  16. I think you are making some invalid comparisions by Sycraft-fu · · Score: 5, Insightful

    For example take the CRT thing. I own such a CRT, and it's not marketed to gamers, it's marketed to professionals. Why the refersh rate then? Simple function of it's ability to go super high resolution. The monitor is rated to do 2048x1536 @85Hz. To do that, takes some fast electron guns. Well, that ability implies higher refresh rates at lower resolutions. It can do over 200Hz at 800x600 because the resolution is so low. The point is to get extremely high resolutions at usable refresh rates. Also, in general, you want your device spec'd above what it's supposed to actually do. You don't want to run it at it's limits all the time.

    Likewise the mouse thing is a little misinformed. Higher DPI cameras isn't worthless on an optical mouse. It lets it track on more uniform surfaces. No matter how uniform something looks, at some point it's uneven. Well, optical mice need uneveness to track, that's why they don't work on a mirror, or a really smooth surface, they can't track details. One way to make them track better is to up the DPI. The smaller details they see, the more uniform a surface can be. That's also the point behind using a laser. Since it is truly monochromatic light, just one frequency, it shows small details in a starker contrast that is lost with normal LED light.

    Though there's certianly BS targeted at the gamer market, this being some of the BS, there's plenty of products with real legit reasons to be bought. Not everyone wants an experience that is "acceptable" or "works jsut good enough to get the job done." Doesn't mean they are wasting money on the things they buy. Yes a $50 used mountain bike will get me to work and back, but that doesn't mean that I'm wasting money on a deceant $600 street bike. It honestly does work better.

  17. And at this point I would like to announce: by ettlz · · Score: 4, Funny

    Killer IO-APIC!

    • Dispatch those interrupts ten times faster than the enemy so you can pwn!
    • Be on the cutting edge so you can react level when those unexpected events hit!
    • Totally slam your on-line opponents with our 8259-bustin' l33tn355!

    Stay alert, kids, because we'll soon be announcing Killer Keyboard Controller with Bitchin' Gate A20 Technology!

    Pwn!

    w00t!

  18. Re:Is it credible? Of course not by frovingslosh · · Score: 4, Insightful

    I don't know what's sadder, that some fools would actually hand over money to a bunch of MBA who claim to someow have designed a better network interface than engineers, and who can't understand that these claim are completely bogus, or that Slashdot actually gives them a soapbox to further pitch their snakeoil from (perhaps because of the use of the term Linux in the hype).

    --
    I'm an American. I love this country and the freedoms that we used to have.
  19. Ted Stevens and I believe the card works by User+956 · · Score: 5, Funny

    So, yes, I'd have to weigh in with everyone else, it's snakeoil. Basically, any product designed entirely by a marketting group is going to be snakeoil, and this definitely was.

    Everyone knows the internets is a series of tubes. Well, this card hurls your data through the tubes with such force that it can't possibly get stuck.

    Make sure not to point the jack at anyone. You'll shoot someone's eye out.

    --
    The theory of relativity doesn't work right in Arkansas.
    1. Re:Ted Stevens and I believe the card works by Schemat1c · · Score: 4, Funny

      Everyone knows the internets is a series of tubes.

      Okay that's it, I officially declare the 'internet is a series of tubes' reference not funny any more.

      Thank you.

      --

      "Nobody knows the age of the human race, but everybody agrees that it is old enough to know better." - Unknown
    2. Re:Ted Stevens and I believe the card works by QuantumFTL · · Score: 3, Insightful

      Okay that's it, I officially declare the 'internet is a series of tubes' reference not funny any more.

      Yeah, to be honest, of all the things said during that horrid speech, that was the most accurage. tubes/pipes, WTF is the difference?

    3. Re:Ted Stevens and I believe the card works by dr_d_19 · · Score: 3, Funny


      Okay that's it, I officially declare the 'internet is a series of tubes' reference not funny any more.

      Thank you.


      Sure Schemat1c, but not everyone reads Slashdot... could you send out an Internet to everyone about this ?

  20. Tytus (Bigfoot Networks) Responds by Tytus_Bigfoot · · Score: 5, Informative

    Hey everyone, I am the inventor of the Killer NIC. I will not try to hijack your thread, so this will be my only post. Thanks for the interest in our Killer Network Card. It has been my personal vision for years. A lot of very good questions have been raised here, and I think a lot of them are answered in our FAQ here: http://www.bigfootnetworks.com/FrequentlyAskedQues tions.aspx . If there are still questions, I would love to try to answer them at our sponsored community site: http://www.endlagnow.org/ELNForums/ Thanks, Tytus

  21. Re:It gets better by Sledgy · · Score: 3, Insightful

    If you read the artical you would see that they are not claiming they invented TCP offload, but adding support for UDP offload (as most games use UDP and not TCP).

    Although in saying that, I can't really see how this card is going to make much difference over the internet. Your connection or the configuration of your ISP is more likely to be where the lag is introduced rather than your NIC.

  22. Re:It gets better by MoxFulder · · Score: 3, Insightful

    UDP offload???? Gimme a break :-)

    The entire processing required to transform a hunk of data into a UDP packet consists of prepending a 6-byte header to the thing, containing the source port, the destination port, and 16 bits of zeroes... not exactly the sort of thing that requires immense processing power. Unlike TCP, UDP doesn't synchronize anything, doesn't reorder anything, and doesn't acknowledge receipt of packets.

    How much of your processing power is ever occupied by the network card when playing a game??? Or when doing anything else for that matter. I can have several hundred bittorrent connections running on my computer, with a total transfer rate of hundreds of KiB/s, all kinds of checksumming and I/O overhead, and it still makes a 1 or 2 percent blip on CPU usage... unless a network card can magically construct a LAN between two computers at a distance, it's not going to affect latency in network gaming.

  23. Where is the Disadvantage???? by woolio · · Score: 3, Funny

    While the network card Might improve the network connectivity for that one person, it more than likely does it by hurting the performance of the the network as a whole...

    That sounds like killing two birds with one stone....
    1) Decrease my latency
    2) Increase the latency of everyone else, including the snipers in CS

    This could be a gamer's paradise... It will be infinite successful.

    OTOH if it doesn't work, then it makes a great gift for a `friend'.