Slashdot Mirror


Halo 3 Causing Network Issues

Recently at my university where I'm a student and a sys admin, we have been experiencing some odd outages, in particular since the 25th of September. The outages seemed to occur between 8 PM and 12:00 AM — peak gaming hours for our dorms. It just happens that Halo 3 came out on the 25th of September. Upon further investigation we found that our network routers were shaping TCP packets, but not UDP. Once we applied UDP shaping as well, all network outages ceased. Gamers complained, but university students attempting to access network resources such as our UNIX clusters were satisfied.

58 of 306 comments (clear)

  1. Doubts by nielsslein · · Score: 4, Insightful

    I'd like to see more proof before I go and blame Halo 3 for this.

    --
    Niels
    1. Re:Doubts by CrankyFool · · Score: 4, Insightful

      Dude, you didn't even have to read the FA, it was in the summary! The issue was that the routers weren't shaping UDP.

    2. Re:Doubts by Anonymous Coward · · Score: 5, Funny

      Do not try to read the fucking article. That is impossible. Instead, only try to realize the truth: there is no fucking article.

    3. Re:Doubts by MindStalker · · Score: 4, Informative

      No in large university networks you have to set bandwidth caps for all users, (pst your ISP does this now and sets it at whatever Mbps you buy). His router wasn't even looking at UDP traffic so a few users were getting more than they were assigned.

    4. Re:Doubts by KiloByte · · Score: 5, Interesting
      Yeah, I can see three explanations:
      • Halo 3's network protocol is so abysmal that it needs a big chunk of bandwidth. I'm not talking that everything must be done The Right Way (ie, sending just what other players pressed and a checksum of the game's state like Doom1/2 did), but even sending the coords for objects you can see won't take more than a few KBs per second.
      • the routers were buggy and crapped out after seeing more than X streams, counting every UDP packet as a separate stream (a moderately popular bug). As shaping fixed the issue, I doubt this could be the culprit.
      • the whole univ having nothing but a slow DSL uplink or so. I don't know where the article's poster is from, but if that's a 3rd world country it's possible.
      Somehow, not knowing anything about Halo, I suspect a combination of the first and third reason.
      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    5. Re:Doubts by arivanov · · Score: 5, Informative

      Missed one - the routers crapped out on packets per second, not on bandwidth. This is probably the most likely one.

      As far as the network protocols being abissmall you are about right. They have devolved over time.

      Once past the stage of serial connections, the early gaming protocols efforts tried to use multicast+unicast or broadcast+unicast technologies to run peer-to-peers like networks where people truly played against each other.

      These times are gone. It is all client-server now.

      This explains the admin problem - I bet that most of the students were fragging each other silly together and played within the same map and the same game. That all ended up as a lot of client-server connections. This does not consume a lot of bandwidth on average, but it is capable of flatlining the network for short periods of time every time something interesting happened in the game because the data is tromboned back and forth across the same bottleneck many times. 1 student moves and the server sends the data to 16 others, and so on. Essentially this is a form of amplification/positive feedback loop. If the same students were playing games with other people located elsewhere the effect would not have occurred.

      This is a classic example of devolving and microsoftization of the gaming protocols. If the game was running locally using broadcast+ unicast or multicast_unicast to inform all local participants and only one dedicated hypernode checked what is going on outside the small "local world" there would have been no bandwidth/pps problem.

      --
      Baker's Law: Misery no longer loves company. Nowadays it insists on it
      http://www.sigsegv.cx/
    6. Re:Doubts by KiloByte · · Score: 2, Informative

      Sixteen players in a big outdoors map, where they can see a lot of stuff? That's not an insignificant number of KBs per second. And if your college is like mine was--where some nights, literally 75% of the player population was Haloing--that can easily hit a few MB per second. Well, trees, doors, walls, signs, etc tend to not move a lot. So usually all you need to send are the players themselves, bullets, and that's about it.

      Okay, on second thought, that's not all that huge a number. But doesn't UDP have more overhead than TCP? Eh, I guess I don't know that much about this after all. Actually, UDP has slightly less overhead: 20 bytes+layer 3 header for TCP (=32 bytes + Ethernet frame over IPv4), and 8 bytes+layer3 = 20 bytes+Ethernet over IPv4 for UDP. Yet, with TCP, the OS forces as least some congestion control, something that game programmers typically completely disregard.
      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    7. Re:Doubts by KiloByte · · Score: 2, Interesting

      Beh. Ten years ago, when me and a bunch of friends used to write simple games as high school kids, we never got worse than some kind of a minimal spanning tree, doubly-connected w/o bridges if the game in question allowed dropping nodes. This is basic graph theory, something any CS student has to know.

      And highly paid professionals should be a lot better educated than a group of kids, right? Oh well, whom am I kidding. But if you're writing a gaming library for millions of dollars, the library ought to handle at least the most common case when most players are close to each other well.

      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    8. Re:Doubts by garbletext · · Score: 4, Informative

      Yet, with TCP, the OS forces as least some congestion control, something that game programmers typically completely disregard. TCP has a lot more than congestion control and packet size that makes it a poor choice for games. It's overhead includes acknowledgements, error correction, and things like guaranteed packet order and retransmission of lost packets. For a game, especially a FPS, you want to fully utilize available bandwidth. If a packet has to get retransmitted, or held because it's not in order, it's going to be stale by the time it arrives, so you might as well ignore it. UDP's connectionless nature means that clients can just spew packets as fast as their link allows.
    9. Re:Doubts by Anonymous Coward · · Score: 5, Insightful

      If either of you thought about this instead of just acting superior, you'd realize that they tried the "p2p" method until cheating became widespread, and then had to shift to a more complicated (but less efficient) server model that could run checks on the data and make sure nobody was cheating.

      Highly paid professionals know more than you, don't worry.

    10. Re:Doubts by maraist · · Score: 4, Insightful

      It wouldn't be the downloading of the game, as that's TCP not UDP, and it very likely isn't connectivity to the internet, because that would have nothing to do with access to the central UNIX servers - Local networks are always faster than internet connections, thus, unless the summary of the article was lying, it was purely a HUB/Switch UDP network hog, and any good sys-admin of a massive local network would have done the same thing.

      Consider a percentage of 10,000 hosts playing the game.. All sending multi-cast UDP packets. You have say 1,000 hosts sending several packets per second to every network that multicast is configured to broadcast to. So you have several thousand packets per second going to at least every network card in the dorms, and probably to/from all the student-accessible computer labs to boot.

      While the central servers most likely were on isolated (non-broadcastable) networks, all the client-host accessible points were choked.

      --
      -Michael
    11. Re:Doubts by Anonymous Coward · · Score: 4, Informative

      For a game, especially a FPS, you want to fully utilize available bandwidth.

      I don't know of any FPS programers who would want to fully utilize available bandwidth. If they did, it wouldn't scale and their game would suck.

      What they do want to do, is minimize latency to keep character movement smooth and accurate to give the perception of real-time immersion and do that with a minimum of bandwidth usage, so that their game will scale to a practical number of players. Minimizing bandwidth usage helps improve latency and scaling.

    12. Re:Doubts by gallwapa · · Score: 2, Informative

      uh, multicast isn't broadcast

    13. Re:Doubts by Pc_Madness · · Score: 2, Informative

      Yeah, you really don't. The amount of bandwidth goes up with the amount of players in a server. The server reports the position of a player, and any actions it might be performing... for example a grenade has been thrown from here with this trajectory. It will also report any kind of moveable objects. Map size doesn't come into it, since its only sending out information on the people and their locations, not every square inch of the map. As for TCP vs UDP. UDP is connectionless, so it has no overhead, while TCP does. Games rely on UDP, as is my understanding, but still use TCP for a few things. As for how much bandwidth a 16 player game of Halo uses.. I would think it would be about 10-15kB/s. CS is usually higher than that, about 15kB while a game of Gears of War is alot lower.. perhaps 5-10kB, but generally most 360 games are pretty good bandwidth wise. (I'm trying to judge speed based on my download usage, so these numbers aren't exactly accurate. :p)

    14. Re:Doubts by Blakey+Rat · · Score: 4, Insightful

      Ok,

      1) Saying that you know more about game networking than the crew at Bungie, the crew who have been making games with LAN and Internet play since freakin' Minotaur in 1992, that's just plain stupid. Let's see your credentials if Bungie's coders are so stupid.

      Client-server is used because it's the only way to provide fair "hit negotiation" (the server always decides who hits who-- play Mechwarrior III for an example of a game without this) and it prevents cheating, since each client sees only what it absolutely needs to see to function.

      2) Never use the word "Microsoftization" again.

    15. Re:Doubts by thealsir · · Score: 2, Insightful

      My high school had one dual ISDN link connecting about ~300 computers until my senior year...it would literally take 5-15 minutes to load mostly text web pages. The dumbasses in charge didn't get the message till I was almost out of school.

      Shitty school internet is not a third world phenomenon at all.

      --
      Do not downmod posts "overrated" simply because you disagree with them.
    16. Re:Doubts by Mr.+Freeman · · Score: 5, Interesting

      "Ultimately, there is typically only one connection to the net that is provided by the school, and if it is all being used up fine, but it should at least be something that is academically related or general net use."

      Yeah, how dare college students try to use the network for gaming.

      Seriously though, this is something that A LOT of people miss. College students are living at the college 24/7 for at least 4, more if they go to grad school, years.
      It's fine to say something like "No porn, games, file sharing, etc." at work or at a high school where business and education are the only things that should be happening. Why? Because the employees/students should go home and do those things on their own Internet connection.

      But that doesn't work in a college. The students can't just go home to their own Internet connection, they're stuck at the university with the network available in the dorms. The universities need to buy more bandwidth instead of throttling the speed down to levels non-suitable for gaming. There will be a time in the near future where Internet bandwidth available to each user will be a large portion of the decision process for students applying to college. Right now I'm applying to about 5 different colleges that are 99% identical, if I'm accepted into all of them then I'm going to have to decide between them based on which one has the greenest trees, is closest to a bar, has the best cell phone coverage, and which one has the least amount of throttling on the Internet connections in the dorms.

      --
      -1 disagree is not a modifier for a reason. -1 troll, flaimbait, redundant, overrated are NOT acceptable substitutes.
    17. Re:Doubts by JNighthawk · · Score: 3, Insightful

      Thank you *very much*. I'm tired of reading people's bullshit, thinking networking an FPS is easy and shouldn't require much bandwidth, while making sure that no one can cheat easily.

      To those that think it is: try it.

      --
      Wheel in the sky keeps on turnin'.
    18. Re:Doubts by cpritchett · · Score: 5, Interesting

      If your university did buy more bandwidth, I can assure you the quality of the students gaming experience didn't cross anyone's mind. It's not quite as simple as the network admin calling up the local ISP and going to the next tier.

      Aside from the argument that the bandwidth is for educational use, trying to support gaming in our dorms would be a full-time job based on the number of calls and emails we get on a daily basis about it.

      People use to be all "well that sucks, i'll get over it." Now I've got parents calling wondering why Johnny can't play his favorite MMO that he "really, really likes to play." I seriously thought that a guy that came to my office a few weeks ago was going to hit me because he couldn't play FFXI.

      The worse part though, is when a group of students try to fake network problems in order for us to fix Johnny's issues, because, apparently, we don't monitor the network at all until 20 people on the same floor complain.

      If they really need their fix, they are more than welcome to get a cable modem from the local cable company. I can't vouch for all Universities, but nobody here is forced to use our LAN.

    19. Re:Doubts by FredMenace · · Score: 2, Informative

      Here's the rub: back in 1994, Bungie put out a Macintosh 1ps game called Marathon. Now this game Marathon had rudimentary "round robin" LAN networking (AppleTalk-based, not IP). While there was a "gathering" machine, there wasn't one authoritative server - each copy of the game ran its own simulation of the world, and passed some information about what keys its player had pressed on to the next machine in the circle, and you just hoped they were all concluding the same things were happening at the same time. The problem was that if they got out of sync due to any excessive delays, packet loss, etc. (imagine two players think they have killed each other, before each receives the message that the other may have killed them first), or even internal bugs where they each calculated and randomly came up with different results, the game would be irretrievable - one player would think they were kicking ass, while the others would wonder why that player was facing a wall at point blank range, repeatedly suiciding with the rocket launcher. Nothing to do but abandon the game and start over. This happened quite a lot. It also precluded Internet play entirely. (Incidentally, since the "film/demo" recording feature used the same technology, it also happened sometimes that films would get "out of sync" with the playback machine relative to the machine that recorded it, and thus not make any sense either.)

      Naturally, this was such a successfull network model, Bungie chose to use it again in Marathon 2: Durandal. And again in Marathon: Infinity. As well as Myth: the Fallen Lords, Myth 2: Soulblighter, and Halo: Combat Evolved (the code having been worked over somewhat by this time, without really fixing its fundamental flaws). This despite the fact that id had shown a superior way with Quake (specifically QuakeWorld) since 1996, and that others, such as Epic, had struggled (and eventually succeeded) to create similarly-good networking in games like Unreal Tournament soon afterward. It wasn't until Halo 2 that Bungie finally decided that having crappy 10-year old networking code wasn't really the best idea. More to the point, the game had to run on Xbox Live, and the old networking simply DOES NOT WORK (or at least provide a playable game) for a 1ps game on the internet, though it marginally worked in the RTS Myth series. So they HAD to fix the networking, if they wanted any Xbox Live networking at all.

      So yes, as of Halo 2, they have fairly modern networking with decent prediction (borrowing liberally from community-developed ideas that were applied to Counterstrike etc., for instance with each client not only asserting what controls were affected by the player, but what actions it believes should have been taken in the world, which the server will only override if it doesn't fit with its own model), but it sure took them long enough to get there.

    20. Re:Doubts by mcrh · · Score: 3, Funny

      Never use the word "Microsoftization" again.

      Why? It's a perfectly cromulent word!

    21. Re:Doubts by vimh42 · · Score: 2, Funny

      Do not try to send UDP packets. That is impossible. Instead, only try to realize the truth: there is no UDP.

  2. I didn't RTFA... by A+beautiful+mind · · Score: 5, Funny

    ...but at least now I have the excuse that there is no FA.

    --
    It takes a man to suffer ignorance and smile
    Be yourself no matter what they say
  3. I must be new here by OAB_X · · Score: 5, Insightful

    What a remarkably useless story.

    1. Re:I must be new here by Romancer · · Score: 5, Insightful

      Probably the facts:
      1. There is no link to an actual article or any other related or corroborating information source.
      2. The summary admits that certain router features were not enabled, and simply enabling them fixed the "problem".
      3. The title of "Halo 3 Causing Network Issues" has so far been only superficially associated with the "problems" they were having by giant leaps of non technical assumption.
      4. This is another KDawson post/nonstory.

      --


      ) Human Kind Vs Human Creation
      ) It'd be interesting to see how many humans would survive to serve us.
    2. Re:I must be new here by Jarjarthejedi · · Score: 4, Interesting

      Well it's remarkability has been proven by the number of comments.

      It's uselessness lies in the fact that it was a mis configured router causing the problems, and configuring it right fixed it. 99% of people on /. don't need to know this (because they're not running a university network, have configured their routers right, or were expecting this sort of thing from the largest game release in history) and the other 1% didn't read the article.

      I'm not sure about the story part, though I guess any yarn told by an individual about an event qualifies.

      Therefore the tale is a story, is remarkable, and is useless, ergo 'What a remarkably useless story'

      Honestly this one irritates even me, and that's saying something. I'm usually fine with non-stories, as I'm bored enough to not care. Talking about how you didn't properly set up your university network and didn't prepare for the largest game release in history (I'm sorry, but if you're running a network for college kids, why in the world weren't you ready for Halo 3? You should know for a fact that it's going to be huge, if you don't then you're living in a cave) doesn't make me want to like you, and then mentioning that your response was basically to shut down the kids ability to play proudly, like 'Look at me, I'm so smart, I killed a bunch of kids fun because I couldn't think of any of the other hundred ways to solve my problem and would rather just shut them down', well that makes me want to punch you in the face for being dumb, and proud of that dumbness.

      --
      There are two kinds of fool One says 'This is old therefore good' Another says 'This is new therefore better'- Dean Ing
  4. This is a story? by Anonymous Coward · · Score: 2, Insightful

    Poorly configured firewall and packet shapers - reconfigured them and now stuff works better?

    This passes for a story at slashdot now?

    1. Re:This is a story? by blowdart · · Score: 5, Funny

      It has a "blame Microsoft" angle, what more do you want?

  5. And? by VeteranNoob · · Score: 5, Insightful

    So, poor network design caused the network to become saturated. QoS rules were applied to UDP, as they should have been, and the problem has gone away.

    Where's the story?

    --
    Adapt, adopt, or get out of the way!
    1. Re:And? by Blakey+Rat · · Score: 5, Funny

      It's just posted here so we can get reams of replies talking about how over-rated Halo is, how much the Xbox (made by Microsoft!) sucks, how great Nintendo is in comparison, and how games used to have more "fun" back in the olden days. The network problem is entirely secondary.

      So it's pretty much like every other Slashdot Games post.

    2. Re:And? by MightyMartian · · Score: 3, Funny

      Indeed, the story should be "More dipshit net admins with fancy-ass certificates but no brains fuck up QoS once more."

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
    3. Re:And? by Orange+Crush · · Score: 2

      It seems to me that the in general geek perception, the 360 is pretty well regarded. I think it's gotten a pretty fair analysis in the geek world--a generally* well built, correctly-priced piece of hardware, competently marketed and released well enough ahead of the other players to have the upper hand w/ regards to game libraries.

    4. Re:And? by Chandon+Seldon · · Score: 2, Insightful

      The general geek perception is that the machine is a piece of shit. Unless you happen to work for Microsoft or have devoted your life to being it's love slave.

      That's the Sony / Nintendo fanboy perception, which differs from the "General Geek Perception". Now, all three of the current-generation consoles are DRM infested crap... but console fanboys seem to be willing to ignore that.

      Once you accept that any console is worth buying, each of the three have their advantages and disadvantages - that end up making any of the three a perfectly defensible choice.

      The 360 has decent graphics, has Halo 3, is cheaper than the PS3, and has good games. That's enough for a lot of people.

      --
      -- The act of censorship is always worse than whatever is being censored. Always.
  6. So what? by JustShootMe · · Score: 5, Insightful

    Guy had a network problem. Network admins found the source of the network problem. People who caused the network problem complained, everyone else was happy. This wasn't even a technology problem, it was an oversight in the configuration of the routers/switches.

    How exactly is this worthy of a front page article on slashdot?

    Hey, guess what. The other day I had a process that stopped working. Thinking quickly, I figured out what was wrong and fixed it. Everyone was happy. Do I get a front page article too?

    Sheesh. Congrats for doing your job, subby.

    (I know this was a journal entry and subby had nothing to do with it getting greenlighted, but seriously, wtf?)

    --
    For linux tips: http://www.linuxtipsblog.com
  7. No sympathy... by _Shad0w_ · · Score: 2, Insightful

    You know, I don't think I have any sympathy for the upset gamers on campus networks.

    Also, are you seriously trying to tell me that /. couldn't find something more interesting to post?

    --

    Yeah, I had a sig once; I got bored of it.

    1. Re:No sympathy... by damn_registrars · · Score: 5, Funny

      Sadly enough, I know someone who chose his 4 year college based on ping times to his favorite Quake servers...

      You'll probably be shocked to hear that he graduated by some sort of formality...

      --
      Damn_registrars has no butt-hole. Damn_registrars has no use for a butt-hole.
    2. Re:No sympathy... by timeOday · · Score: 3, Interesting

      You know, I don't think I have any sympathy for the upset gamers on campus networks.
      I don't know about sympathy, but it does sound like the university network is inadequate. I'd hate to see these admins in charge at FedEx... "there's just too darn many packages this Christmas, and most of them aren't important business documents anyways. I know, let's just throw out anything in wrapping paper and ribbons!"
  8. Good for you? by Mattwolf7 · · Score: 2, Insightful

    I fail to see a story here, your network was setup wrong and is now fixed. Case closed.

  9. Wait a second. by Entropius · · Score: 5, Insightful

    You're degrading time-critical but relatively low-bandwidth traffic intentionally in order to improve responsiveness for some ssh connections?

    Granted, Halo 3 is less important than Prof. Smith's Monte Carlo, but the fact that you have to do this at all means that you need more capacity. Plus it's damn rude to the students: "Oh, they're doing something new that we don't degrade! Ah, well, just degrade student UDP traffic too, that'll fix it!"

    I'm not saying that transfer limits are a bad idea -- someone downloading 100GB/month and saturating a line needs to be told off, certainly -- but if a bunch of low-bandwidth gaming traffic from the dorms kills the network...

    Don't forget that those guys in the dorms playing Halo pay lots of money to the university, which pays for the network.

    If I knew what uni you were at I'd seriously consider adding my (meager) 256kbps upstream to the load by writing a script to refresh your homepage over and over.

    1. Re:Wait a second. by Bert64 · · Score: 4, Insightful

      But this is a university network... Accessing SSH on university systems so that students can do their work is far more important than playing some games.
      The network is there for research purposes, so thats students can do the research they need to pass their educational courses. Any traffic that facilitates the educational courses of the university should be prioritised, and anything else should get whatever bandwidth remains. And those games should be grateful they can play online games at all, the university is not obligated to provide them a connection nor allow them to play games on it (they could easily filter gaming traffic completely).

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    2. Re:Wait a second. by MacTO · · Score: 2, Insightful

      Don't forget that those guys in the dorms playing Halo pay lots of money to the university, which pays for the network. Students are paying for an education, and maybe room and board. It is absurd to think that universities should be giving students free reign to academic resources for gaming. Particularly if their use is degrading the availability of those resources for their intended purposes. If you want a low latency connection for gaming, then buy your own and don't force others to subsidise your entertainment. Thing is, very few gamers will do that because they know that the minute they use a real ISP is the minute that they have to pay for how they use it. And most students would rather just bitch and freeload.

    3. Re:Wait a second. by arcsimm · · Score: 2, Informative

      The network is there for research purposes, so thats students can do the research they need to pass their educational courses. Any traffic that facilitates the educational courses of the university should be prioritised, and anything else should get whatever bandwidth remains.

      Though the article author doesn't say what university he's from, if the students there pay any kind of significant connection fee for Internet access this argument won't fly. Where I attend, I pay roughly $25 a month -- what a decent midrange residential DSL package costs -- to be able to access the Internet in my dorm room. Above and beyond that, all on-campus intranet services are available regardless of whether or not that fee is paid, including our Blackboard site and libraries. If I'm going to pay that much for what is solely an Internet connection, I expect to be able to damn well whatever I like with it (though the administrators appear to disagree when they blame the perpetually abysmal service on "non-academic use"), and so should the students who are getting their games throttled down to unplayability.

  10. Re:I JUST POOPED A LARGE TURD by JustShootMe · · Score: 3, Funny

    Congratulations. Put it in a journal and you might get on the front page too.

    --
    For linux tips: http://www.linuxtipsblog.com
  11. Re:Oh! Boo hoo! by JustShootMe · · Score: 2, Insightful

    I wouldn't have gone that far. I think that what the poster did was a reasonable action. But I wouldn't have thought twice about closing the ports if the situation had warranted it.

    Gaming may be a fun thing to do, but it is not a god-given right, especially at a University where you are supposed to be, oh, I don't know, going to classes and doing homework?

    Maybe I'm just a 32 year old fart that remembers the university days when people studied or went to the student union if they wanted to interact with people.

    --
    For linux tips: http://www.linuxtipsblog.com
  12. Re:My school's network sucks :/ by Bert64 · · Score: 2, Informative

    Your 45mb pipe, even shared between 2000 users is a lot more than people had a few years ago... Consider dialups, and the college where i studied had 2mb shared between around 2000 students.
    But you need to consider the usage patterns, most ISPs will put way more than 2000 users on a single 45mb pipe, because the average user uses very little bandwidth. Your school clearly has a higher proportion of heavy users, and so it's bandwidth is more saturated.
    Do remember that this is a SCHOOL... It's purpose is to educate the kids, not to facilitate them playing games. They really have no obligation to support any use of the internet other than legitimate educational purposes.
    They could quite easily filter everything except HTTP, and require that you make and justify a request, via a teacher, for anything else.

    --
    http://spamdecoy.net - free throwaway anonymous email - avoid spam!
  13. Crazy? by spykemail · · Score: 5, Funny

    Wait a minute, you limited network usage for gamers in favor of academic users? Sounds like a pretty shitty school if you ask me. Everyone knows that school networks are for three things:

    1) Downloading music and movies illegally.
    2) Downloading pr0n.
    3) Playing games, even crappy ones like Halo 3.

    As you can clearly see homework and research are not on the list...

  14. Ok, that's it! by andr0meda · · Score: 2, Funny

    "Halo 3" should be arrested immediately, brought to justice and then executed. And his bastard parrents too, for naming their kid "Halo 3" in the first place, I mean come on!

    wait a min..

    --
    With great power comes great electricity bills.
  15. Ah, Doom by Dachannien · · Score: 4, Interesting

    Way back in the day, Doom's first implementation of multiplayer used broadcast packets to communicate amongst client machines. The university I attended was, at the time, home to the world's largest unswitched Ethernet. Doom's popularity led to the swift collapse of the entire network on a regular basis, since a broadcast packet would result in a response from every other machine on the network.

    id shortly thereafter patched the game not to use broadcast packets anymore. Once the cause of the network failures became apparent, playing the unpatched version of Doom became grounds for having your Intargopher turned off (we didn't call it the Intarweb back in those days, ya whippersnapper).

  16. It's not the students fault ... by ThirdPrize · · Score: 2, Funny

    it is the Covenants fault. They are trying to crash the internet ready for the next invasion.

    --
    I have excellent Karma and I am not afraid to Troll it.
  17. My school by Beowulf_Boy · · Score: 3, Interesting

    My school has a game design major, that I'm a part of.

    The internet in the dorms was shittacular. Horrible horrible service, and we had to pay 30$ a month for it.
    And, the IT department, when called out on this bullshit, couldn't even give us a break down on how our money was being spent.

    So, 3 years ago me and several friends sent an email out to everyone of importance around campus calling them out, basically saying it was bullcrap they advertise themselves as being all advanced at this university and having this gaming major, but the gaming major students can't even get online half the time in their dorms to play....games.

    Within several hours, most faculty was writing back and agreeing with us. We showed up at a meeting, and the head of IT didn't have anything together at all.

    Basically what happened was for a few months we could opt to be on a seperate network through the engineering department that wasn't managed by the IT department, but rather a professor in his spare time. And gasp, this network was far far superior and less buggy. It had 50% of the computers on campus on it, and 0% of the budget, yet still managed to be far more reliable.

    Then, after the next quarter passed, we were allowed to get outside ISP service in the dorms. Alot of my friends get adelphia internet access. I just chose to move off campus, I was tired of dealing with it. You still had to pay the IT department for their crummy connection, on top of paying another ISP.

  18. Re:My school's network sucks :/ by Xemu · · Score: 3, Insightful

    Do remember that this is a SCHOOL... It's purpose is to educate the kids, not to facilitate them playing games

    Humans have educated others through games since forever. Even chess is a strategy game meant to teach others about warfare. The military uses games even today to train soldiers how to behave in combat.

    Schools would be better if they used more games to educate their students.

    A smart professor could use Halo3 to teach about gender issues or the biology of human perception.

    --
    Tell your friends about xenu.net
  19. Its a Journal Entry by mobilesteve · · Score: 5, Insightful

    Journal written by fender177 (1125877) and posted by kdawson on Sunday September 30, @03:17PM

    I don't think this article was submitted as a story by the author. It looks like fender117 just posted a little story in his slashdot story, and kdawson stumbled upon it and decided to post it to the front page for some stupid reason.

  20. My Halo 3 story by suv4x4 · · Score: 5, Funny

    Recently I purchased one of the limited Halo 3 packages. It looked great. But the game wouldn't start! Upon further investigation I remember I microwaved the disk for 3 minutes for no particular reason whatsoever.

    I'm still pissed off though. Nowhere on the package it didn't say specifically about microwaving Halo 3.

  21. Re:TAGGED AS KDAWSONSUCKS by Nicholas+Evans · · Score: 3, Informative

    I must agree with this Coward. Some random university's network didn't have traffic shaping set up correctly. So? This is somehow newsworthy?

  22. UDP Packets by LordMyren · · Score: 4, Informative

    Just for the record, dropped (shaped) udp packets are not recovered. TCP/IP notices dropped packets, has them resent, and automatically lowers the connection's transmission rate, whereas with UDP you're just tossing EMP's into people's datastreams. UDP/IP is much more primitive, and relies on application level consistency checks, which, for the record, almost never ever ever monitor packet drops & throttle themselves down when packets start dropping. Thats why most packet filtering systems simply de-prioritize UDP and will not drop UDP.

  23. Since when is a single paragraph front-page worthy by Mex · · Score: 2

    There's no in-depth info, there's no link to an article, it's not a review, there's no real information.

    Seriously, editors, what the hell.

  24. What firehose? by supabeast! · · Score: 2

    Isn't the whole point of the firehose to keep garbage like this from getting posted?

    Or is this just the editors really reaching for a crazy anti-Microsoft rant? Maybe Vista is just so bad that people aren't even using it enough to write complaints and security screeds for /. to link to.

  25. So how's this newsworthy? by iguy · · Score: 2

    Is there an article behind this? Did this sysadmin do ANYTHING to prove or find what the real issue was?

    Sounds like the point is "It says Halo3 causing problems" so it must be newsworthy. If there was an article behind this explaining why this was an issue and had details such as Network graphs showing overloaded routers on the LAN or switches being overloaded or dropping UDP packets or something.. then we'd have something here.

    Instead all this says is NOTHING of value.

    --

    ----
    Just remove the spaces and do the intelligent thing to email me.