Slashdot Mirror


Comcast Hinders BitTorrent Traffic

FsG writes "Over the past few weeks, more and more Comcast users have reported that their BitTorrent traffic is severely throttled and they are totally unable to seed. Comcast doesn't seem to discriminate between legitimate and infringing torrent traffic, and most of the BitTorrent encryption techniques in use today aren't helping. If more ISPs adopt their strategy, could this mean the end of BitTorrent?"

537 comments

  1. solution by imbaczek · · Score: 5, Informative

    here

    iptables -A INPUT -p tcp -dport $TORRENT_CLIENT_PORT -tcp-flags RST RST -j DROP

    it's not mine so don't blame me. it's ugly, don't blame me. if it doesn't work, don't blame me. blame Canada.

    1. Re:solution by Nasarius · · Score: 1

      Ha! Comcast's method of "throttling" torrent traffic is sending RST packets, and hoping the client's TCP stack plays nice? Why? Why not just drop all associated packets once you've identified a TCP BitTorrent connection? I suspect that's what they'll do soon if this "solution" gets around.

      --
      LOAD "SIG",8,1
    2. Re:solution by Anonymous Coward · · Score: 4, Insightful

      But that would mean modifying all your routers -- which is [relatively] difficult for a large network. This solution is just an extra box plugged in at an appropriate point...

    3. Re:solution by Nasarius · · Score: 1

      Good point. Speaking as someone with virtually no experience with serious networking hardware, it would make sense to "modularize" the system a bit. Have a separate device or three to analyze traffic, and flag connections or addresses appropriately in case special handling is required. The routers would only be concerned with handling the flags they receive. Just a thought.

      --
      LOAD "SIG",8,1
    4. Re:solution by S.O.B. · · Score: 4, Funny

      The ISPs advertise it as "Retarded Way of Doing Shit(TM)"

      --
      Some of what I say is fact, some is conjecture, the rest I'm just blowing out my ass...you guess.
    5. Re:solution by Anonymous Coward · · Score: 0

      Oh yeah, that's great advice. Which dial-up provider do you suggest people switch to?

    6. Re:solution by FrivolousPig · · Score: 4, Funny

      AOL of course

      --
      ~ All comments automatically moderated -1 since 2004 ~
    7. Re:solution by Dopeskills · · Score: 1

      Could someone please explain what the above command does, and how to revert back if there is a problem?

    8. Re:solution by Brian+Gordon · · Score: 1

      I think it drops RST packets. That's supposesedly how comcast restricts traffic- by flooding open connections with RST so the clients close up.

    9. Re:solution by janrinok · · Score: 1

      Are you using BitTorrent on a dial-up connection? Sorry, I'm not American. I'm not sure if you are suggesting that only dial-up is available where you live, or that other than Comcast broadband there is only dail-up as an alternative.

      --
      Have a look at soylentnews.org for a different view
    10. Re:solution by Anonymous Coward · · Score: 5, Informative

      Could someone please explain what the above command does, and how to revert back if there is a problem?
      It's supposed to silently drop (-j DROP) incoming tcp packets (-A INPUT -p tcp) that have the tcp-reset flag set (-tcp-flags RST RST) and whose destination port is that of the BitTorrent client (-dport $TORRENT_CLIENT_PORT). See the iptables(8). The iptables rule cited by the OP, as written, is syntactically invalid. Whoever originally wrote it probably meant to write this instead: iptables -A INPUT -p tcp --dport $TORRENT_CLIENT_PORT --tcp-flags RST RST -j DROP To roll back the rule, you replace "-A INPUT" ("append to the INPUT chain") with "-D INPUT" ("delete from the INPUT chain"): iptables -D INPUT -p tcp --dport $TORRENT_CLIENT_PORT --tcp-flags RST RST -j DROP All this having been said, using these iptables rules is not a good idea. TCP resets happen all the time for useful and legitimate reasons; dropping them won't do you any favors.
    11. Re:solution by tepples · · Score: 1

      I'm not sure if you are suggesting that only dial-up is available where you live, or that other than Comcast broadband there is only dail-up as an alternative. If both the incumbent cable television company and the incumbent telephone company adopt policies that legally prohibit or technically inhibit file sharing, then dial-up is the only other choice short of upgrading to business class service.
    12. Re:solution by PhoenixFlare · · Score: 3, Informative

      or that other than Comcast broadband there is only dail-up as an alternative.

      Yes, this is the case for a lot of us in the US. If you're lucky, you have one of the other megalithic cable providers as an alternative, and maybe a DSL provider or two.

    13. Re:solution by rucs_hack · · Score: 1

      I was forced to use AOL for a year until last winter. Actually they're very good in the UK for bittorrent, I had no trouble.

    14. Re:solution by Anonymous Coward · · Score: 2, Funny

      Looks like instead of BT and sharing/seeding its time to go back to serious piracy with 0day ftp / irc botnets to hold my content. Here I was trying to play nice. I wondered why last week all my ratios went to shit with plenty of seeds.

    15. Re:solution by greyseal · · Score: 1

      That would be impossibly slow. Routers are designed to forward packets as quickly as possible, at line speed. Your suggestion would make that impossible.

    16. Re:solution by Seumas · · Score: 1

      Yes, this is how it is in America. There are two or three cable companies, but each has a monopoly on a region, so if you want to switch to a different cable provider, you'll also have to pick up and move to a new city or state. Most offer about 6mbps/376kbps or 8mbps/768kbps for about $55 or more.

      DSL is an option for a very small number of people, depending on how close they live to the telco office. If they're within spitting distance, they can get almost cable speeds of 7mbps. Otherwise you might get 144kbps or dialup speeds as you push out farther.

      Otherwise, your only option is dial-up. In which case you're paying both an ISP and the telephone company (that you would be paying for the DSL service to begin with, if they offered that speed at your address).

      So when people say "vote with your dollars", it's ridiculous. There are no options.

    17. Re:solution by shmlco · · Score: 1

      Yeah, it's not like they're doing routing table lookups and analysis on each packet now...

      Wait.

      --
      Any sect, cult, or religion will legislate its creed into law if it acquires the political power to do so.
    18. Re:solution by larytet · · Score: 1

      any UDP based protocol will solve the problem. For example ICMP tunnel or DNS tunnel are interesting options

    19. Re:solution by Zondar · · Score: 1

      Yes they are... in hardware. With custom ASICs. With tables set aside for wirespeed port lookups.

      It's not that the hardware can't do it, it's that there is 'handled at wirespeed by custom hardware' and 'handled at (much) slower than wirespeed by software'.

      Until someone goes to the trouble to develop routines and hardware to run it on that can handle that deep of an inspection and have it only drop the 'offending' packets, and have it do it at wirespeed, then your only challenge is to get it included in major pieces of the infrastructure that make up the internet.

    20. Re:solution by nightcats · · Score: 0

      This is serious: if we are "totally unable to seed," we will have no babies.

      --
      Development is programmable; Discovery is not programmable. (Fuller)
    21. Re:solution by DrCable · · Score: 1

      that will not work. you can't just drop those packets because you need the data in them to connect to the peer. you need to reforge the header and un set the RST flag then use the data in that packet.

  2. Why not charge by the GB delivered? by davidwr · · Score: 5, Insightful

    Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?

    Give all your customers your fastest residential speed. Set your rate so 90% of your customers don't exceed the "monthly allowance" for your low-end rate plan.

    For the other 10%, bill them on a pro-rated basis based on how much they use. If they use 2x the allowance, they pay 2x. If they use 100x, they pay 100x.

    To prevent runaway bills, allow customers to set their own "caps" and "throttle-down speeds" that would kick in after the cap was reached. If a customer never wanted to pay more than $20, he could set his "monthly cap" at 80% of what $20 would buy, and set the throttle-down rate low enough that he could never use up the remaining 20% even if he was maxing out his connection.

    This seems a lot simpler and fairer than traffic shaping by protocol.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:Why not charge by the GB delivered? by EveryNickIsTaken · · Score: 3, Funny

      Wouldn't this be a monumental pain in the ass to administer and enforce?

    2. Re:Why not charge by the GB delivered? by longword · · Score: 5, Funny

      We just have to invent some kind of "computational" device to automate the process...

    3. Re:Why not charge by the GB delivered? by erroneus · · Score: 4, Insightful

      It might also be construed as profiting from illegal behavior.

      But at least if they were to do something like that, they'd move closer to returning to "common carrier" status. Any interruption or prioritizing risks their losing that status.

    4. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?

      No - that model doesn't protect their television business model (which is threatened by BitTorrent+Set Top Box).

    5. Re:Why not charge by the GB delivered? by ovideon · · Score: 1, Informative

      Wouldn't this be a monumental pain in the ass to administer and enforce?

      It's already been done, and seems to work quite well.
    6. Re:Why not charge by the GB delivered? by Solra+Bizna · · Score: 1

      Joe Internet (apologies to anyone reading this named Joe) doesn't know or care enough about bandwidth or the Internet to set such an elaborate policy (which means very little gain for rather a lot of work on the ISP's end), and people who want to Torrent lots would just end up paying more for the privilege (which means they'd continue to soak up the bandwidth in spite of the measure). This is probably meant to increase the overall bandwidth for everyone (though it's not the best way per se).

      I'm the network administrator for a middling home network with a compulsive BitTorrent user (who will completely uncap at the slightest moment of hesitation on my part), a regular Second Lifer (who "camps" for money 8 hours a day while he does his real work, sucking up to 500 kilobits) and an Apple engineer who's constantly updating his builds of Leopard; and that's not even accounting for MY (relatively small, actually) bandwidth usage.

      If only I lived somewhere other than America, then we'd all have more than 1.5Mb to share between us. >_<

      -:sigma.SB

      P.S. parentheses much? I must think in LISP

      --
      WARN
      THERE IS ANOTHER SYSTEM
    7. Re:Why not charge by the GB delivered? by dpilot · · Score: 4, Insightful

      Do cable carriers even have common carrier status?

      If they do, throttling all bittorent is a clear violation.

      --
      The living have better things to do than to continue hating the dead.
    8. Re:Why not charge by the GB delivered? by atamido · · Score: 4, Insightful

      Wouldn't it be simpler to use transparent bittorrent caching? The cable modem endpoint lines would still be saturated, but their other lines would be fine. They would save bandwidth, and increase the quality of service.

    9. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Do cable carriers even have common carrier status?

      No, they don't. Nor do ISPs in general. At least, not if we're talking about the US which is the usual context. Other jurisdictions may vary. It's a Slashdot thing to worry about ISPs losing common carrier status when they don't have it; it's like people insisting that the rules of trademarks apply to copyright, you just have to get used to it.
    10. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      *Plus total data volume at 0.1 cents per MB.*

      1 dolar for 10MB

      450 dolars to donwload the latest fedora dvd iso.

      That seems fair...
      I have a 1mb connection and download an average of 100GB/mo. I'd be in for 10 GRAND in traffic fees.

      It's less expensive to legaly buy my warez....

    11. Re:Why not charge by the GB delivered? by lagfest · · Score: 1

      I don't think there's a single ISP that doesn't have that type of product. Some customers want flat rate, so they also provide that.

    12. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 3, Interesting

      Metered internet is the norm in Australia. Low-end plans give you around 5GB per month, high-end plans give you around 100GB per month.

      Given that traffic costs are 10-20 times lower in the US than in Australia, this would mean that US ISPs could easily offer "starter" plans with 50-100GB of downloads, and high-end plans with 1000+ GB per month.

      That way, big downloaders would pay for their usage, and there would be no need for shaping traffic and other nonsense.

    13. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      The problem is that telcos will charge way too much per GB in that case. Ah, the power of monopoly.

    14. Re:Why not charge by the GB delivered? by Crayon+Kid · · Score: 1

      It might also be construed as profiting from illegal behavior.


      What "illegal behavior"? The transfers are encrypted, how do they know what's transferred?

      Come to think about it, how do they even know it's BT traffic if you use full mandatory encryption? The only way I can think of is to spy on the tracker connections. Which can be also encrypted if the tracker supports HTTPS (why don't they, usually?) or via the Tor network.
      --
      i ate crayons when i was a kid and now i have two braincells and the blue ones taste nicer
    15. Re:Why not charge by the GB delivered? by erroneus · · Score: 1

      Sure AC suggests that ISPs don't have common carrier status which is why they have managed to successfully defend against all sorts of failure to censor suits and the like.

    16. Re:Why not charge by the GB delivered? by Obsi · · Score: 0

      They shouldn't even be fucking with this, if they're an "Internet service provider" as they claim, not an "online service" (aka walled garden) type of thing.

    17. Re:Why not charge by the GB delivered? by timeOday · · Score: 4, Insightful

      This seems a lot simpler and fairer than traffic shaping by protocol.
      There's no need for fixed transfer limits. And shaping by protocol is the problem, not the solution, since the content (including the protocol) is really none of the carrier's business.

      Timesharing CPU schedulers have been solving this problem better for, what, 45 years now? You don't look at the filename of the executable somebody is running to see if you will schedule it. You don't suddenly kill their process if they exceed 60 seconds of CPU time. Instead, you simply de-prioritize "cpu hogs" - or in this case, bandwidth hogs. If you are a bandwidth hog, your "prime time" bandwidth should fall very low - lower than others who *only* use bandwidth at that time - but at 3am it should ramp up again, since you're only "competing" with other bandwidth hogs.

    18. Re:Why not charge by the GB delivered? by fredklein · · Score: 1

      Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?


      WOuldn't it be simplest for the ISPs to not offer "unlimited" service when they obviously have limits?

      Give all your customers your fastest residential speed. Set your rate so 90% of your customers don't exceed the "monthly allowance" for your low-end rate plan.


      And, after the top 10 percent are limited by this, re-calculate. Repeat each month until everyone is at dial-up speeds! (and paying for broadband!)

    19. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      I really wish people on slashdot would stop propagating this falsehood, INFORMATION SERVICES IN NO WAY HAVE COMMON CARRIER STATUS.

      http://www.cybertelecom.org/notes/telecom_carrier. htm

              (C) does not include--

                      (i) persons or entities insofar as they are engaged in providing information services; and

      People keep saying this, but the rhetoric continually gets regurgitated...

    20. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      It's still quite easy to identify encrypted BT despite the various obfuscation attempts by the clients.
          -- One from the other side

    21. Re:Why not charge by the GB delivered? by janrinok · · Score: 2, Informative

      The people who manage the Tor network specifically ask you not to use it for BitTorrent. Mind you, it confirms that you are downloading something illegal, because otherwise you would simply use Torrent as it is muchfaster than going via Tor.

      --
      Have a look at soylentnews.org for a different view
    22. Re:Why not charge by the GB delivered? by Crayon+Kid · · Score: 2, Interesting

      Not for transfers, only for tracker connections. And I wouldn't have to do this if the ISP's wouldn't force me too. They don't seem to care what I download via BT, only that I'm using it.

      --
      i ate crayons when i was a kid and now i have two braincells and the blue ones taste nicer
    23. Re:Why not charge by the GB delivered? by ArbitraryConstant · · Score: 1

      "Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?"

      Unacceptable. They wouldn't be able to advertise their service as "unlimited".

      --
      I rarely criticize things I don't care about.
    24. Re:Why not charge by the GB delivered? by Znork · · Score: 2, Insightful

      "Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?"

      Sure it would be simpler. And even better, it'd give the local netbourhood thugs a really great business opportunity. Either you pay up to them, or they flood your pipe and you get to pay up to your ISP.

      Metered access is not something you want when anyone in the world can make your meter run.

    25. Re:Why not charge by the GB delivered? by janrinok · · Score: 1

      I stand corrected, and my apologies for casting a slur on your browsing habits......

      --
      Have a look at soylentnews.org for a different view
    26. Re:Why not charge by the GB delivered? by nurb432 · · Score: 1

      Do you want to pay per use on top of your access charge like we all did in the early days of dialup? ( or are you not old enough to remember CompuServe or Genie ? )

      Personaly, i dont. Especially when spam/popups/worms/DoS, etc are all so common these days. I wouldn't want to get hit with a charge because of others. If the ISP cant handle the bandwidth sold, they shouldn't have sold it in the first place.

      And i think this is the future of all connections, all bandwidth traffic will just be throttled dwown to where all you get to do is read your ISP sponsored advertisements. "thanks for choosing xyz, and here is a message from our sponsors".

      --
      ---- Booth was a patriot ----
    27. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Sure AC suggests that ISPs don't have common carrier status which is why they have managed to successfully defend against all sorts of failure to censor suits and the like.

      Well Erroneous, if that is your real name rather than an unusually accurate nickname, are you able to cite a single case that holds that ISPs are common carriers or are you just spewing crap?

      OF course, I already know the answer. It's unlikely that you would make such claims if you knew anything at all about this subject. What confuses me is why, presumably being aware that you know nothing about it, you make stuff up like this.
    28. Re:Why not charge by the GB delivered? by MindStalker · · Score: 1

      Yes cable don't have classic Common Carrier status, otherwise they would be forced to wholesale their lines. They do though have DMCA exception as a common carrier which monitoring may or may not effect that execption, IANAL

    29. Re:Why not charge by the GB delivered? by wakingrufus · · Score: 2, Funny

      Hello Verizon

    30. Re:Why not charge by the GB delivered? by Firehed · · Score: 1

      Sounds good enough to me, even if I'd be forced into the 1TB plan. I just checked my usage, and apparently I've burned through over 50GB of bandwidth in the past four days (and all I've downloaded from Bit-torrent is a couple TV shows). Although come to think of it, that includes local network traffic as well as internet, and I offload almost all of my media to a fileserver which means at least the complete file size in and out. That said, seeding rules couldn't hurt, as I think 6:1-9:1 is probably a bit wasteful if I had anything else to do with my bandwidth.

      --
      How are sites slashdotted when nobody reads TFAs?
    31. Re:Why not charge by the GB delivered? by ScrewMaster · · Score: 1

      The confusion comes in because the traditional telcos are common carriers, but only so far as their phone service is concerned. So-called "data services" (even if provided by a telephone company) are exempt, as I understand it.

      --
      The higher the technology, the sharper that two-edged sword.
    32. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Isn't the problem not the total bandwidth downloaded, but rather too much being downloaded at the same time therefore creating a bottleneck?

      Maybe the best solution would be to create prioritization, with all things having highest prioritization, with filesharing having the lowest prioritization. But only during peak hours.

    33. Re:Why not charge by the GB delivered? by dnahelix1 · · Score: 1

      Sweet. So if it's profiting from illegal behavior, can't we get them in some kind of conspiracy thing and have the cable companies brought down so we can actually get some competition?

    34. Re:Why not charge by the GB delivered? by BVis · · Score: 1, Interesting

      Mind you, it confirms that you are downloading something illegal, because otherwise you would simply use Torrent as it is muchfaster than going via Tor.
      Bullshit. Using TOR is not an admission of illegal behavior. TOR has plenty of legal uses, to the point that the FBI and other federal investigative agencies use it on a daily basis. I actually ran into the TOR guys at a conference at Harvard, and asked them about how much abuse they must get from less enlightened members of the LEO community. They told me that they and law enforcement have a civil, even productive, relationship.

      Personally, maybe I just don't want people to know that I'm shopping for towels online (or, for that matter, downloading Ubuntu). Maybe I don't think it's anyone's business. Maybe I believe in an ABSOLUTE right to privacy. There's nothing illegal about trying to ensure your own privacy using technology. It sounds to me like you're the kind of person that would like to see hammers outlawed because you MIGHT use one to kill somebody.
      --
      Never underestimate the power of stupid people in large groups.
    35. Re:Why not charge by the GB delivered? by jumperboy · · Score: 5, Insightful

      Because, ultimately, the end user has little control over how much bandwidth they use. A Pandora's box was opened when the Internet was targeted as a way to deliver rich multimedia instead of text. Even the links featured on /. are usually a few bytes of content surrounded by many kilobytes of ads, spread over multiple pages. Compared to analog television and telephony, the quality of online video and voice communications is horrendous, but demand is only a tiny fraction of what it's going to be. The ISPs promote multimedia heavily when they sell connectivity, so they're just as culpable as the content providers. Throttling bandwidth at today's poor quality is not going to be a satisfactory solution for consumers. Increasing capacity is the only solution. I have a family of four, and when each of us want to experience the rich content we were promised (like VOIP, online productivity applications, video-on-demand, and streaming music), you're going to call us bandwidth hogs? I don't think so.

    36. Re:Why not charge by the GB delivered? by janrinok · · Score: 0, Redundant

      No, please calm down. i know that Tor has lot of valid uses - I am a frequent user of it and have been since I was employed by my government. Even though I am now retired I can still see its benefits. But using it for torrents is not a good use because it affects more than just yourself, so much so that the people who support it ask you not to do so. But feel free to ignore them - your purchase of towels or downloading of Ubuntu is much more important than that of those who might have to use it professionally, you know, such as the FBI and other federal investigative agencies. And not only American ones, at that. Gosh, what a big wide world we live in..... No offence meant, but some obviously taken.

      --
      Have a look at soylentnews.org for a different view
    37. Re:Why not charge by the GB delivered? by Sentry21 · · Score: 1

      Give all your customers your fastest residential speed. Set your rate so 90% of your customers don't exceed the "monthly allowance" for your low-end rate plan.


      This is actually what my company does. Our biggest package is 60G of transfer per month, and our biggest bandwidth 'abuser' transfers about 300G per month. The company has never said anything, though, because since we buy a fixed amount of bandwidth at a fixed price, and most users don't use their share, the end-users that blow past their cap by five times are golden.
    38. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      why they have managed to successfully defend against all sorts of failure to censor suits and the like?

      Because the laws (like the safe harbor part of the DMCA) are specifically written to not apply to them. The telcos worked really hard to beg the government to remove their common carrier status and create an "information service" designation because common carrier is more than "lol, i won't open your mail", it's uptime and delivery guarantees, among a number of other regulations.

      Also, if they were a common carrier, breaking the regulations wouldn't make them "lose" their common carrier status, it'd mean jail time and fines, just as would happen to some guy who decides to go through your mail for the fun of it.

    39. Re:Why not charge by the GB delivered? by BVis · · Score: 1

      But using it for torrents is not a good use because it affects more than just yourself, so much so that the people who support it ask you not to do so.
      And the fact that it affects more than just me is what the problem is, not what I'm doing with it. Don't get all indignant with me because I'm standing up for the fact that I see privacy as a RIGHT, not a privilege. Are you telling me that I don't have a right to keep what I'm downloading confidential, because some assholes think that if I'm protecting my privacy I must be doing something wrong?

      You bet I'm offended. And we're not just talking about the CONTENT of what I'm downloading; maybe I don't want the powers that be to know about the conversation at all. TOR obfuscates more than content, it obfuscates paths of communication as well. The government doesn't need a warrant to know who you're contacting on the Internet, it only needs one to determine what the CONTENT of that conversation is (and lately, they don't even need that, since the evidence they collect will never be used in court, and therefore its inadmissibility is moot.) It's MY business and none of theirs, or of yours.

      You're probably thinking "So what, you're buying towels or downloading Ubuntu, what do you care if someone knows?" Maybe I don't want them to know. Sure, it's arbitrary, but it's a very slippery slope to start with "Oh it's ok if someone knows I'm doing x or y, what's the problem?" The problem is, you've given up a right and set a precedent; a precedent that erodes everyone ELSE'S rights. And THAT, more than my downloading Ubuntu via TOR, is what causes the damage.
      --
      Never underestimate the power of stupid people in large groups.
    40. Re:Why not charge by the GB delivered? by janrinok · · Score: 1

      True, its none of my business, until some people overload Tor by using it for torrents, despite being asked not to do so. It was not my intention to offend but if you view your privacy as something more important than lots of other Tor users then perhaps you are right to be offended. I didn't realise that you were so much more important that the rest of us.

      --
      Have a look at soylentnews.org for a different view
    41. Re:Why not charge by the GB delivered? by mrchaotica · · Score: 1

      Wouldn't that only work if multiple customers were attached to the same swarm? In my experience, swarms tend to be in the tens of people range, distributed all over the world -- I think it's highly unlikely that anybody would be on the same network.

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    42. Re:Why not charge by the GB delivered? by thanatos_x · · Score: 2, Insightful

      I have to say that sounds like a much better idea... Although no one wants to be marketed something with the idea of '30 gb transfer/month' or something. The average American doesn't understand this, and they want unlimited. They may never go over 10 gb, but they don't want 30, they want unlimited, even if the unlimited is 20 gb/month

      Also you'd have people saying 'I'm only using 40% of my bandwidth/month. I want a cheaper plan!', and the cable companies wouldn't want to give it to them since they are the most profitable customers.

      Theoretically your approach increases people's awareness of what they pay and allows for a more accurate use of marginal consumer/producer surplus. As I mentioned though I'm fairly certain they'd lose more by billing the average American less and the few massive p2p users more.

      Of course they could just upgrade the 'tubes' and then care less about p2p traffic, but that's a discussion for another slashdot story...and another...

      --
      I am not an expert. If I am misled in something, please correct me.
    43. Re:Why not charge by the GB delivered? by morcego · · Score: 1

      They don't seem to care what I download via BT, only that I'm using it.


      Which is obvious. Why should they care what you are transferring ?

      Do you really think that what Joe pays for a 4Mbps connection really PAYS for a full 4Mbps connection ? Go and see how much it costs if you collocating and need 4Mbps.

      It is all marketing. They sell X and expect you to use much less than that. If you try to use it all (or even half of it), they loose money. So the only thing that interest them is that by using BT, you are consuming a lot of bandwidth and generating a lot of traffic.
      --
      morcego
    44. Re:Why not charge by the GB delivered? by yabos · · Score: 1

      Bell Canada is doing this with their new customers. Luckily I'm on the older plan and still have unlimited. I dare not change anything otherwise I will be stuck with a 60GB transfer limit with a price of $2/GB which is a rip off considering how Bell has a nation wide network and pays very little per GB.

    45. Re:Why not charge by the GB delivered? by yabos · · Score: 1

      That could work if the network is over capacity at that time but if the low usage person is not doing much at the time the high usage person is then the high usage person being limited would be for artificial reasons, not that the other users are impacted.

    46. Re:Why not charge by the GB delivered? by atamido · · Score: 1

      I'm guessing that it would be easier to detect a cacheable source if it comes from the same .torrent file, however I don't see why you couldn't check all .torrent files to see if the checksum matched.

      Granted, not every file that is cached is going to be useful, but there are a few reasons might be useful.

      1. It stands to reason that people in geographically close areas are more likely to want similar files. Two random people in Oregon are more likely to like the same band or type of music than people from two different countries. So if you have 100 people that want to bittorrent an album, the chances are fair that 2-10 of them could reside on the same network.

      2. It's also difficult to tell exactly how many times a certain file is downloaded. I opened up thepiratebay.org and looked under recent files. I pulled up a file that listed 288 seeders and 65 leechers. Above that it listed that it had been downloaded 65 times. I'm just guessing that if you have 288 seeders, and only 65 total downloads, your numbers are waaaaaay off.

      3. Many (possibly most) people close the torrent when they are done downloading. This, combined with the above, makes it difficult to tell who exactly has grabbed the torrent, and if they are on the same network as you.

      4. Bittorrent traffic supposedly accounts for about 35% of all internet traffic. What do you suppose is the amount of bittorrent traffic on a network that is downloaded by at least two people? Let's say 15% (a rather conservative number IMO). That's means caching would save 5% of all traffic they have to get from other networks. That's good for peering agreements.

      5. Uploading on a cable modem is bad. The transmissions are asynchronous and uploading 1MB takes several times the available transmission time on a cable as downloading 1MB. A couple of people uploading in a single node can create serious latency/bandwidth issues for everyone else connected to the node. Anything a person had downloaded via bittorrent could be cached, and proxied the opposite direction, removing the strain on the cable modem infrastructure.

      6. You can build a 10TB array for less than $20K USD pretty easily (easily because it would be a non-critical system). A $20K investment is minuscule in the telecom world for what it might be able to do.

      Bittorrent caching might not make an impact for an ISP, but that's a dangerous assumption. There are a lot of reasons it might make a huge impact for an ISP, and it is certainly something that they should be exploring.

    47. Re:Why not charge by the GB delivered? by funchords · · Score: 1

      Their concern, I think, is that their cache would collect copyright-protected works -- making Comcast a target in the fight against piracy.

      If they don't provide a P2Pcache, they don't have this headache.

    48. Re:Why not charge by the GB delivered? by compro01 · · Score: 1

      i believe they used to be common carrier, but then got switched to being "information services" fairly recently, which is when the whole net neutrality stuff started becoming an issue, as common carrier provides for that, but information services does not.

      --
      upon the advice of my lawyer, i have no sig at this time
    49. Re:Why not charge by the GB delivered? by Fulg · · Score: 1

      They wouldn't be able to advertise their service as "unlimited".
      Nonsense! Observe:

      Subscribe to our unlimited* service!

      (*) service not actually unlimited

      Maybe it's different in the states, but here in Canada every ISP has been pulling the "unlimited" advertising stunt for as long as I can remember. Before it was in hours connected (for dialup), now it's in bandwidth usage...

      I was lucky enough to have a real unlimited account with my local ISP (Videotron), but through the magic of small print and open TOS aggreements, they just redefined "unlimited" to mean "100GB/month" this week.

      It's sad that "unlimited" now means "some seemingly big number to dupe people into subscribing".
      --
      gcc: no input sig
    50. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Sure - if only BitTorrent were set up in a way to make that even remotely possible. Unfortunately it's instead written to act as if it were a DDOS bot-net. (BitTorrent makes absolutely no attempt to find peers on the local network. Even better, since peers are discovered through a tracker, it becomes essentially impossible to do it!)

      Ask any net admin who's dealt with BitTorrent on their network. Personally, I applaud Comcast for finally banning BitTorrent. I did years ago.

    51. Re:Why not charge by the GB delivered? by piojo · · Score: 1

      Do you want to pay per use on top of your access charge like we all did in the early days of dialup? ( or are you not old enough to remember CompuServe or Genie ? )

      Personaly, i dont. Especially when spam/popups/worms/DoS, etc are all so common these days. I wouldn't want to get hit with a charge because of others. You should have to pay for that. In every other arena, if you are careless with your property and someone else takes control of it, you will be stuck with the bill. Credit cards seem to be an exception, but only because the bank finds it profitable to agree to sometimes eat a fraudulent charge. There is no reason why computers are an exception.
      --
      A cat can't teach a dog to bark.
    52. Re:Why not charge by the GB delivered? by PunkOfLinux · · Score: 1

      Ugh... a local ISP (westpa.net) has their broadband service here... Their limit is 4GB a MONTH. The charge for exceeding that is 10 dollars/GB or partial GB over the limit. Jesus, in a week of running azureus, I racked up nearly 100 GB of transfers!

    53. Re:Why not charge by the GB delivered? by ccguy · · Score: 0

      Wouldn't it be simpler for the telcos to charge per GB delivered in addition to the size of the pipe?
      Simpler maybe, but you would go back to the times where people actually paid for spam and ads.
    54. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 0

      Subscribe to our unlimited* service!

      (*) service not actually unlimited
      That's what they do in Australia:

      "Subscribe to our unlimited* service!
      (*) service shaped to 64KB/s after you download 12GB in a month"
    55. Re:Why not charge by the GB delivered? by vacuum_tuber · · Score: 1

      Wouldn't this be a monumental pain in the ass to administer and enforce?

      Yeah, to operate it and make it seamless and no pain in the ass whatsoever it would probably require the use of something like, oh, maybe a COMPUTER.

      --
      Look at the bright side: there's always seppuku.
    56. Re:Why not charge by the GB delivered? by nurb432 · · Score: 1

      Excuse me?

      How is me getting bombarded by ad popups when i go normal 'legit' news sites *my* fault?

      How is me getting hit with a DoS *my* fault? How is me getting hit with 10000's of spam email's a day *my* fault? First of all, I never said *I* was infected. We all feel the pain of others that are infected.

      If my car comes with a fundamental technical defect beyond my understanding, is it my fault the manufacturer sold me a broken car? How is that different then a PC? This is a similar situation with 99% of the users out there and their PC. They cant be expected to understand the technical risks, the vendor should prevent the problem from the beginning.

      --
      ---- Booth was a patriot ----
    57. Re:Why not charge by the GB delivered? by Anonymous Coward · · Score: 2, Informative

      Ok. Let's face it. I work at an ISP (in the US) and am in charge of blocking stuff, writing all the policies and making sure they adhere to our TOS and don't collide with the whole CALEA thing.

      What we use to do this in unimportant for this discussion. What is important is that noone on these board is acknowledging the issues that ISP's face when users run amok with BT on their network.

      As a result, this is what we do. We also inform the user this is what we do (openly) as part of our TOS, so since they agree to it, there is no cause for recourse. They can always go somewhere else.

      1. Block BT servers (cannot host, including trackers, as a server on our "residential" customer network).
      2. No caching. Caching is a legal issue since we are holding copies/replicas of files we don't have the rights to have on our systems.
      3. THROTTLE. Yes, we demote these protocols and provide a slower throughput. Since thousands of our users are college kids, they will use EVERY BIT we give them for whatever they want. What they don't have is the brain cells to understand how these (BT) applications work, we "think" for them. It reduces greatly the number of calls we get when they complain about throughput (shut down BT and see it works fine!).
      4. We demote certain "protocols" (regardless of port) as being less sensitive to time than others (you tube or streaming media takes precedence over BT, etc.).
      5. We don't BAN BT altogether, though sometimes I wish we would. The resources (thousands of momentary connections) it uses to download a very small amount of data is rather wasteful on routers and their CPU's for the gain it offers.

      We approach this differently for commercial customers. Since EVERY ISP in the US has a TOS for residential customers about NOT HOSTING files without an agreement, BT servers are also a cause to block, demote or ban altogether. It's also meaningful to note that we haven't received any more emails from HBO, Sony or the RIAA to ask for our users information, which was happening on a daily basis and thus our legal costs have dramatically reduced since we implemented this policy.

      Number of calls we are not getting due to bandwidth issues - 150 less per day
      Number of calls we get about BT not working - ZERO
      Number of customers we have lost - ZERO
      Cost for having a system that is capable of doing this - around 100,000.00
      Amount we can add to the subscribers monthly bill for doing this - ZERO

      ISP's have it upon themselves to decide this kind of thing and make the best choices as it relates to their "masses". What the subscriber can do is leave and go find another ISP if they don't like the one they have. One subscriber complaining he can't seed a file does not make a business case to open the network to the issues it creates.

      If you want to "host" files, get a commercial ISP connection. Problem solved.

    58. Re:Why not charge by the GB delivered? by ArbitraryConstant · · Score: 1

      "Nonsense!"

      Precisely. Stating bandwidth limits and overage charges upfront is not "unlimited", but sneaking in a bunch of throttling and limitations lets them continue to claim it's unlimited.

      --
      I rarely criticize things I don't care about.
    59. Re:Why not charge by the GB delivered? by Hal_Porter · · Score: 1

      You know that the people who run Tor specifically ask you not to use it for bandwidth intensive stuff like downloading Ubuntu, right?

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    60. Re:Why not charge by the GB delivered? by jsebrech · · Score: 1

      To prevent runaway bills, allow customers to set their own "caps" and "throttle-down speeds" that would kick in after the cap was reached. If a customer never wanted to pay more than $20, he could set his "monthly cap" at 80% of what $20 would buy, and set the throttle-down rate low enough that he could never use up the remaining 20% even if he was maxing out his connection.

      Been there done that. In my country (belgium) they've been doing it this way since the turn of the century. I currently pay 30 euro for 30 gb / month on 6 mbit ADSL (+ 6 euro for the phone line). Every extra gb costs me 0.25 euro, up to a maximum of 100 gb, at which point they rate-limit me (or lower if I choose to not allow extra volume). The rate-limiting puts you on an 8KB/sec connection, which is too slow for any major downloading, but still enough to check your email and do some light browsing.

    61. Re:Why not charge by the GB delivered? by piojo · · Score: 1

      How is me getting bombarded by ad popups when i go normal 'legit' news sites *my* fault? Well, you initiated a request for those web sites, and your browser proceeded to issue requests for ads. If you don't want that, then you need to think of a new way to browse the web. The current paradigm allows content providers to push content to you. Unless you use NoScript or an evil popup blocker. These are new paradigms.

      How is me getting hit with a DoS *my* fault? How is me getting hit with 10000's of spam email's a day *my* fault? First of all, I never said *I* was infected. We all feel the pain of others that are infected. I get a reasonable amount of spam--my university makes my e-mail address available without any authentication. The biggest spam message I have gotten in the last 6 months is 44KB. That's pretty big. It's 1-2% of an mp3, though. 90% of my spam is less than 10KB, with the mode being around 3KB. If that puts you oven your bandwidth quota (probably doesn't, yet), we need a new paradigm for e-mail. This might mean a client that performs probabilistic reasoning (guessing) on just the message headers, and does not download a message unless it is determined not to be spam, or if you attempt to open the message.

      As for DoS attacks, I don't have a pretty solution. Extortion and this type of crime is terrible. I see a business opportunity here, though. Some sort of union / insurance that would pay for essentially unlimited elastic storage for anyone that's currently being DDoS attacked?

      If my car comes with a fundamental technical defect beyond my understanding, is it my fault the manufacturer sold me a broken car? How is that different then a PC? This is a similar situation with 99% of the users out there and their PC. They cant be expected to understand the technical risks, the vendor should prevent the problem from the beginning. Can't be expected to understand the technical risks my ass. Many don't understand the technical risks of credit cards. They still pay the price. Here's a hint: if they had to pay for their lack of understanding sometimes, they would understand it fast.
      --
      A cat can't teach a dog to bark.
    62. Re:Why not charge by the GB delivered? by nurb432 · · Score: 1

      Ads: Better solution to the ad bandwidth usage is to charge the people pushing the ad more. ( yes i know the charge will filter down to the conusmer ). if the charge is high enough the overly bloated ad campaigns will end.

      Spam: Im speaking a a higher level up the food chain in this case, you may not actually see the spam, bt your university does. Even if its filterd out for you at the user level , the bandwidth was still wasted. I have this problem with my persoal dmain. And yes, 10000 a day isnt uneard of. At my office ( different domain ) we see 10x that on a daily basis. ( but with 30000 users, thats to be expected )

      DoS: ya, hang em! But its still a potential hit on my cable bill if we goto a pure charge per use..

      Tecincal understanding: Sorry, i dont agree. Its far too much to ask for non techincal people to understand something they shouldn't. In your proposal you would demand that people understand their cars, homes, electrical power generation, pretty much everything in their lives. Thats why people use 'service providers'. They 'service guy' is expected to understand the inner workings. While something may be 'self apparent' and easy to learn to you, it may not be for them ( nor should it ). And i bet there are many things you dont understand either. Do you want to be held liable for it? Holding the trained service provider liable beyond any low level of 'common sence' would be the correct way, like we do now for drivers licenses. We hold Ford liable on the technical end to sell us safe cars, or the local power grid not to melt our house by accident, or the bank not to give away our money to the wrong people, or how about the doctor to not cut off the wrong body part in surgery..

      --
      ---- Booth was a patriot ----
    63. Re:Why not charge by the GB delivered? by Cramer · · Score: 1

      Not at all. There are ISPs all over the world already doing this -- and have been for a very long time.

    64. Re:Why not charge by the GB delivered? by davidwr · · Score: 2, Interesting

      Number of customers we have lost - ZERO Unless you have not lost any customers at all for any reason since implementing this you can't know this. You can't know a customer's mind and if you survey him he might lie.

      If you are an ISP of any significant size you lose customers every day for competitive and other "normal" reasons.

      You also don't know how many would-be customers rejected you when they read your policy.

      Finally, will you allow each and every one of your residential customers to convert to a commercial account on request, without any geographic or "are you really a business" or other restrictions?

      Is your commercial package actually affordable, i.e. no more than 5x the residential price for similar bandwidth? If your consumer price is $30 and your commercial is $300, that's not exactly a realistic offering for consumers.
      --
      Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    65. Re:Why not charge by the GB delivered? by GWBasic · · Score: 1

      It might also be construed as profiting from illegal behavior.

      ...Or as a better alternative to 'Net Neutrality. When a customer uses a high-bandwidth site, like YouTube or NetFlix, (s)he pays more. Electricity is sold in a similar way! When you buy electricity, you pay for what you use, not what you connection is capable of carrying.

      In such a scenario, the ISP wins because it gets to profit when people use bandwidth-intensive applications; and the customer benefits because (s)he can access any site, service, and protocol. The customer also benefits because competition will force ISPs to compete to lower prices, thus allowing more consumption of bandwidth.

  3. Because encryption = admission of wrongdoing by Anonymous Coward · · Score: 0, Insightful

    and most of the BitTorrent encryption techniques in use today aren't helping.

    Really? So we'd be much better off if we didn't encrypt traffic, because then Comcast could easily monitor all our online usage. That sounds like a much better solution, eh?

    1. Re:Because encryption = admission of wrongdoing by immerrath · · Score: 1

      they aren't helping to get around the shaping.

  4. So THAT's what happened... by Nero+Nimbus · · Score: 5, Interesting

    I thought it might be some obscure router setting, but I've been having this problem for a few months. Since I barely download things anymore (re: Linux ISOs), it hasn't affected me nearly as much as it would have, say, 2 years ago. Still, this entire situation is pretty ridiculous. Comcast basically says "You can get this speed for $xx.xx a month! It's Comcastic!" but then they act like a bunch of little girls when somebody actually uses what they're paying for. For that reason alone, The guys in suits just want to be able to milk their current infrastructure for longer, and I don't have any sympathy for them. What I find funny about this is that broadband probably wouldn't have gotten as big as it is right now (At least in the U.S.) without warez. Stop and think about how many of your local broadband ISPs were pushing the ability to get music, movies, and games more quickly a few years ago. Comcast was doing that back before legal download services got big. It's like they baited us with the promise of more warez in less time, and now that we're locked in, they want to screw everybody.

    1. Re:So THAT's what happened... by QuietLagoon · · Score: 4, Interesting
      There is a looming problem with the amount of bandwidth available via the cable companies' aging infratstructures. Comcast has oversold the bandwidth its infrastructure can provide, now Comcast has to figure out how to deliver the promised bandwidth wile annoying the fewest (or only the least important) customers.

      Blocking BitTorrent traffic is an easy way to reduce traffic. It doesn't affect anything important (from Comcast's point of view).

      It is a short-sighted decision, at best, and is typical of Comcast's damn the customer approach to customer service.

    2. Re:So THAT's what happened... by Brian+Gordon · · Score: 1

      BitTorrent traffic is a significant percentage of all internet traffic.. so they just decide to free a third of their infrastructure at a sweep? Do these people even realize that the reason bittorrent uses so much bandwidth is because so many paying customers USE it? And what are they paying for anyway.. $50/month only buys me 50KB/s and some 300GB or so cap (comcast just drops your account if you use more than a few hundred gigs)... why shouldnt I be able to use what little bandwidth they meter me for whatever I want? If I paid for 50KB/s then what on earth does it matter if I download a linux iso over the http protocol or the bittorrent protocol? This is a ridiculous situation- how do they just arbitrarily decide which protocols they don't want their customers using? If someone makes up a slightly different protocol called BT2 would ISPs still block it?

    3. Re:So THAT's what happened... by QuietLagoon · · Score: 1
      BitTorrent traffic is a significant percentage of all internet traffic.. so they just decide to free a third of their infrastructure at a sweep? Do these people even realize that the reason bittorrent uses so much bandwidth is because so many paying customers USE it?

      Look at the BitTorrent traffic as the percentage of customers paying Comcast the monthly fee, not as the percentage of traffic. While I freely admit I am making up the following numbers, but just bear with me for discussion purposes... What if BitTorrent consumes 40% of Comcast's bandwidth, but BitTorrent is used by only 5% of Comcast's customers (i.e., accounts for only 5% of Comcast's ISP revenue). Wouldn't the loss of that 5% of their ISP customer revenue be worthwhile from an accounting viewpoint, if it indeed frees up an extra 40% of bandwidth, making that bandwidth available for profitable HD TV channels?

      The bottom line is that Comcast needs to make room for more HD TV channels on their cable, and the easiest, most cost-effective way to do that is to kill off the unprofitable BitTorrent traffic.

    4. Re:So THAT's what happened... by FireFury03 · · Score: 4, Insightful

      This draws fairly interesting parallels with Tiscali and TalkTalk complaining about the Beeb's iPlayer here in the UK.

      They sold internet connections at lower than cost of the bandwidth, betting on the customers not using anywhere near their bandwidth entitlement. Then the BBC produced iPlayer, which is encouraging people to use up more of their bandwidth and thus causing the ISPs to make a loss. So the ISPs are demanding that the BBC pay them to cover the shortfall.

      To cut a long story short: the ISPs underpriced their connections and advertised them as "unlimited", were caught out when people actually tried to use what they had paid for and are now demanding that a third party bail them out of their mess. I certainly hope the BBC tell them to go screw themselves - I'm not going to be happy if part of my licence fee goes to propping up idiot ISPs who can't deliver on their commitments.

    5. Re:So THAT's what happened... by bluephone · · Score: 1

      That's not how it works though. Internet service is provided on a few channels of the bandwidth, and those channels can't be used for aything else regardless of whether or not they're being used. If every customer did nothing but email, they'd be using, say, 5% the alloted bandwidth, but from the perspective of the cableco, they're still 100% off limits. Throttling BT doesn't helpd putting in more HD channels, otherwise during network use spikes other people's tv channels would crap out. This is nothing but keeping people from using what they're paying for because the suits don't want to spend on the network. They've OVER over-sold far beyond the sweet spot. In the dialup days, you needed one modem for every 2.5-3 users. AOL sometimes had ten or twenty users per modem, hence their infamous busy signals at peak time.

      --
      jX [ Make everything as simple as possible, but no simpler. - Einstein ]
    6. Re:So THAT's what happened... by FireFury03 · · Score: 1

      What if BitTorrent consumes 40% of Comcast's bandwidth, but BitTorrent is used by only 5% of Comcast's customers (i.e., accounts for only 5% of Comcast's ISP revenue). Wouldn't the loss of that 5% of their ISP customer revenue be worthwhile from an accounting viewpoint, if it indeed frees up an extra 40% of bandwidth

      Not necessarilly. It only makes sense if the cost price of that 40% of their bandwidth is higher than that 5% revenue.

      You can always find a bunch of people using a disproportionate amount of bandwidth - once you've got rid of the bittorrent traffic the "average bandwidth used" across the network is going to be reduced. Then you might find that people who play games use a greater than the average amount of bandwidth used. So you kick off all the gamers, the average will drop again and then you can select a new group who's using more than average - eventually you're going to be left with an ISP that refuses to cator for anyone who is doing anything more than SSH.

      The solution, which a lot of UK ISPs are now moving towards (especially the smaller ones, who aren't goverened by moronic marketting people quite as much as the big ones) is to stop selling "unlimited" accounts - sell several different grades of account with clearly defined bandwidth limits. The people who use a lot of bandwidth therefore have to pay more than those who are just doing a bit of light web surfing and so the high bandwidth users cover their own costs rather than being subsidised by everyone else.

      Take a look at UKFSN's prices for example. If you're a low usage user, you get their basic package which allows 3GB a month in the "peak" hours and 30GB a month at all other times. If you want to run BitTorrent 24/7 you can pay more and get 150GB peak, 420GB off-peak (and various packages in between). The limits are clearly defined and what happens when you exceed them is also explicitly defined (you get bumped up to the next price band for a month and get a 5ukp charge on top).

      Sadly a lot of ISPs seem to consider BitTorrent to be an easy target for cost savings. I'm a big fan of traffic shaping - it keeps my SSH and VoIP stuff usable while someone's hammering away with BitTorrent. However, IMHO traffic shaping should only come into effect in exceptionaly situations - if I've been sold an 8Mbps connection with a 30GB/month cap, I damned well should be able to get close to 8MBps most of the time if I haven't gone anywhere near my usage cap no matter what protocol I use. If my traffic has to be throttled by the ISP most of the time then they have underprovisioned their network and that needs fixing.

      The ISPs have brought this problem on themselves to a large extent by not being open about the limits. If an ISP says "8Mbps unlimited broadband" should they be at all surprised when people want to be able to do 8Mbps 24/7? They should be making it clear what you're getting much like datacentres do. e.g. Burst speed of 8Mbps, average speed 2Mbps, monthly cap 30GB.

      The bottom line is that Comcast needs to make room for more HD TV channels on their cable, and the easiest, most cost-effective way to do that is to kill off the unprofitable BitTorrent traffic.

      Or just charge the high bandwidth users more which would pay for the network capacity to be increased. There's no need to single out specific protocols here - if someone's using a large amount of bandwidth for *anything* make them pay more.

    7. Re:So THAT's what happened... by Salgat · · Score: 1

      I love how when I call to complain that my speeds are no where near what they advertise, they go through all the steps to explain how its my fault and its my computer thats the issue, and when they finally get around to the real issue, they state that there is nothing they can do it about it, and if they aren't providing the promised bandwidth that its tough luck for me. My bandwidth has been the same for years, yet I'm still paying the same amount. You would think with progression of technology they would get the clue.

    8. Re:So THAT's what happened... by petermgreen · · Score: 1

      Or just charge the high bandwidth users more which would pay for the network capacity to be increased. There's no need to single out specific protocols here - if someone's using a large amount of bandwidth for *anything* make them pay more.
      the trouble is of course that the providers marketing departments want to advertise unlimited but the bean counters know that a certain percentage of users will use far more traffic than most and therefore will be a loss rather than a profit.

      The obvious result is psuedo-unlimited services where there are no hard caps but they do everything in thier power to shaft heavy users who live in areas of high demand.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    9. Re:So THAT's what happened... by FireFury03 · · Score: 2, Insightful

      the trouble is of course that the providers marketing departments want to advertise unlimited but the bean counters know that a certain percentage of users will use far more traffic than most and therefore will be a loss rather than a profit.

      The obvious result is psuedo-unlimited services where there are no hard caps but they do everything in thier power to shaft heavy users who live in areas of high demand.


      Not only do high traffic users lose out, but in order to maintain a flat-rate across all users they have to either:
      1. charge stupidly high prices
      or
      2. massively oversubscribe the network

      If they do (1) then the low traffic users end up paying buckets of cash to subsidise the higher traffic users. If they do (2) then the network pretty much sucks for everyone.

      The answer is pretty simple - go switch to an ISP that has a sensible business model who is honest with it's customers, rather than one that's clearly run by a moronic marketting department who believe that misleading the customer is a Good Thing.

    10. Re:So THAT's what happened... by uncreativ · · Score: 1

      True, ISPs do underprice their services assuming people do not use 100% of bandwidth all the time. In the US, one can also buy unlimited local and long distance phone service, but the phone company does not expect the phone to be dialing long distance 24/7.

      You provide a false choice by suggesting ISPs could possibly choose to sell service without any oversubsription. Say the 10mbit service my company offers were sold assuming 100% usage 100% all the time. Depending on infrastructure costs and typical bandwidth costs for a decent size ISP in the US, you would be talking around $500 to $1000 per month. Say you have 1,000,000 customers in a modest size city. Are you suggesting that the ISP should plan on delivering 10 Petabits of data to that community? I'm not sure that that kind of bandwidth is even feasible with current technologies.

      I would be happy to provide such a service if I could actually get people to buy it. Instead, I foolishly sell service for such tiny amounts of money per subscriber at $25-$50/mo thinking that's what the consumer demands. More seriously, there is a reason dedicated internet bandwidth costs more money. ISPs certainly do not do enough to inform consumers that they are not getting a dedicated connection--they can at least do that education better so that people do not pout when their bandwidthh is throttled for high usage.

      An ISP could just change their terms of service and next month the customer can decide if they want to stay. I've thought about changing my terms of service so that the highest one or two percent would leave my service and go to my competitor. It would be like killing two birds with one stone--reduce my costs and increase the costs of my competitor. The only reason I don't do that is the ill will it would sew among my customers. I have to say it is some times tempting to make high usage expensive and push those users off my network, but I continue to play the law of averages game and offer uncapped internet services. I think eventually, ip television will force me and all other ISPs to change from unlimted bandwidth to metered services.

    11. Re:So THAT's what happened... by FireFury03 · · Score: 1

      You provide a false choice by suggesting ISPs could possibly choose to sell service without any oversubsription. Say the 10mbit service my company offers were sold assuming 100% usage 100% all the time. Depending on infrastructure costs and typical bandwidth costs for a decent size ISP in the US, you would be talking around $500 to $1000 per month. Say you have 1,000,000 customers in a modest size city. Are you suggesting that the ISP should plan on delivering 10 Petabits of data to that community? I'm not sure that that kind of bandwidth is even feasible with current technologies.

      If they want to sell "unlimited" connections then yes, they need to provide enough bandwidth to support what they are selling and set their prices appropriately to cover the cost.

      Alternatively a more sensible suggestion would be to stop misadvertising their services as "unlimited" and instead include information as to what the limits actually are. Also, providing several different products with different limits and appropriate pricing seems a good idea to keep both the light users and the heavier users happy, rather than having one group of users subsidising the other.

      Really, if you advertise a service and use the fact that it's "unlimited" as a selling point, you damned well can't complain when people try to use it in an unlimited way.

      An ISP could just change their terms of service and next month the customer can decide if they want to stay.

      Herein lies the problem - when everyone else in the market is advertising "unlimited" services, your service doesn't _look_ attactive if it's similarly priced but has published limits even though the "unlimited" services probably have similar limits which just aren't published.

      Changing your terms of service also leads to bad publicity (those few unprofitable heavy users can make a lot of noise - I saw it happen when PlusNet changed their terms in this way). And even the less well informed people who don't overuse the service may feel hard done by since you appear to be taking something away that they paid for (even though they aren't using it and their service will probably actually _improve_ as a result).

      So in a market where everyone else is misrepresenting their products it's pretty hard to be truthful whilest still looking competetive.

      Thankfully here in the UK, many of the smaller ISPs have stopped advertising their connections as "unlimited" and in a number of cases have put together a good explanation of why no ISP can offer unlimited internet connections. I would be interested in how many potential customers ignore that and still believe an "unlimited" connection is better value for money so go elsewhere though.

    12. Re:So THAT's what happened... by uncreativ · · Score: 1


      Not sure if this is the case in the UK, but in the US there always seems to be the same statement--"up to X mbits". I don't know of any large ISPs that do not use that phrase. While perhaps it's a bit of marketing-speak, it is plain English, up front, and obvious that there is no guaranteed bandwidth being sold on residential service. I do not know any company that explicitly states their residential service is "unlimited".

      Agreed on the everybody else does it thing, though. I do think more can be done to make the fair usage policies transparent and up front. The PlusNet ISP you linked to has some good ideas for how companies can educate their users about their service not being unlimited. Right now in the US, no company has ventured out into metered billing like PlusNet has. Ultimately, many who complain a lot about residential service not being unlimited have no clue what such a service actually costs. The link you posted does a lot to help clarify for average people why one should never expect to get unlimited bandwidth on residential priced service. However people have short attention spans and the explanation is too long to put in a commercial/in a magazine/etc.

      I've thought about switching my offered service plans to a metered service, but am concerned that in the US where I'm at, I will scare people away. People hate their cell phone companies because of tiered usage plans. I'd much rather have tiered usage plans so that those who consume 10+ times what they pay for will either have to pay their fair share or go somewhere else. I may even be able to lower what I charge for the casual/light user.

    13. Re:So THAT's what happened... by FireFury03 · · Score: 1

      Not sure if this is the case in the UK, but in the US there always seems to be the same statement--"up to X mbits". I don't know of any large ISPs that do not use that phrase.

      Yup, they all use that phrase - I wasn't arguing that that was misleading (although now you come to mention it, if your network is overloaded to the point that there's no way anyone's going to get 8Mbps you probably shouldn't be allowed to advertise "up to 8Mbps").

      I do not know any company that explicitly states their residential service is "unlimited".

      Orange: "unlimited monthly downloads (fair use policy applies)"
      Be: "Unlimited usage"
      Tiscali: "a fast, affordable service with unlimited usage every month."
      Toucan: "all packages are unlimited"
      Pipex: "Our Pipex Max + Anytime package gives you both unlimited broadband AND unlimited local and national calls all day every day"

      Thats just from a quick Google for "unlimited broadband". I hear radio ads quite frequently for "unlimited broadband" too, and infact it wasnt that long ago that Tiscali's radio ads said "Up to 8 megabyte unlimited broadband" (which was clearly a mistake and whoever let that through needs a kicking).

      Right now in the US, no company has ventured out into metered billing like PlusNet has.

      It's pretty common place in the UK amoungst the smaller ISPs. The bigger ones are still misleading everyone with their "unlimited" claims though.

      Ultimately, many who complain a lot about residential service not being unlimited have no clue what such a service actually costs.

      The customer shouldn't need to care how much the service costs the ISP. If the ISP sold them an "unlimited" then the customer has every right to expect it to be unlimited - if the ISP misadvertised it then it's the ISP's responsibility to swallow any costs required to meet their commitment.

    14. Re:So THAT's what happened... by uncreativ · · Score: 1

      The unlimited internet promise appears to be made outside the US more than what I see here. I just don't see those claims made much, if at all in the US. A search on google for unlimted internet for me (mostly because google gives geography related search results) gives results for unlimited internet, but by that they mean an unlimited number of dialup internet minutes via 56k modem. Most of the large US ISPs will not show up in the first couple pages of google search results when one searches for the term "unlimited internet"--mostly dialup companies show up. Here are some of the main internet providers in the US--cable and phone companies:

      ATT

      Charter Communications

      Time Warner

      Verizon

      Cox Cable

      Qwest

      And even evil Comcast

      Find any claims of unlimited internet bandwidth from any major US ISP? Keep looking...you'll even find dislaimers saying explicitly that speed and bandwidth is not in any way guaranteed. Certainly those disclaimers are not front and center, but many have their disclaimers asterisk'd with notes on the main service description pages, so the disclaimers are not hard to find. The US has fairly clear and well enforced truth in advertising laws. Doesn't the UK?

      I don't think anyone has any right to unlimited internet if I make no such claims, guarantees, or promises and especially if I specifically disclaim any such guarantee. The vast majority of US companies wouldn't make such a claim for fear of losing a class action lawsuit. It seems companies can make untrue claims about their products in the UK and not get sued? I certainly cannot in the US. That's a problem with your consumer rights laws, if they even exist.

    15. Re:So THAT's what happened... by FireFury03 · · Score: 1

      dialup internet minutes via 56k modem.

      People still use dialup? Wow :)

      The US has fairly clear and well enforced truth in advertising laws. Doesn't the UK?

      Yep, and I don't really know why the Advertising Standards Authority doesn't come down on some of these ISPs. Although Orange has recently bee slapped down for making claims about "unlimited broadband" without mentioning a fair use policy. The ASA seems fairly happy with people saying "unlimited* broadband" and then having small print stating that fair use policy applies.

      This seems wrong to me - if there is a fair use policy that places limits on how much you can download then it clearly isn't unlimited. Especially since those fair use limits actually do affect a significant number of people. It also makes it hard to compare what ISP is going to be best for you if they all hide their limits away in the small print (or worse: don't publish their limits at all).

      Also, some of the fair use policies seem to place limits on much more than fair use - for example, Orange's "unlimited" GPRS tariff has a fair use policy which explicitly bans the use for instant messaging and VoIP. I wouldn't call that fair use since it won't impact other users of the system - it's just Orange preventing you from using services that would undermine their telephony business.

      It seems companies can make untrue claims about their products in the UK and not get sued?

      The UK culture is nowhere near as litigeous as the US. For the most part I consider that to be a Good Thing since it helps keep things like insurance costs down because there aren't so many frivolous and money-grabbing lawsuits. However, that gradually seems to be changing as more and more ambulance chasing lawyers seem to keep popping up and avertising "no win no fee" services for all sorts of situations.

      False advertising claims are generally handled by the advertising standards authority, and for the most part they do a reasonable job. Although their fines are usually small and frequent enough to prevent companies from _continuing_ to misadvertise rather than big one-off fines which scare companies away from doing it in the first place. Sadly, the ASA sometimes make some bad decisions (as mentioned above), but I guess that's not a huge amount different from launching a class action and having the judge make a bad decision.

      I don't _think_ there is such a thing as "class action" in the UK. And the average punter doesn't want to spend the time and money suing - unless they actually lost a lot of money they are more likley to just stop using the company in question and bad-mouth them to their friends.

  5. ISP vs WAP by eddy · · Score: 2, Interesting

    Maybe it's the start of customers demanding an actual INTERNET Service Provider and not a Web Access provider, which most so called "ISPs" try for today. Subset-Internet Provider. Shit, SIP is taken too. Oh, well.

    One can dream.

    --
    Belief is the currency of delusion.
    1. Re:ISP vs WAP by westlake · · Score: 0, Flamebait
      Maybe it's the start of customers demanding an actual INTERNET Service Provider and not a Web Access provider

      It's called a business or professional account. You want it? You pay for it.

    2. Re:ISP vs WAP by finkployd · · Score: 1

      That is what I do, and Comcast is not all that bad. 6m/768k and 6 static IPs with no restrictions on server or port blocking for $100/month.

      Finkployd

  6. Bitch, bitch, moan, moan by node159 · · Score: 5, Insightful

    God dam it so annoys me when the ISP's bitch and moan about the customers actually using the bandwidth they have signed a contract, and paid for to use.

    I have no sympathy for ISP that oversell their services and fail to invest profits in infrastructure.

    --
    GPLv2: I want my rights, I want my phone call! DRM: What use is a phone call, if you are unable to speak?
    1. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0

      Yeah, except the contract (which the customer probably didn't bother to read) likely specifies that the customer isn't allowed to host servers on their connection (web, smtp, bittorrent, or otherwise).

      I'm not really trying to defend the ISPs, but I do have a problem with double standards. You can't use the contract when it benefits you and ignore it when it hurts you.

    2. Re:Bitch, bitch, moan, moan by gravij · · Score: 5, Insightful

      Yeah, except the contract (which the customer probably didn't bother to read) likely specifies that the customer isn't allowed to host servers on their connection (web, smtp, bittorrent, or otherwise).
      I'm not sure if bittorrent should count as a server. It doesn't fit into the traditional client server model at all. And if the only thing that makes it count as a server is the uploading of data then what about things like Skype or a multiplayer game?

      ISPs have got themselves into a bad spot by overselling and under cutting and the only way they can deal with it is by making their customers suffer...
    3. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0

      For their purposes a server will be any software that automatically transfers data to a remote host without user intervention. Connecting to a game server is an explicit event initiated by a human, as is loading a webpage. It wouldn't surprise me if Skype qualified, especially since voip is becoming important to cable companies like Comcast (they are advertising it relentlessly here, at least).

      Any peer-to-peer system that automatically determines what peers to host data services for would qualify. There is probably language to that effect in the contract.

    4. Re:Bitch, bitch, moan, moan by fredklein · · Score: 2, Interesting

      Yeah, except the contract ... likely specifies that the customer isn't allowed to host servers

      Define 'server'.

      If I telnet (I know) into my home PC from work, am I "running a telnet server"??

      Technically, YES. But I sincerely doubt the tiny amount of traffic on the few occassions I connect will bankrupt my IPS.

      If I FTP into my home PC from work, am I "running a FTP server"??

      Same as above. As long as it is for personal use (IE: I'm not running a PUBLIC FTP site, it should be allowed.

      If I connect to WOW, and download a patch using their downloader (which, due to the way it is made, also automatically uploads the bits of the file I already have to other people), am I "running a Bittorrent server"??

      How about if I constantly DL from Bittorent 24/7?... at 5kb/s? 50kb/s? 500kb/s?

      Does it matter WHAT I DL? What if I DL only overnight or duing working hours (when usage is low anyway?) What if I DL ONE CD (linux distro) during the busyist time of day, but then nothing for a week??

      Things like that matter when determining how much 'strain' is put on the network. But ISPs ignore all that and make it against their rules to even telnet into your PC over the connection you pay for.

    5. Re:Bitch, bitch, moan, moan by westlake · · Score: 1
      God dam it so annoys me when the ISP's bitch and moan about the customers actually using the bandwidth they have signed a contract, and paid for to use.

      The contract will say that you are paying for a shared residential connection with no rights to run a server and no guarantee of performance or quality of service.

    6. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0
      Connecting to a game server is an explicit event initiated by a human, as is loading a webpage

      I guess Bittorrent clients turn themselves on, huh?

      Any peer-to-peer system that automatically determines what peers to host data services for would qualify.

      When I connect to 'google.com', I could be connecting to one of dozens of servers that host that site. I certainly don't choose which one to connect to- the 'system' 'automatically determines' which one.

      There is probably language to that effect in the contract.

      Nope. If there is, please find it for us:
      http://optonline.net/Article/Terms

      (i) Users may not run any type of server on the system. This includes but is not limited to FTP, IRC, SMTP, POP, HTTP, SOCKS, SQUID, DNS or any multi-user forums;
    7. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0

      >I have no sympathy for ISP that oversell their services and fail to invest profits in infrastructure.

      Then get used to paying T1 costs for T1 service, because that's what you're asking for.

    8. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0

      >> 'companies that oversell their services and fail to invest profits in infrastructure'

      You hit the nail on the head there! I'm seeing lots of large companies in our country that have gotten themselves in this exact situation nowadays, in all varieties of industry! ISPs, automomakers, utilities... even hosting companies! I clench my fist and burn with rage when I see this happen. The only enjoyment for me is to watch our economy dispose of these failures on its own, either as a competitor emerges to pick up the slack, or as once glorious and successful companies just get bought outright.

    9. Re:Bitch, bitch, moan, moan by Buran · · Score: 1

      I don't see where a server is being run here.

    10. Re:Bitch, bitch, moan, moan by Anonymous Coward · · Score: 0

      >Define 'server'.

      Read your own contract yourself.

    11. Re:Bitch, bitch, moan, moan by DMUTPeregrine · · Score: 1

      What if I send a TCP ACK. Am I running a TCP server?

      --
      Not a sentence!
    12. Re:Bitch, bitch, moan, moan by jc42 · · Score: 1

      Define 'server'.

      A couple of years back, while discussing such things with our then ISP (RCN), the support guy made it clear that to them, "Internet Service" covers web browsing and email. End of story. Nothing else was supported, and by supported they meant permitted. Oh, and by email they meant access via their own email servers; no other email was supported. All incoming and outgoing email must be stored on their own servers, and no, they won't tell you why they want this. We also have Comcast as an alternative, but I suppose most people here know what sort of alternative that is.

      When speakeasy became available in our neighborhood, we switched. It was a bit slower than the "blinding fast" service advertised by RCN, but they allowed (and promise to always allow) unblocked Internet access. They actively encourage things like servers. In fact, they even encourage redistributing your service to neighbors, and they'll even handle the billing for you, so you effectively become a local distributor.

      Too bad they aren't allowed access to most potential customers. Maybe we need to be pushing for regulations that only permit real IP service, i.e., just deliver the packets at whatever rate I've paid for.

      (The really funny part of the story is that we looked into having Verizon, our phone monopoly, supply DSL service. They couldn't do it; we're too far away. So we got speakeasy DSL instead, over the same Verizon line. We've been happy with them. ;-)

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    13. Re:Bitch, bitch, moan, moan by fredklein · · Score: 1

      >Define 'server'.

      Read your own contract yourself.


      Optimum Online:
      Users may not run any type of server on the system. This includes but is not limited to FTP, IRC, SMTP, POP, HTTP, SOCKS, SQUID, DNS or any multi-user forums;


      So, the definition of server DOES include FTP servers (at least for optimum online). But that phrase "includes but is not limited to..." means that ANYTHING could be called a server. They simply DO NOT DEFINE what they mean by 'server'. It's a catch-all thing that a lot of contracts have- a vague definition that means they can up and do anything they want. That WOW patcher? It's a Bittorrent client, and a server. We're cutting your internet off!

    14. Re:Bitch, bitch, moan, moan by fredklein · · Score: 1
      the support guy made it clear that to them, "Internet Service" covers web browsing and email. End of story. Nothing else was supported, and by supported they meant permitted.

      It's not what 'the tech support guy' says, it's what their TOS says. And I've NEVER seen a TOS that says 'browsing and email ONLY'.

      As a matter of fact, RCN's own page, mentioning the features of one of their connections says:

      Online gaming with RCN interACTION Games*
        View streaming video clips
        Download and burn music with RCN interACTION Music*
        Trade photos online with family
        Basic web surfing
        Instant messaging
        Research for home, school, work
        Emailing friends
        Participating in newsgroups


      That's a little bit more than "browsing and email".

    15. Re:Bitch, bitch, moan, moan by DavidTC · · Score: 1

      Incidentally, thanks to the fact FTP works backwards, running an 'FTP server' on your computer is only a small violation of the contract, whereas someone on that box downloading something using FTP, from somewhere else, is a huge violation, if the violation is decided in terms of 'an open port on your machine that someone connected to and sent data over'. Normal FTP works by someone opening a control connection to the server, but, when files are uploaded or download, the server opens a connection back to that person. So the actual bandwidth usage is not used by 'the server'.

      Which also means, if you're smart, you can open an outgoing ssh tunnel to some low-cost shell account, and forward a port on that computer to your FTP server's control, and not run an 'FTP server', but use a hell of a lot of bandwidth, in both directions, in outgoing connections you make.

      In a technical sense, you're running a server, but it only reachable locally, and it wouldn't be that hard to connect forwarded ports on the external computer to the actual FTP program (Normally launched by inetd) instead of just forwarding to a port, and then you're not, under any logical interpetation, running a 'server'. I'd like to see how an outgoing ssh connection and random outgoing connections dumping files on people's computer is a 'server'.

      Of course, bittorrent isn't a server either if you turn off incoming connections.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    16. Re:Bitch, bitch, moan, moan by pureevilmatt · · Score: 1

      Found it for you: "35. Amendment: Cablevision may, in its sole discretion, change, modify, add or remove portions of this Agreement at any time. Cablevision may notify Subscriber of any such changes to this agreement by posting notice of such changes on the Optimum Online Service, or sending notice via e-mail or postal mail. The Subscriber's continued use of the Optimum Online Service following notice of such change, modification or amendment shall be deemed to be the Subscriber's acceptance of any such modification."

  7. Most unpopular comment ever by saterdaies · · Score: 4, Insightful

    No one will like this suggestion, but I think it's a valid one. ISPs should start charging for bandwidth used just like electric, gas, and other utilities. Right now, they have "unlimited" plans. This gives ISPs a great incentive to try and control what you do online. It just doesn't cost the same to serve the user who just browses the web (at maybe 100k a page which happens sporadically as users have to take time to read the page) and the user who decides that they want to use their cable modem as a movie downloading service - or even legitimate uses like downloading a new Linux distro every week. ISPs shouldn't care how you use your connection - they should only care how much bandwidth you use. ISPs shouldn't even care whether your bittorrents are illegal or legitimate. That has no affect on them. The amount of data transfered does. So, for the sake of network neutrality, for the sake of our freedom to use the internet how we want to use it, we need usage fees.

    1. Re:Most unpopular comment ever by Nasarius · · Score: 5, Insightful

      And suddenly things like downloading videos from iTunes become a whole lot less attractive. Torrent-gobbling nerds aren't the only ones using a lot of bandwidth, and that will become more and more true in the near future.

      --
      LOAD "SIG",8,1
    2. Re:Most unpopular comment ever by echucker · · Score: 2, Interesting

      So if you want to charge for usage, do you charge just for down, or do you charge for up too?

    3. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      I'm concurring with your comment. There are 2 problems that are being exposed by Comcast:

      1. Bandwidth isn't cheap. Most of their customers are just looking for a fast connection that lets them browse the web faster and download their pictures and YouTube videos faster. People who saturate their connection uploading and downloading torrents do not fit within the cost structure provided (by the amount of bandwidth they expect people to use). People, predictably, are whining that Comcast is evil. Yet, if Comcast were to comply with their wishes that they be able to saturate their connection for weeks at a time, the prices would have to go up drastically.

      2. This is also exposing a weakness in the topology in the coaxial network. Essentially, cable modem users are on a bus topology, not all that different from older Ethernet networks that used coax. There is a maximum shared bandwidth capacity that DOCSIS supports and having people saturate their connection reduces the amount of available bandwidth for other users. Regardless of the better technologies coming out to help reduce this problem, the problem will never be eliminated so long as the topology remains as it is. Comcast can split the networks into smaller segments, but this will just end up costing more money, hence bringing us back to the situation in #1.

    4. Re:Most unpopular comment ever by QCompson · · Score: 2, Insightful

      No one will like this suggestion, but I think it's a valid one.

      I don't like your suggestion. If telecoms begin to charge for the amount of bandwidth used, the way we all use the internet will be fundamentally changed. Many of the popular websites and attractions that have sprung up in the past few years (itunes, webcasts, youtube, etc) rely on heavy bandwidth usage. Personally, I don't want to be thinking about my monthly budget when checking out videos on youtube.

      Secondly, I have little doubt that the pricing plan that the telecoms introduce would be outrageous and overpriced, as there is no competition to speak of ($19.95 a month for 3 gigabytes of bandwidth! That's over 600 songs! $10.99 for each additional gig used).

    5. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      That sounds like an excellent idea. You go ahead and pay by usage. Don't let us unlimited plan users hold you back.

    6. Re:Most unpopular comment ever by Anonymous Coward · · Score: 1, Insightful

      The U.S. is already behind various countries in quality and cost for bandwidth. What you are suggesting is that it become less efficient so that the telco oligopoly can what, make even more money for providing less service?

      It's "end spam by charging per e-mail" all over again. As capacity grows metered rates won't decrease for residential customers. They'll probably increase gradually as local monopolies petition municipalities for rate hikes. There isn't enough competition in residential service to trust such a system, and bandwidth isn't nearly as scarce as potable water and electricity. It's not a completely ridiculous idea, as creating incentives can be powerful, but it fails to take into account the real power of telcos.

    7. Re:Most unpopular comment ever by Isao · · Score: 1
      This actually has a lot of merit. The providers are currently incentivized to deliver the lowest bandwidth we will tolerate at the highest price we can afford. This is similar to the Netflix problem in that their "best" customers (those who appreciate and use the bandwidth provided) are actually their worst problems, delivering the lowest revenue per resource consumed.

      Moving to a usage-based pricing model would correct this inversion. The provider would be incentivized to deliver high-bandwidth, low-latency connections to make it as easy as possible for customers to run up larger bills. There are two big problems with this.

      The first is that since the customer base is accustomed to an "all you can eat" model (no matter how unrealistic this is), there would be huge resistance to the change. I can already envision a marketing campaign showing the "all you can eat" provider throttling the connection, and charging for usage while the customer sleeps...

      The second problem is that it's not clear that inverting the pricing model would be of interest to the customer. While I'm personally upset with the idea that BT may be throttled, I'd be a lot more upset if I worried about every stream I opened costing me a few Euro. We can hope (and encourage) a race to the pricing-bottom that happened with long-distance, but a real economist would have to show how a base line-charge (say US$10 a month) plus usage adds up to less than the flat-rate now. Drop it onto the usage bell-curve, and show that the high-end users would pay more, but benefit from using their full 100Mbit fiber links to the 'net.

      There's my two-cents of bandwidth.

    8. Re:Most unpopular comment ever by Anonymous Coward · · Score: 3, Insightful

      Adblock and Flashblock on the other hand get a lot more popular :P

    9. Re:Most unpopular comment ever by Loconut1389 · · Score: 1

      Another problem- people on unlimited pipes, botnets, universities, etc could ping flood someone out of house and home. There's already tto much uninvited traffic at my firewall.

    10. Re:Most unpopular comment ever by vertinox · · Score: 1

      ISPs should start charging for bandwidth used just like electric, gas, and other utilities.

      Been there, done that in the mid 90's and earlier.

      People didn't like it and the ISPs who didn't change to a full whole hog 24/7 access plan died out or got bought by companies who did.

      --
      "I am the king of the Romans, and am superior to rules of grammar!"
      -Sigismund, Holy Roman Emperor (1368-1437)
    11. Re:Most unpopular comment ever by lordkuri · · Score: 1

      This is a very valid point. What's to prevent a new form of extortion from this?

      "Send us $100 right now, or we DDOS your cable line and cost you $1000"

      Not that much different from the file encrypting trojans, just a hell of a lot easier to do.

    12. Re:Most unpopular comment ever by GhaleonStrife · · Score: 1

      The prices are already high enough. $50 a month is a bit much for what I'm getting, if you ask me.

    13. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      People who saturate their connection uploading and downloading torrents do not fit within the cost structure provided (by the amount of bandwidth they expect people to use).

      If their expectations are counter to reality, it would be best for them to change their expectations rather than to try to change reality.

      if Comcast were to comply with their wishes that they be able to saturate their connection for weeks at a time, the prices would have to go up drastically.


      Or (horror of horrors) the Comcast executives could take a miniscule pay cut while they upgrade their network.

    14. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      How about set up a system like some electricity companies do? Charge more for per unit of data at peak hours, and less at off-peak hours. That should smooth out the fluctuations in traffic between on- and off-peak hours each day.

    15. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      I live in Australia - Most plans here are metered by a download limit.
       
      Worried about something like iTunes? My ISP offers unmetered downloads on such services - easy solution!.

    16. Re:Most unpopular comment ever by kaizokuace · · Score: 1

      damn us dorks shouldn't have ever showed all our non computer savy friends the wonderful world of bittorrent!

      --
      Balderdash!
    17. Re:Most unpopular comment ever by kv9 · · Score: 1

      $50 a month is a bit much for what I'm getting, if you ask me. getting fucked? sounds like a pretty cheap fuck to me.
    18. Re:Most unpopular comment ever by Tuoqui · · Score: 1

      Average Bandwidth per second * 2592000 seconds (30 days) = 'Unlimited' (Gb/month you have to account for)

      DO NOT advertise your service as unlimited unless you are willing to permit this amount of traffic.

      --
      09F911029D74E35BD84156C5635688C0
      +2 Troll is Slashdot's way of saying groupthink is confused
    19. Re:Most unpopular comment ever by Anonymous Coward · · Score: 0

      here in aussie I use the ADSL2+ provider iiNet. bandwidth is capped at 20gb "peak" and 40gb "offpeak" traffic, and after that the speed is throttled. however, they offer a "freezone" which does not count against my limit, and the freezone includes the itunes store, several major repositories such as sourceforge, and some popular internet radio stations.

      I originally moved here from the US and thought the whole bandwidth capping thing was a pain, but it's actually not bad, especially if you use the Azureus SpeedScheduler plugin to focus your downloads in the offpeak time period

    20. Re:Most unpopular comment ever by jsebrech · · Score: 1

      And suddenly things like downloading videos from iTunes become a whole lot less attractive. Torrent-gobbling nerds aren't the only ones using a lot of bandwidth, and that will become more and more true in the near future.

      Ha. Been there also. I used to have an internet provider that charged so much for bandwidth that every time I watched a movie on their rental service it added a full euro in bandwidth cost. Suffice it to say that the movie rental service has never really taken off.

      A shame, because I like the idea of renting movies on-line and have been waiting for something that is price-competitive with physical rental for a while.

    21. Re:Most unpopular comment ever by RareButSeriousSideEf · · Score: 1

      Metered bandwidth is not the same as metered minutes. The broadband companies been selling *peak* "up-to" bandwidth rates all along anyway.

      They don't have to stop doing that, just offer Peak + Sustained plans for users with greater needs.

      The Peak-Only folks will still get their 6Mb/s burst speeds (on cable, probably less for DSL), but daily/weekly/hourly/monthly loads would would be throttled to, e.g., 512k. Those who wanted to could buy their peak rates up to 8 or 10Mb (as you can now), but would also have a new option to buy their sustained rates up in tiers, to 1.5Mb, 3Mb, or whatever the network can handle without degrading others' service.

      I have the top tier service now, and I rarely see real combined torrent download rates over 300-400k coming through my pipe.

    22. Re:Most unpopular comment ever by complete+loony · · Score: 1
      Why not both?

      The most annoying thing to an end user is being sent an enourmous bill you weren't expecting just because you left kazaa running in the background. The model we have gravitated towards in Australia, where consumers have always had to pay for the bandwidth they use, is to have a fixed charge per month, with a fixed download cap. Once that cap is used up, throttle the connection to modem speeds without disconnecting users or charging more for that month.

      Some ISP's count all traffic in both directions, some only count downloads, some count both separately and throttle you when either uploads or downloads hits your monthly limit.

      --
      09F91102 no, 455FE104 nope, F190A1E8 uh-uh, 7A5F8A09 that's not it, C87294CE no. Ah! 452F6E403CDF10714E41DFAA257D313F.
    23. Re:Most unpopular comment ever by Geekbot · · Score: 1

      Too true. Blocking content will kill the cable companies as fast as not blocking it. The problem with blocking content is that we have returned to an internet that is very much user created content and sharing. It is this sharing of content that makes it so attractive to younger users. If they throttle this and that, they will find that they start losing customers. By losing customers they will cut content on the internet, further reducing interest and customers for their access to the internet. In the end they will either have to fix their bandwidth problems or face losing their internet business as popular websites fail and the internet loses the interest of a new generation.
      It's much like a party when a few people leave it starts the ball rolling and before long the party is dead and everyone leaves.

  8. The real problem ... by Anonymous Coward · · Score: 1, Insightful

    It sounds like the real problem is that ISPs are selling people more bandwidth than they want to give them. But when people use that bandwidth for prolonged periods of time, the ISP's business model is buggered up.

    Is it because they are using deceptive marketing practices? Because they are over-selling their product hoping that the customer will not expect to make full use of it.

    Or is it because we customers are asking for too much and lured ourselves into a situation where we knowingly bought more bandwidth than the ISPs had to offer.

    As a consumer, my knee-jerk reaction is to say the former. On the otherhand, I have known for nearly a decade that cable companies were over-selling their bandwidth.

    1. Re:The real problem ... by cableguy411 · · Score: 1

      LOL! It depends on what you term overselling the bandwidth. If you mean selling 1.6 Gb's of service in a 1Gb pipe, then yes they are. If you think you can go to ATT or any other ISP and not have the same problem, You're wrong! All ISP's buy bulk and sell X% over bulk purchased knowing that average capacity and peak rms capacity are considerably less than the 1Gb pipe for example. The difference between the two is where you hit the pipe. Cable hits normally two pipes: the one for your fiber node, then the one where all the fibers are combined and routed. DSL in most cases is very similar but with one less pipe. Problem is DSL technology hits the wall at around 6Mbs. They're struggling and having to use two twisted pair to get the 6Mbs. So essentially they have 1 less pipe, but the pipe from the customer to the big one is really small. Cable has an extra pipe, but even with a bigger pipe they have more traffic in that pipe. Now would you want to drive one a one lane gravel road where the max speed is 60, or be on the autobahn where there are occasional traffic jams, but most of the time be zooming along is well above and beyond what the gravel road could ever hope to carry you?

  9. Phone companies and electrical companies do it by davidwr · · Score: 5, Insightful

    Metered billing is the easy part. In the long run, it's even easier than the cat-and-mouse game of fighting a particular popular protocol.

    The other features, like giving the customer control of monthly caps and throttling, will take a bit of work.

    One unintended side-effect is the effect on home users who run wireless networks. "Stealing" bandwidth from an inadvertently unsecured or under-secured wireless connection without permission will now be literally stealing, as the poor subscriber will be stuck with the bill. Expect a few prosecutions under theft or fraud statutes if this becomes commonplace.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:Phone companies and electrical companies do it by Anonymous Coward · · Score: 0

      Another incentive to secure wireless networks (or just run wired) is probably a good thing.

    2. Re:Phone companies and electrical companies do it by h4rm0ny · · Score: 4, Insightful


      Little of which is the problem of the ISP. Internet access is now low in cost compared to most of our bills, but it's come to be regarded as a necessity by most of us. Therefore the market is ripe for a profit-hiking on the part of the telcos. But there are two things that prevent them all just simply bumping the prices up by a whopping margin. The first is that there may be issues in terms of price-fixing and anti-competitiveness if everyone just gets together and agrees to up prices. Secondly, there is the backlash from the customer at the sort of outrageous price increases that these ISPs would like.

      Confusing the issue by breaking things up and charging extra for service X, is a confusing and obfuscating way of adding artificial value to the service. Especially when with increasingly efficient and expanded infrastructure, bandwidth is getting easier to provide. We pay now for bandwidth and this system works. Establishing the idea that we have to pay extra according to certain types of traffic has no good basis in effort on the part of the ISPs. In fact, it takes additional effort to introduce this monitoring.

      It's about squeezing more money out of people and its based on collusion between ISPs. Customers should tell Comcast where to stick it.

      --

      Aide-toi, le Ciel t'aidera - Jeanne D'Arc.
    3. Re:Phone companies and electrical companies do it by walstib · · Score: 1

      And SPAM will literally cost you $$

      --
      The most dangerous strategy is to jump a chasm in two leaps. - Benjamin Disraeli
    4. Re:Phone companies and electrical companies do it by networkBoy · · Score: 3, Insightful

      I'm not sure I understand your point.
      I pay my hosting bill based on three factors: Bandwidth consumed, disk space used, and CPU used. I can set up in my account panel limits on any of these three. Since I don't want my sites to go dead just because I exceeded my bandwidth I simply throttle my connection speed once the bandwidth hits 80%. Sure my site gets slower, but it's not down. Upstream and downstream bandwidth is set in the modem on most cable and dsl modems, so all you need is a user side app that lets you see where you are in the billable elements and choose how to deal with it: Kill the connection for the last couple days of the month, or slow it down. Set the defaults such that the average customer won't pass the 80% point (so a peak month results in no additional or a minimal bill), but a power user can up the limits as needed. The infrastructure is all there already, all you need is one additional application and you're done.

      Tiered plans that have a higher base price but allow more bandwidth are already available, and they change the plans almost monthly for their new customers or for "specials" so it's not like that's an issue either.

      All in all it's an ideal technical solution, and like a gp post mentioned, in the long run it's both cheaper and more honest than the current cat and mouse game.
      -nB

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    5. Re:Phone companies and electrical companies do it by sydbarrett74 · · Score: 1

      "Stealing" bandwidth from an inadvertently unsecured or under-secured wireless connection without permission will now be literally stealing, as the poor subscriber will be stuck with the bill. Expect a few prosecutions under theft or fraud statutes if this becomes commonplace.

      ...which is why router manufacturers should have things like MAC address ACL's and WPA2 enabled by default, ditching WEP (which is far more inherently insecure than WPA, which itself is by no means perfect, but better). Also, there should be a way to force a router's owner to change the default password and SSID.

      Note: Yeah, even with MAC address ACL's spoofing is still possible, but it raises the bar. And yes, defaulting to these more secure options makes router administration more difficult for Joe Sixpack, but is a $500 bill for broadband a preferable alternative?

      --
      'He who has to break a thing to find out what it is, has left the path of wisdom.' -- Gandalf to Saruman
    6. Re:Phone companies and electrical companies do it by EricTheO · · Score: 1

      Don't give up your unmetered ISP service just becuase you think your own use of the internet is bellow some arbitrary cap. You let this cat-out-of-the-bag and you create the potential precident for other additional service charges to be levied against you. It's kinda like giving up personal freedoms for some theoretical protections from terrorists.

      --
      -Eric
  10. False advertising by KingSkippus · · Score: 4, Interesting

    Someone should sue Comcast for false advertising. I constantly hear commercials on the radio about how much faster their Internet connections are than DSL's, about how "the other guys" sell you slow connections and make you pay extra for higher speed connections, and all sorts of other crap.

    Of course, they don't bother telling you that if you get Comcast, you might not even be able to use your connection, or that they're going to play mommy and tell you what you can and can't do, and punish you for doing things they don't like.

    If they're going to do this kind of shit, the FCC and/or the FTC needs to make them disclose it in their commercials. It's a substantial factor in the decision whether or not someone might want to subscribe. And I'd love to see what happens to their subscription numbers when they have to say something like, "We will restrict or forbid some popular services you might want to use on the Internet. Oh, and we require you to use the browser that we prefer, even if you have a Mac and don't have access to it. And last, but not least, if you actually use the Internet, we'll cut you off entirely."

    1. Re:False advertising by Yusaku+Godai · · Score: 1

      Yeah, I used to have a Comcast cable modem, as it was pretty much the only choice in the area at the time.

      Now I have Speakeasy DSL, and while one could make an argument that Speakeasy is not like other DSL providers, regarless it's just as fast as my Comcast was if not faster, and far, far more reliable. Also no ridiculous, arbitrary restrictions on how I use it.

    2. Re:False advertising by karnal · · Score: 1

      My company has had trouble with getting Comcast business connections in some of our remote offices to open up ports. It appears they wanted a 150$ administrative service fee to turn on ports. Each time. Insane.

      Last night I saw an advertisement on Fox during football for Comcast. It's not available in my area (Insight/Time Warner) thank god.

      --
      Karnal
    3. Re:False advertising by the+eric+conspiracy · · Score: 1

      LOL. You are on crack. These adds all carry disclaimers at the bottom that refer you to the terms of service. The TOS on every major ISp forbid servers, which is what BT is.

    4. Re:False advertising by FireFury03 · · Score: 1

      These adds all carry disclaimers at the bottom that refer you to the terms of service. The TOS on every major ISp forbid servers, which is what BT is.

      Really? The last time I saw an ISP ban their users from running services was a few years ago. That was NTL and they stopped doing that several years ago AFAIK.

      Also, I'm not entirely sure you can claim bittorrent is a service since it uses a peer-to-peer model rather than a client/server model. Certainly from the end user perspective, I use my bittorrent client in the same way as I use my FTP client.

    5. Re:False advertising by the+eric+conspiracy · · Score: 1

      Really?

      Really. From the Comcast AUP prohibited use section:

      un programs, equipment, or servers from the Premises that provide network content or any other services to anyone outside of your Premises LAN (Local Area Network), also commonly referred to as public services or servers. Examples of prohibited services and servers include, but are not limited to, e-mail, Web hosting, file sharing, and proxy services and servers;

    6. Re:False advertising by FireFury03 · · Score: 1

      Really. From the Comcast AUP prohibited use section:

      Thats crazy - go change ISP.

      I've been running plenty of public services over my residential internet connection on several servers (My ISP gives me a /29 IPv4 network at no cost) for years. This is completely allowed by my T&Cs and is pretty much the same across most ISPs around here.

    7. Re:False advertising by cliffski · · Score: 1

      he said server.... not service.

      --
      DRM-free indie games for the PC and Mac: Positech Games
    8. Re:False advertising by jc42 · · Score: 1

      Thats crazy - go change ISP.

      Good advice, for those who can. But here in the US, most people have exactly one ISP to choose from. If you don't like it, you can move somewhere else where there's a different ISP.

      Some people do have two ISPs. But if you investigate, you discover that they both have almost exactly the same policies and restrictions (and prices), so it won't do you a bit of good to change.

      Isn't capitalism wonderful?

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    9. Re:False advertising by Nanoda · · Score: 1

      I know in Canada, I can get the BBB or CRTC to investigate a shady business... but AFAIK they don't do anything without a complaint.

      It's your country and your ISP; get things started!
      FTC complain form
      FCC complaint form
      BBB complaint form

      Looks to me to be fast, easy, and free. Step up!

    10. Re:False advertising by FireFury03 · · Score: 1

      But here in the US, most people have exactly one ISP to choose from. If you don't like it, you can move somewhere else where there's a different ISP.

      You could always get a satellite downlink (yup, the latency sucks, no, they aren't really that expensive).

    11. Re:False advertising by spectecjr · · Score: 1

      Someone should sue Comcast for false advertising. I constantly hear commercials on the radio about how much faster their Internet connections are than DSL's, about how "the other guys" sell you slow connections and make you pay extra for higher speed connections, and all sorts of other crap.

      I'd love to. I've got an issue with their TV service... They constantly claim to be better than satellite (no rain dropouts!). Well, I had DirecTV for 5 years in Seattle, and guess what? I only had a "rain dropout" once, and that's 'cos an electrical storm was taking down trees near the house.

      Not to mention that even with their service, I get dropouts. Data errors causing decompression glitches. DVR boxes that crash, glitch and ignore user input (the recent update has made things much better, but compared to Tivo, that's nothing).

      Gaaahhhhh!

      --
      Coming soon - pyrogyra
    12. Re:False advertising by CyberGarp · · Score: 1

      If they're going to do this kind of shit, the FCC and/or the FTC needs to make them disclose it in their commercials.

      FCC, FTC do something to big business. Ha. Ha Ha, BwwwwaaahahahahahahHAHAHAHAHA!!!>SLAP<

      And now back to reality.

      --

      I used to wonder what was so holy about a silent night, now I have a child.
  11. My Comcast is faster with Torrent/eMule both on by Jonah+Hex · · Score: 1

    I noticed awhile back that if I run one or the other my traffic is slowed, but if I run both at once they speed up. Not sure if they are looking at it as "One P2P = Bandwidth Hog" but "Two P2P = Normal Usage" or some such nonsense. More on topic, my uTorrent with encrypted is seeding just fine after downloading, from Detroit MI downriver area. *hold up hand point to ball of lowest thumb joint*

    Jonah HEX

    1. Re:My Comcast is faster with Torrent/eMule both on by Anonymous Coward · · Score: 0

      if BitTorrentConnectCount = 1 then throttleTraffic();
      else letItThrough();

    2. Re:My Comcast is faster with Torrent/eMule both on by Brychanus · · Score: 1

      I'm in Ann Arbor (very close to that hand position) Michigan, and for me, my ability to seed seems to vary by tracker. I'm not even sure that makes any sense, but it's the closest thing to a pattern that I've noticed. I also seem to have an easier time seeding if I'm still downloading the same file at the time.

  12. Bittorrent encryption is flawed and too much. by PhrostyMcByte · · Score: 4, Insightful

    It is flawed because the ISP just needs to look at your HTTP usage and see you connect to a tracker. They can even get the port you are listening on from there! Even if you connect to the tracker via HTTPS, they can still see you connecting to a known tracker IP. Once they know you are on a tracker they can start limiting all traffic that looks like it's encrypted with RC4, because apparently this is identifiable.

    It is too much because you don't actually need strong encryption to stop traffic limiting. Simply adding some random padding and XORing the protocol with the torrent's infohash would be enough - it is a private key random enough that they couldn't check them all. The RC4 encryption was seriously over-thought, and what did it give us? Nothing, because apparently it is still identifiable as bittorrent (or at least as RC4 encrypted traffic).

    The only solution is to replace the current encryption and always connect to trackers via Tor or some other encrypted proxy. And even then it wouldn't be perfect, because it's plausible they could start limiting traffic on listening ports that get a lot of traffic.

    1. Re:Bittorrent encryption is flawed and too much. by Racemaniac · · Score: 3, Informative

      i also noticed that trackers are the current weak point of bittorrent. at my university, they blocked bittorrent by filtering the packets that request the peer list from the tracker, thus making it impossible to start any torrent since you'll never be able to get the peer list... (which i ofcourse circumvented by editing azureus so it replaces a char from the request to %## with ##the hexadecimal ascii, the same for the webservers that act as trackers, but the filter didn't catch it :p) if they can make the trackers part harder to see, bittorrent can become virtually unstoppable :)

    2. Re:Bittorrent encryption is flawed and too much. by Crayon+Kid · · Score: 1

      And even then it wouldn't be perfect, because it's plausible they could start limiting traffic on listening ports that get a lot of traffic.


      Isn't that overkill? They'd be much better off just capping the overall speed/amount downloaded whenever a certain speed or amount are exceeded.

      The way I see it, they're not sure how far to push this themselves. Right now ISP's rely on identifying BT and limit BT alone claiming "it's illegal". It's stupid, for a lot of reasons. To name just 2, there's perfectly legal BT usage and it's being used more and more for all kinds of downloads. And second, you can do a lot of download in lots of ways, BT is just one way.

      So what they do seems half-thought out and hypocritical. They'll need to update their policies anyway as soon as RC4 is not detectable anymore.
      --
      i ate crayons when i was a kid and now i have two braincells and the blue ones taste nicer
    3. Re:Bittorrent encryption is flawed and too much. by kebes · · Score: 1

      It is flawed because the ISP just needs to look at your HTTP usage and see you connect to a tracker.
      Hmm... Doing traffic shaping based on protocol type is one thing... but if your ISP is really, truly watching what IPs you surf to, then don't they lose their "common carrier" status? If they go to the trouble of interfering with downloads that originate from the pirate bay, then shouldn't they also be throttling your downloads from child porn sites, among others. If they are monitoring and imposing their preconceptions on your net activity, then they should be held liable for all the things they failed to filter. On the flip side, what gives them the right to interfere with legitimate downloads? (There are legitimate, legal downloads on the pirate bay, by the way.) Are they liable for interfering with legitimate uses?

      I've never understood why ISPs willingly go down that road. It seems so legally dangerous to get into a filtering game.
    4. Re:Bittorrent encryption is flawed and too much. by Anonymous Coward · · Score: 0

      "Once they know you are on a tracker they can start limiting all traffic that looks like it's encrypted with RC4, because apparently this is identifiable."

      Uhh WTF? RC4 is broken? Since when? There's an attack where you can discover the key based on a large amount of data from the relatively unencrypted forward portion of the encrypted data, but BitTorrent's encryption protocol explicitly breaks this by requiring all implementations to drop the first 1KB of data anyways, making RC4 perfectly reasonable in this application.

      "Simply adding some random padding and XORing the protocol with the torrent's infohash would be enough"

      I take it back, apparently you haven't read BitTorrent's Message Stream Encryption protocol at all. They _DO_ XOR the infohash with an exchanged Diffie-Hellman key, AND add random padding. There's no protection from MITM attacks (a 3rd party establishing a hidden proxy between the two clients with two D-H sessions), but the ISPs would have to be really damn desperate to try that tactic.

      The true fix is to go completely dark-net on their asses and design a protocol that does encryption from the front gate (like WASTE). If they start throttling that, it'll be time for users to sue (plausible deniability; you could be doing anything encrypted, and they promised you a certain amount of bandwidth in your contract with them).

    5. Re:Bittorrent encryption is flawed and too much. by PhrostyMcByte · · Score: 1

      Unless something has changed, cable internet is not a common carrier.

    6. Re:Bittorrent encryption is flawed and too much. by Jugalator · · Score: 1

      because it's plausible they could start limiting traffic on listening ports that get a lot of traffic

      That's true, but that would be the same as limiting traffic for customers who down/upload much.

      It would no longer be about legality, it would no longer even be about protocols, or what you use their service for.

      --
      Beware: In C++, your friends can see your privates!
    7. Re:Bittorrent encryption is flawed and too much. by tepples · · Score: 1

      Right now ISP's rely on identifying BT and limit BT alone claiming "it's illegal". It's stupid, for a lot of reasons. To name just 2, there's perfectly legal BT usage Their excuse: A torrent client acts as a server. If you want to run a server, upgrade to business class.
    8. Re:Bittorrent encryption is flawed and too much. by tepples · · Score: 1

      but if your ISP is really, truly watching what IPs you surf to, then don't they lose their "common carrier" status? They never had it to begin with. Are you confusing "common carrier status" with "defenses to vicarious infringement"?

      (There are legitimate, legal downloads on the pirate bay, by the way.) There were legitimate, legal downloads on the original Napster.
    9. Re:Bittorrent encryption is flawed and too much. by drix · · Score: 2, Insightful

      So what we really need is an distributed, uncensorable, encrypted network that is really good at distributing small files.

      If only such a thing existed.

      --

      I think there is a world market for maybe five personal web logs.
    10. Re:Bittorrent encryption is flawed and too much. by Dahamma · · Score: 1

      It is too much because you don't actually need strong encryption to stop traffic limiting. Simply adding some random padding and XORing the protocol with the torrent's infohash would be enough - it is a private key random enough that they couldn't check them all. The RC4 encryption was seriously over-thought, and what did it give us? Nothing, because apparently it is still identifiable as bittorrent (or at least as RC4 encrypted traffic).

      How is this insightful? It's completely wrong!

      RC4 over-thought!? The whole point of using RC4 is that it is trivially simple to implement (you can do so easily in 30 lines of code) and FAST. And RC4 itself is not identifiable, it's just a pseudorandom stream of bytes. What would be identifiable is any headers, etc that bittorrent may use that are not part of the RC4'ed datastream, or the protocol for key exchange, etc, none of which have anything to do with RC4.

      Anyway, it's obvious you don't know much about RC4, since XORing the data with a keystream initialized from a key is already how it works - why would you want to XOR everything again in a much less secure way? I'm not trying to be harsh... but if you want to learn about RC4 start with something like the Wikipedia page - it does a good job of decribing the trivially simple yet ingenious algorithm...

    11. Re:Bittorrent encryption is flawed and too much. by CodeBuster · · Score: 1

      And even then it wouldn't be perfect, because it's plausible they could start limiting traffic on listening ports that get a lot of traffic.

      The solution might be to modify the protocol to allow for randomized shuffling of request and response ports as the the session progresses, while maintaining encryption of course, so that the incoming and outgoing ports are randomized for each block of transmissions and the protocol allows users to let their peers (in the torrent swarm) know what ports are going to be used for the next block and so on. This would be similar to the frequency hopping employed on encrypted radios for example.

      Now, correct me if I am wrong, but with Bittorrent the trackers are only there to connect you into the swarm of peers who are transfering parts of the file. Once one is in the swarm the trackers only serve to periodically update the list of hosts currently in the swarm and how long could that possibly take compared to the amount of data being transferred? I suppose that they could still throttle the tracking protocol with the trackers but actual load is coming from data transfers between peers in the swarm, right?

    12. Re:Bittorrent encryption is flawed and too much. by larytet · · Score: 1

      traffic shaping is tough to fight with, but not impossible. DNS or ICMP tunneling can make the shaper work harder.

      check this out http://larytet.sourceforge.net/howto.shtml

      3 pages down look for "Ellacoya promise that the shaper is statefull is true..."

    13. Re:Bittorrent encryption is flawed and too much. by mimiru · · Score: 1

      It always bothers me that they monitor and identify my traffic. If they identify and view my HTTP why should I trust them with carrying my communication with my bank?

      I know it is encrypted but there's nothing to stop them from breaking that encryption. What about my email and passwords? my shopping list at Amazon.com?

  13. Is this strictly legal? by DeeZee · · Score: 1

    Considering the contracts in place between the ISP and the user, and the promises made in advertisement, is this legal? Couldn't a user simply demand that they remove this block?

    In Europe this wouldn't work for more than a week or so.

    1. Re:Is this strictly legal? by Ginger+Unicorn · · Score: 3, Informative

      well i live in britain and most ISPs do this. The only mainstream one i know of that doesnt is AOL who ironically are the best ISP in the UK in my opinion (for broadband anyway, and yes i feel dirty for saying it).

      --
      (1.21 gigawatts) / (88 miles per hour) = 30 757 874 newtons
    2. Re:Is this strictly legal? by lattyware · · Score: 1

      You do realize that most ISPs do this. British Telecom (Somewhat ironically, BT) does this - I should know, I am a BT user (unfortunately). Frankly, I think all ISPs seem to suck in the UK - I have not found one that doesn't block BitTorrent traffic, and gives me a stable connection. Seriously, if someone knows of a really good UK internet provider, please inform me. So, they do get away with it in Europe.

      http://www.azureuswiki.com/index.php/Bad_ISPs#Unit ed_Kingdom - See here for a list of them, and that's just in the UK, let alone the rest of Europe.

      --
      -- Lattyware (www.lattyware.co.uk)
    3. Re:Is this strictly legal? by pw201 · · Score: 1

      I'm with Newnet. Far from the cheapest, but they gave a static IP and seem pretty competent. I've never seen any evidence that they're throttling BitTorrent. Other geek friends recommend Zen.

    4. Re:Is this strictly legal? by Warbothong · · Score: 3, Interesting
      "In Europe this wouldn't work for more than a week or so."

      Evidently you've never heard of the "fair usage guidelines" which are mentioned in pretty much every broadband contract, yet aren't actually available to read if you want to see whether your usage is 'fair'. Personally I would say 'fair usage' would mean not exceeding the bandwidth I am paying for, whereas my ISP seems to think differently based on the emails I have received from them about getting put on a list of 'high usage users' and subsequently being put into a pool of other 'high usage' customers who have to share the same bandwidth during peak hours, causing daytime browsing to crawl (I just end up running MLDonkey at night for the distro ISOs I download, since I make sure my local Free Software User Group always has the latest releases of any popular distro available to burn)

      (I live in the United "CCTV Land" Kindom BTW)

    5. Re:Is this strictly legal? by Anonymous Coward · · Score: 0

      UK is not Europe. With all the exceptions we grant them, and the fact that geographically speaking, they're not Europe either, i don't give a shit for them.

      In France, our major ISPs are not throttling our bandwidth. P2P on Orange and Free (Free is a name of a ISP here) works fine. In fact, you can transfer a hundred of GB of data over Orange and they still won't say anything about you.
      In Belgium, there's just a cap, no throttling. And you can pay to extend the limit you have (usually 20GB a month).

      An INTERNET SERVICE PROVIDER should never have a hand on any PROTOCOL. They should start charging for the bandwidth you are using, like they already do in Belgium. You're not an INTERNET SERVICE PROVIDER anymore if you start discriminating against something just because it's a protocol you don't care for.

      Frankly, if in France they were starting to charge like in Belgium, i won't complain. The prices are not that high and only a copyright infringer would need more for less $.
      I'm downloading my linux ISOs from bittorrent to lessen the charge of the mirrors. I'd be pretty upset to be in the same situation as the stupid UK and americans. It's no internet if it's discriminating against a perfectly legitimate protocol.

    6. Re:Is this strictly legal? by lattyware · · Score: 1

      Like it or not, we are a part of Europe - and yeah, I hate our politicians too, unfortunately, it turns out most people are extremely stupid and vote for them, and we end up being this half-EU, half-not. I presume you are in France from the way you talked, so I would like to make note that you were happy enough we were friendly during WW1 & 2. And yes, I know that's dragging up old stuff, but oh well. I should call someone a Nazi to top it off...
      And that list does show other countries, and it shows one ISP in France blocking BT. So obviously they haven't been forced out of business for it.
      The fact remains, we are a part of Europe, and if it was illegal, they would have been tackled by the EU in the UK, and anywhere else in Europe.
      I don't like it anymore than the next guy, trust me.
      Oh, and by the way, I'm interested as to the hostility towards the UK? Don't know quite why we are such a target.

      --
      -- Lattyware (www.lattyware.co.uk)
    7. Re:Is this strictly legal? by tepples · · Score: 1

      An INTERNET SERVICE PROVIDER should never have a hand on any PROTOCOL. They should start charging for the bandwidth you are using Will you make them charge for residential down and up at the same rate, or let them charge for up at a higher rate so that they can continue to afford to offer web hosting?

      It's no internet if it's discriminating against a perfectly legitimate protocol. It's no longer legitimate in the eyes of the the ISP if you continue to generate large amounts of upstream packets (to get up to 1.1) after the download has finished.
    8. Re:Is this strictly legal? by Anonymous Coward · · Score: 0

      If you pay a visit to http://www.idnet.net/ you will find a very good UK ISP they have no throttling, port blocking whatsoever and they state this upfront on their website I used them for 2 years prior to my move to the USA.
      Zen Internet in the UK, I hear are also very good but slightly expensive in my opin.

  14. So don't use them. by lheal · · Score: 2, Insightful

    Find another ISP.

    But please, don't get the government involved. They'll bury the Internet providers under a mountain of red tape, until customer service will be the last thing on their minds.

    --
    Raise your children as if you were teaching them to raise your grandchildren, because you are.
    1. Re:So don't use them. by Jafafa+Hots · · Score: 0, Offtopic
      You do realize, don't you, that without government regulation and interference in the telecommunications industry, the net as we know it would not exist?

      It's only because of government's action against AT&T that started with the Carterphone case, continued with Sprint and culminated in the breakup of AT&T that we have the web.

      I can explain further if none of this rings a bell. (no pun intended.)

      --
      This space available.
    2. Re:So don't use them. by Racemaniac · · Score: 1

      yeah, awesome idea, and don't buy any software that has something you don't agree with in the license agreement, etc... in the end you'll have no internet, and a pc with no commercial software, and you'll be able to do absolutely nothing... it would be nice if there was always someone who's doing things completely right, if there's a company that just has the product you want, without abusing the power it/the industry has over you, but that's some seriously wishful thinking....

    3. Re:So don't use them. by HoosierPeschke · · Score: 4, Insightful

      Find another ISP.
      I hate this line. I have two ISP providers I can even think of subscribing to. Comcast and AT&T. I'm too far away from the central hub for DSL (AND I LIVE IN A FSCKING SUBURB OF CHICAGO!!!). The government allowed this to happen. The government should fix this problem. I don't wish the the government to over step their bounds (which is where your second argument comes in, because we all know they'll screw it up). But please quit saying "find another ISP", the free market doesn't apply for most of us...
      --
      Mr. Universe: "They can't stop the signal, Mal. They can never stop the signal."
    4. Re:So don't use them. by Anonymous Coward · · Score: 0

      I have news, in the UK (I can't speak for other parts of Europe) many ISPs have been throttling P2P traffic for a couple of years.

    5. Re:So don't use them. by meringuoid · · Score: 1
      I have news, in the UK (I can't speak for other parts of Europe) many ISPs have been throttling P2P traffic for a couple of years.

      But not effectively. I'm on Tiscali; BitTorrent on default ports is throttled into uselessness, but change port and it's plain sailing. From what I hear it's a similar deal with most ISPs. Throttling the default ports has been enough to keep the masses under control, so the few of us who bother to edit our settings don't have such a large impact.

      --
      Real Daleks don't climb stairs - they level the building.
    6. Re:So don't use them. by zakezuke · · Score: 1

      Find another ISP. If you can. Even in major cities there are places adsl doesn't reach that cable does, and cable in most cities tends to be a monopoly. Wi-Max is becoming a legit option, though not stellar bandwidth, adquate.

      Cable tends to offer the best bandwidth for the buck, and if you feel their actions are unjust, you do have a moral obligation to fight for what you feel your rights as a customer are.

      My objection is the fact that comcast isn't upfront as to how much bandwidth is too much.

      --
      There is no sanctuary. There is no sanctuary. SHUT UP! There is no shut up. There is no shut up.
    7. Re:So don't use them. by bahwi · · Score: 1

      Not so easy. Here in Dallas it's Time Warner or AT&T. That's it. Cable or DSL. Or pay 3x as much for Speakeasy. Oh yeah, that's what I do. DSL is unreliable in my building but Speakeasy was able to get it to work where the other guys couldn't. Cable? Oh yeah, Time warner was down for over a week(9 days) and their support line and billing line was a busy signal the whole time.

      So we have it with the government forcing the monopolies already, and customer service is the last thing on their minds. Since you don't have other options, either A or B, you're pretty much screwed. When I tell people how much I pay for DSL they are flabbergasted and don't believe that I'd pay so much. But the service is there.

    8. Re:So don't use them. by Anonymous Coward · · Score: 0

      Better idea: come up with a branding/logo to separate full internet access from crippled internet access.

      "Hi, Comcast high-speed internet. How can I help you?"
      "Do you offer Certified Pure and Full Internet access?"
      "Uh, no, but it's Comcastic!"
      "Sorry." *click*

      Get 2 or 3 of the good ISPs together and agree on what it means: no ports blocked, incoming connections allowed, no port-based throttling, or whatever. Make it a trademark or whatever so they can't claim it if they're not.

    9. Re:So don't use them. by fuchsiawonder · · Score: 1

      Maybe I'm crazy, but is this website not helpful in finding another ISP?

    10. Re:So don't use them. by Mephistophocles · · Score: 1
      Be happy you have AT&T. Where I am, we only have Comcast (or Comshaft, as they're more commonly known; the verb form is "Comcassed", as in, "to be brutally violated and charged for it"). If you're too far from a DSL hub - tough luck, sucker.



      AT&T has tried to break into the market recently. Comcast is fighting it tooth and nail (the bill is in state congress - the fact that litigation is required to allow free market competition is a whole other issue, of course). The really hilarious part is that Comcast's smear-campaign commercials (played about every 30 seconds on every station, of course), they say they're fighting the "intrusion" because AT&T is trying to destroy the free market. Bastards.

      --
      Deja Moo: The distinct feeling that you've heard this bull before.
    11. Re:So don't use them. by Jafafa+Hots · · Score: 1
      Great work mods. A guy makes a remark that's off-topic and gets modded as insightful. I make a direct response to that person's comment, and am modded off-topic.

      I suspect the brainless libertarians aren't out golfing this saturday.

      --
      This space available.
    12. Re:So don't use them. by Howitzer86 · · Score: 1

      It's like that everywhere it seems. Here in Little Rock, I have exactly two choices - Comcast, or Dailup. There are other service providers, but because I'm too far from them, I can't use their services. ATT central hub is too far away, and they don't provide service to my area (but they do across the street). Aristotle Wireless is too far away. I don't have comcast because I lost service for non payment, and I have to pay them back for those last three months they let me use the service without paying.

      I wouldn't mind dailup so much, but it seems the phone lines here are deteriorating. Even after calling ATT to fix the noise on my line, I can only connect at 20 to 30k. I know it's the lines, because I took my laptop to school, hooked up to a phone line, and connected at exactly 53k - which I think is the maximum the FCC allows.

      It sucks being an abused consumer. It seems no matter where you go, what you buy, or what internet service you get, if you're in the US you're getting ripped off.

    13. Re:So don't use them. by lheal · · Score: 1

      There currently is only one broadband provider serving my little town. It's Mediacom. It usually works :-|.

      But it's a cop-out to say there isn't enough competition. What that means is there isn't enough demand for better service.

      --
      Raise your children as if you were teaching them to raise your grandchildren, because you are.
    14. Re:So don't use them. by Mattintosh · · Score: 1

      It seems no matter where you go, what you buy, or what internet service you get, if you're in the US you're getting ripped off.

      Not quite true... If you're getting a T1 or T3, you're still probably ok. Prices have actually fallen (a little) for these lines, due to lowered demand. Small businesses no longer get T1's, they just get "Business DSL" (which is the same as residential DSL).

      I've thought about trying to get my homeowners association to go in on a T3. (There are 200 units in this complex, so it would be neither overpriced nor overly fast if everyone was using it simultaneously). Unfortunately, that would cause all kinds of other headaches. It's bad enough trying to find an office manager, much less a network admin. I could do it, but I'm a programmer. I would probably screw up admin-type stuff. (Error 1609 - Wrong Type of Geek.)

    15. Re:So don't use them. by asdfghjklqwertyuiop · · Score: 2, Insightful

      I have two ISP providers I can even think of subscribing to. Comcast and AT&T. I'm too far away from the central hub for DSL. The government allowed this to happen. The government should fix this problem.


      The government allowed what to happen? That only one ISP chose to put the infrastructure in your area for broadband?
    16. Re:So don't use them. by HoosierPeschke · · Score: 1

      Not really, for my area code, most of those are dial-up. Sorry, for my Internet preferences, it's gotta be broadband. I've contacted every broadband provider in my area (believe me, I've done the research) and they charge exorbitant amounts or are very restrictive. Basically I have to find the least of all evils, which sadly, is Comcast.

      --
      Mr. Universe: "They can't stop the signal, Mal. They can never stop the signal."
    17. Re:So don't use them. by Anonymous Coward · · Score: 0

      What that means is there isn't enough demand for better service.

      Wrong. What it means is the government is not allowing competition to come in on the last mile of cable/telephone lines. The few exceptions (Covad, Speakeasy - for example) are saddled with extra costs that make it impossible for them to price match the incumbent carriers.

    18. Re:So don't use them. by HoosierPeschke · · Score: 1

      [blockquote]But it's a cop-out to say there isn't enough competition. What that means is there isn't enough demand for better service.[/blockquote] (Emphasis mine)
      I don't think that word means what you think it means. It is a fact that due to a lack of competition in my area, I have only one choice for broadband. I can't help that the average citizen considers the Internet to consist of checking their e-mail and visiting YouTube. To me, the Internet is a means of communication for the betterment of society. Comcast set a bar for service and is now trying to lower it. In order to utilize the free market to keep everything fair, I don't even have a option of voting with my wallet. How many others in my neighborhood are in the same situation? To say there isn't enough demand for better service is also a false assumption.

      --
      Mr. Universe: "They can't stop the signal, Mal. They can never stop the signal."
    19. Re:So don't use them. by HoosierPeschke · · Score: 2, Informative

      Many cable systems operate as local monopolies in the United States, as only one cable company typically receives the right to serve a region as a result of a franchise agreement with a local government. For some franchises the agreement is explicitly exclusive; for others the local authority retains the right to franchise overbuilders but does not do so. In some areas that is changing as competition has been allowed to enter the market, including, in some cases, city run cable systems. The rise of Direct Broadcast Satellite systems providing the same type of programming using small satellite receivers, and of Verizon FiOS, have also provided competition to cable TV systems, opening the possiblity of cable television declining.
      From http://en.wikipedia.org/wiki/Cable_television_in_t he_United_States.

      By government, you didn't assume I meant the United States Government, did you?
      --
      Mr. Universe: "They can't stop the signal, Mal. They can never stop the signal."
    20. Re:So don't use them. by happyhamster · · Score: 1

      >> until customer service will be the last thing on their minds

      Yeah, like currently it's one of their priorities... riiiiiight. That's why they:
      - make you wait in queues forever
      - underpay and overwork their customer service stuff so they can't provide good service even if they want to
      - hire underqualified people to pay them less
      - outsource the whole thing to another continent

    21. Re:So don't use them. by Anonymous Coward · · Score: 0

      Where I am, we only have Comcast (or Comshaft, as they're more commonly known; the verb form is "Comcassed", as in, "to be brutally violated and charged for it").

      At least they helpfully provided their own adjective form to mean "crappy internet connection."
    22. Re:So don't use them. by JamesGecko · · Score: 1

      Slippery slope. Possibly, but not necessarily.

      I'll counter with another lubricated incline. If Comcast continues doing this with BitTorrent, what are the chances they'll move on and throttle other things as well? Pretty darn high, I'd say.

      Is the risk worth it?

    23. Re:So don't use them. by jsebrech · · Score: 2, Informative

      The government allowed what to happen? That only one ISP chose to put the infrastructure in your area for broadband?
      `
      That infrastructure was put there using government subsidies. It is simple too expensive to provide physical cabling to everyone except in dense metropolitan areas to be able to enter into that market as a new business (and what you see in the US is that only dense metropolitan areas get decent competition).

      Network cabling is just the same as electricity lines, water mains, gas mains, sewer system, and so on. It doesn't make economic sense to have more than one of them in your street, so it's up to the goverment to ensure that artificial competition is created on the one line that's there.

    24. Re:So don't use them. by NateTech · · Score: 1

      Gee, it would seem that if they're blocking their customer's traffic, they already have customer service as the last thing on their minds.

      Duh.

      Bury 'em in red tape to the point where they just stop screwing with traffic.

      --
      +++OK ATH
  15. ISPs should have implemented multicast by mitchskin · · Score: 1

    BitTorrent is a bit like a poor-man's multicast. If the ISPs had properly implemented multicast in the first place, they could have saved themselves a lot of the bandwidth that Bittorrent is using now.

    It would be nice to combine BitTorrent with multicast, especially for the initial seeding. Maybe we can have our bandwidth-saving multicast cake and eat our BitTorrent asynchrony as well.

    1. Re:ISPs should have implemented multicast by Ash-Fox · · Score: 1

      If the ISPs had properly implemented multicast in the first place, they could have saved themselves a lot of the bandwidth that Bittorrent is using now.
      Excellent idea, with this we can DoS all IPs in the world with a good cable account. I like your thinking.
      --
      Change is certain; progress is not obligatory.
  16. Use obfuscation by Anonymous Coward · · Score: 0

    Comcast throttles all p2p traffic via shaping. However, if your client supports obfuscation (and I know at least Azureus and eMule do) you can partially circumvent this. The people on the other end have to support obfuscation too, but statistically this will get you back up to usable speeds since most users do a good job of keeping their clients up to date and most now ship with obfuscation support.

    1. Re:Use obfuscation by Anonymous Coward · · Score: 0

      Obfuscation?? is that a new BT client?

  17. How would your users act in a metered system? by davidwr · · Score: 1

    How much would each of your users be willing to pay for the access they now enjoy?

    Seriously, ask them. Have them imagine a world where the bill was by the GB. Ask them how much their share of the bill would have to be before they would change their online behavior. $10/month each? probably no change. $1000/month each? They'd probably figure out some way to save on usage. Their individual "what the market will bear" price for the services they now enjoy is probably somewhere in between.

    Now, for you, the problem will be sub-metering. Assuming they aren't the type to cheat, it's easy enough to install a bandwidth-tracker on each computer. If they are cheaters, you've got bigger problems my friend.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  18. Most irrelevant comment ever by Anonymous Coward · · Score: 0

    Due respect, but your argument seems disjoint to the actual issue.

    You want to argue "pay as you use," fine. But that's not what's going on here.

    What's going on is that an ISP has decided to limit what KIND of traffic they will accept. You can download 10 MB via FTP at full speed, but NOT via Bittorrent--that's throttled. See the difference? They're not limiting volume, they're limiting protocols.

    Now, you can argue that there's a lot of PTP traffic out there, and throttling it will have the EFFECT of limiting overall consumed bandwidth. But, frankly, that's not fair to customers.

    Let me give an example. I don't use a lot of bandwidth normally, but I decided that I want to download the new build of Fedora via PTP. It's the only PTP download I've had in months. I get throttled. Now look at someone else who is a heavy internet user. They stream unencrypted net radio for several hours a day, play huge flash games, etc. They don't get throttled, despite consuming MUCH more bandwidth than me. This is fair? This is neutral?

    You state: ISPs shouldn't care how you use your connection/ I agree. Which is why your argument is not persuasive here.

    1. Re:Most irrelevant comment ever by Night+Goat · · Score: 1

      Due respect, but your argument seems disjoint to the actual issue.

      The OP wasn't saying that Comcast was right to do what they did, he suggested a better method for Comcast to use. There's no arguement going on, merely another option being presented.
  19. Bitch, bitch, moan, moan-Read, Don't Read... by Anonymous Coward · · Score: 0

    "God dam it so annoys me when the ISP's bitch and moan about the customers actually using the bandwidth they have signed a contract, and paid for to use."

    Speaking of which. Did you actually read yours? Abusing a shared network is grounds for what Comcast is doing. Don't like it? Start your own ISP and hope your "customers" don't abuse you. I'm certain they'll be nicer to you because you're a geek.

    1. Re:Bitch, bitch, moan, moan-Read, Don't Read... by Edy52285 · · Score: 1

      Using the service you paid for to its fullest potential, or at least trying to, is not abuse of that service, its getting your money's worth.

    2. Re:Bitch, bitch, moan, moan-Read, Don't Read... by visualight · · Score: 1

      You understand nothing. This isn't about abuse, this is about Comcast deciding what *kind* of packet you're allowed to you're cousin in Florida. Not how many packets, which would be acceptable.

      --
      Samsung took back my unlocked bootloader because Google wants me to rent movies. They're both evil.
  20. Drop Comcast by GoldTeamRules · · Score: 3, Interesting
    I was a Comcast customer (AT&T@Home prior to that) for about 8 years. I live in Utah and recently switched to one of the municipal networks (based on the Utopia project and I won't name the exact ISP because I don't want to be accused of being a company whore), and I've never looked back.

    Now, I only get data from them. I'm not interested in TV or phone, but as far as data pipe, I'm saving $20/mo and the connection speeds are faster.

    1. Re:Drop Comcast by antdude · · Score: 1

      In my area, I don't have any other good choices for broadband service:

      1. DSL is too far (20K ft. from CO).
      2. Satellite Internet is too expensive and slow.
      3. No FiOS even if I am in Verizon area.
      4. No WISPs around here close enough.
      5. Dial-up (3 KB/sec average even on 56k modems).
      6. etc.

      --
      Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
    2. Re:Drop Comcast by radmarshallb · · Score: 1

      Now if only Salt Lake would get back on board with UTOPIA, we'd be set. But unfortunately, it's still Comcast or Qwest. Lame.

    3. Re:Drop Comcast by hughk · · Score: 1

      1.DSL is too far (20K ft. from CO).
      The funny thing is that given technology costs, the old concept of a CO is dying in urban areas. It costs more money to run (& maintain) copper to a CO than to have a node in your area which then uses fibre and supports a limited number of connections. Newer developments tend to use something like this. Of course, in a rural area, you are still fscked because there isn't enough population density to warrant a node.
      --
      See my journal, I write things there
    4. Re:Drop Comcast by antdude · · Score: 1

      Here's the thing, I am not in a rural area since there's a lot of houses. :) However, I am on a big hill.

      --
      Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
    5. Re:Drop Comcast by petermgreen · · Score: 1

      The funny thing is that given technology costs, the old concept of a CO is dying in urban areas. It costs more money to run (& maintain) copper to a CO than to have a node in your area which then uses fibre and supports a limited number of connections.
      I'm not sure what the situation is in the US but I remember reading about those in the UK and how at the time being on one meant you had basically no chance of getting broadband. I don't know if that changed but it wouldn't surprise me if it didn't.

      the advantage of the central office method is that things like DSL are viable with relatively small subscriber counts because they can just wire the subscribers who want dsl to the DSLAM. With a node like you mention the node has to be upgraded to support DSL and since the node supports only a small number of lines the cost of that upgrade must be borne by a very small number of users.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    6. Re:Drop Comcast by hughk · · Score: 1

      I'm not sure what the situation is in the US but I remember reading about those in the UK and how at the time being on one meant you had basically no chance of getting broadband. At least one of the UK providers using access nodes also offers data so I guess that doesn't apply now.

      --
      See my journal, I write things there
    7. Re:Drop Comcast by hughk · · Score: 1

      I'm aware of the issue with the wide-open spaces in the US, however 'm more than a little surprise that you have problems in a built-up area. If you are on a big hill, then you should just look for someone nearer the CO, with a good line of sight to you!!!!!

      --
      See my journal, I write things there
    8. Re:Drop Comcast by antdude · · Score: 1

      It's quite frustrating. I was unable to get a lot of information/details on why DSL is unavailable and why VZ won't upgrade/add another CO/whatever in this area. Here's a funny part. Down the hill after the busy streets where all the shopping centers, malls, etc. are at, DSL service is available.

      I did manage to get little information from VZ people back in 2005:

      From Slidetbone, on BBR, on 1/24/2005:

      "Total line make-up comes up to be 20363 cable feet.3 load coils and 7.5 DB loss at 1khz. Looked at your local CO CLLI code (LAPNCAXF91K) and the Hub CO CLLI (LAPNCAX) and there does not seem to be a remote or overlay there to shorten the length in your area... This was from the main one Verizon uses for DSL, ISDN and HI Cap circuits. It breaks down your line and gives me the loop makeup plus it tests for bridge taps, coils and line attenuation."

      --

      2/27/2005 13:56:33 from tim_k: "9642- 20300 ft, 7979- 21100 ft. The tool I use isn't as complete as the one the guys who work customer issues use. I don't have access to databases that may indicate there is an RT on the line. There was one guy doing MLT tests for people on the forum, can't remember his name. I don't know of any west guys that hang out here."

      --
      Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
    9. Re:Drop Comcast by petermgreen · · Score: 1

      At least one of the UK providers using access nodes also offers data so I guess that doesn't apply now.
      There are only two companies in the UK with sigificant nationwide phone line coverage. BT openreach (part of BT group) who have landline coverage almost everywhre and virgin media (an amalgamation of the cable companies) who have service to about half of households.

      BT use the nodes you mentioned in some areas and at the time I read about it you couldn't get ADSL in those areas, I don't know if this has changed and I don't see how the fact that BT offers ADSL in some areas would be relavent to this.

      I don't know how virgin media manage thier phone lines but it is irrelevent as their broadband service runs on thier cable TV cables not thier phone lines.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    10. Re:Drop Comcast by hughk · · Score: 1

      Unless you are somewhere like SF, most streets don't go directly up hills, they wind around them. Utilities routing and distribution tends to follow roads so a few hundred feet up a hil can become several thousand. As I say, if you can get line-of-sight to someone below, then a WiFi link becomes interesting.

      --
      See my journal, I write things there
    11. Re:Drop Comcast by hughk · · Score: 1

      When I was last in the UK, whoever it was that was the predecessor to Virgin Media was delivering voice+data+cable tv to the local node via fibre. I think the household then had some kind of combined cable bring the services into the household.

      --
      See my journal, I write things there
    12. Re:Drop Comcast by petermgreen · · Score: 1

      I think the household then had some kind of combined cable bring the services into the household.
      They have two cables coming in, a phone cable for phone service and a coax cable for TV and broadband.

      I do remember it taking the cablecos a VERY long time to get broadband service rolled out accross thier network.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
  21. warez? In the '90s it was porn by davidwr · · Score: 1

    I heard from a semi-reliable source in the late 1990s: 1/3 of Internet traffic was porn and the average user could thank the porn industry for investing in the cool then-high-quality-video- and then-high-bandwidth features that were becoming available at the time.

    I'm sure that figure is way out of date by now, I'm just not sure in what direction :).

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  22. UDP for no reset? by Dwedit · · Score: 2, Interesting

    So would moving the bittorrent protocol to UDP solve this specific problem? UDP doesn't have a reset bit. And you can always just stick something exactly like TCP on top of UDP to make it almost no different.

    1. Re:UDP for no reset? by Chandon+Seldon · · Score: 1

      That's great, until the ISP decides that they can block any UDP traffic that isn't DNS to their servers.

      A much better idea would be to simply make the connections look as much like HTTP over SSL as possible. They can't block that.

      --
      -- The act of censorship is always worse than whatever is being censored. Always.
    2. Re:UDP for no reset? by _xeno_ · · Score: 4, Interesting

      That's great, until the ISP decides that they can block any UDP traffic that isn't DNS to their servers.

      Thankfully that will likely never happen since it would kill VOIP and many online game protocols use UDP. Killing UDP won't happen, since it would kill too many legitimate uses.

      A much better idea would be to simply make the connections look as much like HTTP over SSL as possible. They can't block that.

      This can, theoretically, already be done. (Sort of...) Since BitTorrent already runs over TCP and SSL (actually, TLS now) is simply a presentation-layer protocol, there's no reason BitTorrent can't be run over TLS.

      The problem is the "sort of." Since BitTorrent involves a lot more back-and-forth than HTTPS would (HTTPS would be small upload followed by large download), it's still almost certainly possible to block BitTorrent traffic that runs over TLS. There's really no way around this - the send/receive ratios for BitTorrent will always be different from HTTPS ratios.

      Besides, the ISP doesn't even really need that to throttle BitTorrent or P2P in general. All they really need to do is start blocking SYN packets from reaching their subscribers, or at the very least, throttle the number of SYN packets their subscribers can receive to, say, five every 30 minutes. About the only "legitimate" uses for subscribers accepting connections are active-mode FTP and various chat protocols. And even then, the only times chat protocols generally require the client to accept a connection is for direct peer-to-peer transfers, and the ISP won't care to kill those.

      --
      You are in a maze of twisty little relative jumps, all alike.
    3. Re:UDP for no reset? by TheRealMindChild · · Score: 4, Interesting

      No, it wouldn't help. I have had this issue with my ISP Atlantic Broadband for a good two months now. Incoming torrent connections are flat out blocked (you can open the port and test it, but once the first incoming torrent connection comes in, the port gets blocked). And while you tout UDP may be the answer, they do the exact same with KAD... first incoming KAD packet and the port is blocked.

      --

      "When life gives you lemons, don't make lemonade. Make life take the lemons back!" -- Cave Johnson
    4. Re:UDP for no reset? by tepples · · Score: 1

      Thankfully that will likely never happen since it would kill VOIP and many online game protocols use UDP. Then they would throttle any UDP traffic that isn't to or from the Comcast Digital Voice servers or which exceeds 64 kbps.
    5. Re:UDP for no reset? by cpghost · · Score: 2, Informative

      So would moving the bittorrent protocol to UDP solve this specific problem? UDP doesn't have a reset bit

      IMHO that would be terrible and not advisable. UDP doesn't have flow-control; and you can easily get overwhelmed with misbehaving UDP clients endlessly sending layer-7 connection-request packets at a mind-boggling rate. Even ICMP source quench packets back to those misbehaving hosts won't help because they're often blocked on the path due to the increasingly firewalled nature of the backbones themselves.

      --
      cpghost at Cordula's Web.
    6. Re:UDP for no reset? by larytet · · Score: 1

      re: "you can easily get overwhelmed with misbehaving UDP clients endlessly sending layer-7 connection-request"

      The same problem exists in the TCP network and called SYN flood attack. Usually downstream is wide enough to handle fairly large amount of connect requests unless this is a deliberate attack against a specific node.

      There are many issues with UDP based protocols, but Gnutella proves that this is possible. I did a prototype (Rodi) by myself. Such network can work. UDP (or more precise packet based raw data) based protocol makes it easy to use ICMP/DNS or just any type of tunnel you can think of

    7. Re:UDP for no reset? by larytet · · Score: 1

      yes, if ISP really wants to block and is ready to invest money it can be done. the problem is false alarms. the system should be reliable. the backbone box will not be cheap. doable, of course, but increases costs per customer. bandwidth is cheaper (probably)

    8. Re:UDP for no reset? by StikyPad · · Score: 1

      That sounds like a Denial of Service vulnerability to me. Broadcast BT/KAD packets to other IPs on your subnet, and suddenly people can't check their e-mail, surf the web, etc. Of course they could refine their filters to only start blocking after a connection is established, but if you're correct that the block is triggered by an incoming packet, then that's a problem.

    9. Re:UDP for no reset? by Riskable · · Score: 1

      If you use OpenVPN on TCP over port 443 it looks *just* like HTTPS traffic. It does precisely what you're talking about. There's even a personal VPN service provider that offers exactly this service:

      https://vpnout.com/

      --
      -Riskable
      "Those who choose proprietary software will pay for their decision!"
  23. They only stop traffic leaving their network by Anonymous Coward · · Score: 0

    All that Comcast does is read your packets and send terminate connection packets to whoever you are seeding to. This has no affect on traffic traveling through their network, and only limits seeding to other company's networks if they are currently over capacity.

  24. 24/7 modem users back in '80s = similar by davidwr · · Score: 5, Informative

    Because they are over-selling their product hoping that the customer will not expect to make full use of it. For the honest ISPs, yes.

    The telephone companies do the same thing. Dating back for decades, they've price the "unlimited local calling" plans knowing some users will under-utilize and some will over-utilize.

    When a shift in usage happens faster than they can adjust, as happened during the BBS era of the '80s and early '90s, their expenses go up and their revenue remains constant.

    Back in the '80s, telcos in some states put a dent in the problem by limiting the number of lines you could have in your house without paying higher "business" rates. Some multi-line BBS owners paid out of pocket, others charged their users or solicited donations, others reduced their number of lines.

    There was also talk of a "modem tax" but thankfully that never went anywhere.
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  25. if it's an open inbound port, it's a server by davidwr · · Score: 2, Informative

    If you want to get hyper-technical, IDENT is a server, or rather, a service.

    Not much bandwidth there, but it violates the letter of a lot of ISP/customer contracts.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  26. Inflated fears. by delire · · Score: 4, Informative

    could this mean the end of BitTorrent
    What? Because if American ISP's unilaterally block bittorrent it would suddenly mean the end of the technology?

    As a guide,Europe has more internet users than the entire population of America itself. Oh, and then there's the other billion or so internet users in those other countries.

    America is certainly a fairly big country but it's far from being a lone influence of the world's technological development and trends.
    1. Re:Inflated fears. by Anonymous Coward · · Score: 1, Insightful

      ISPs in the UK are starting to moan about having to carry traffic too, even going so far as to suggest the BBC should pay them. So I don't think Europe is immune to profiteering by reducing the service standards so you can get by on a lesser investment. Same as Thames water loses more water than most, imposes hosepipe bans and yet provides bigger profits.

      My hope is that this won't mean the end of bittorrent but of Comcast. If enough people switch quickly enough before other ISPs do the same thing the market might get the message you want.

    2. Re:Inflated fears. by infernalman7 · · Score: 1

      Agree. I really hate it when Americans think they're the only ones that matter. Anyway this problem isn't something new. Thai ISPs have been doing for almost 2 years now, but only to international BitTorrent traffic.

    3. Re:Inflated fears. by nsebban · · Score: 1

      Why is it such a big deal, that an ISP suddenly throttles bandwith for a specific protocol ? I would understand the matter if Comcast was the only ISP in the USA, but there are probably tens or even hundreds.

      In most countries, customers have a right (and use it all the time) to say a big F___ YOU to a company they pay for a service, if the service they subscribed for doesn't meet their needs anymore. Why wouldn't this be true for the USA ? You know, the old "Customer is king" thing...

      --
      ____
      nico
      Nico-Live
    4. Re:Inflated fears. by FireFury03 · · Score: 2, Interesting

      ISPs in the UK are starting to moan about having to carry traffic too, even going so far as to suggest the BBC should pay them.

      The big ISPs are certainly complaining ("oops, we underpriced our product and are now making a loss - we'll demand that some random 3rd party bail us out of our mess"). Notably many of the smaller ISPs are now very explicit about their limits rather than selling everything as "unlimited". The smaller ISPs are showing that if you charge people appropriately and make it clear what they are paying for, even the high bandwidth users can be profitable customers.

      Hopefully the end result will be that all ISPs will stop misleading their customers by selling limited accounts as "unlimited".

      I don't think Europe is immune to profiteering by reducing the service standards so you can get by on a lesser investment.

      Indeed not - underprovisioning the network and deprioritising bittorrent seems to be a reasonably common bad practice. However, by provisioning the network correctly and setting the pricing model appropriately, the high bandwidth users can pay for their own bandwidth rather than being subsidised by everyone else.

    5. Re:Inflated fears. by kaizokuace · · Score: 1

      yea but as a country America is dumb enough to recede into a dark age. If we screw up now we might never see the light of day!

      --
      Balderdash!
    6. Re:Inflated fears. by sethstorm · · Score: 1

      Why wouldn't this be true for the USA ? You know, the old "Customer is king" thing...
      That went away about the same time it became popular to find out the absolute minimum level of service and what customers you could easily drop.

      --
      Twitter supports and protects racists - by smearing their critics with the "Hate Speech" label.
    7. Re:Inflated fears. by Snaller · · Score: 1

      "America is certainly a fairly big country but it's far from being a lone influence of the world's technological development and trends."

      No, but they are the leaders in paranoia and fear - where they throttle today, europe will follow tomorrow. Count on it.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  27. Installing more neighborhood nodes by davidwr · · Score: 1

    I don't know their current policy, but in one particular city, at one point Comcast made a point of installing new neighborhood nodes before their existing ones got saturated.

    In neighborhoods with low-volume users, you had relatively few nodes.

    In apartment complexes with students and young adults who lived above the median income, you needed a lot more.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  28. Server by WPIDalamar · · Score: 1

    Isn't seeding kind of like operating a distribution server? I mean, sure, you don't actually spend all the bandwidth yourself but you are acting as the primary distributor, correct?

    Does comcast have a no-server policy? Many residential ISP's do. If they do, this just seems like it's enforcing that policy.

    Does it suck, yeah. Does it make comcast evil? I'm not so sure.

  29. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  30. That is a risk by davidwr · · Score: 1
    There will be an adjustment period. If the telcos are too greedy there will be political fallout.

    If they are smart, the ISPs will collectively do the following:
    • Initially price it so only a small number of people pay more than they do now, and very few pay bills more than 3-4x what they pay now. A guy maxing out his connection 24/7 complaining about a huge bill won't get much sympathy in the press, provided he was warned ahead of time.
    • Do a "dry run" for a couple of billing cycles so people can get used to what they will be paying so they can adjust their usage accordingly.
    • find some way to "reverse the charges" on some content or allow users to easily block it. BT is already trying to do this through traffic shaping. Far better to do it through the natural laws of economics. This will change the dynamic of unsolicited advertisements: Advertisers who don't want to pay for their ad's transmission or risk having it blocked as a "bandwidth hog" will have an incentive to create low-bandwidth advertisements, which is a good thing for everyone but the creative artists behind the ads.
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:That is a risk by sethstorm · · Score: 1

      There will be an adjustment period.
      Why does that sound like you're attempting to boil a frog? With too many reminders of earlier services that did that at their peril, you're not going to get much sympathy.

      --
      Twitter supports and protects racists - by smearing their critics with the "Hate Speech" label.
  31. Yet they do nothing about SMTP by Anonymous Coward · · Score: 0

    It's not even like Comcast have sensible hostnames to make blocking zombies by PTR easy.

  32. End of Comcast? by griffjon · · Score: 3, Interesting

    We can dream, can't we?

    --
    Returned Peace Corps IT Volunteer
  33. Eh by robinthecandystore · · Score: 2, Interesting

    Change your isp? If they start losing customers they may reconsider their business decision.

    1. Re:Eh by jZnat · · Score: 3, Insightful

      What ISP? There aren't any other ISPs other than Comcast in many areas of the US. In some areas, the only alternatives also do the same bullshit, so there's nothing you can do.

      --
      'Yes, firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.'
    2. Re:Eh by Anonymous Coward · · Score: 0

      There are plenty of ISPs in the US. You might need to look past residential offerings, but if you want a non-throttled pipe with no restrictions you should expect to pay for it.

    3. Re:Eh by zakezuke · · Score: 1

      Change your isp? If they start losing customers they may reconsider their business decision. That's exactly what they want you to do. Problem users go elsewhere, low bandwidth users stay.

      Best to fight this tooth and nail. Comcast advertises you can use their service for music and movies, but when they throttle something used for something they advertise as acceptable use, this is false advertising. Find services such as in2tv.com (aol) and www.movielink.com and who use bittorrent express to them your grief in not being able to use their services due to comcast's choice.

      Be proactive... and change the system.
      --
      There is no sanctuary. There is no sanctuary. SHUT UP! There is no shut up. There is no shut up.
    4. Re:Eh by Anonymous Coward · · Score: 0

      Yeah, I wish I could do that at my house. We're too far away from the CO for DSL, the nearby hills block any wireless ISPs, satellite has too much latency, and dialup is just too slow. If I had any real options (other than moving to a new city), I would've switched months ago, as they're borderline incompetent compared with Time Warner, who used to sell the cable services in my area until Comcast took over. Not that TW's especially competent either, but at least my connection didn't go down weekly when they were running things.

    5. Re:Eh by FireFury03 · · Score: 1

      if you want a non-throttled pipe with no restrictions you should expect to pay for it.

      Well yeah, if you're going to hammer your connection 24/7... But if your connection is idle most of the time and you use BitTorrent to download an ISO once a year then they probably shouldn't be throttling you.

  34. Many cities only have 2 real choices by davidwr · · Score: 1
    Many areas in the USA only have 2 real choices:

    • The local cable franchise and its resellers
    • The local telephone company and its resellers


    If both have similar policies - not uncommon - you are stuck.

    Sure, there are alternatives like satellite, fixed-wireless, and cell-phone technologies, but those tend to be more expensive for what you get.
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:Many cities only have 2 real choices by bhima · · Score: 1

      What's the story with Sat providers?

      --
      Nothing in the world is more dangerous than sincere ignorance and conscientious stupidity.
    2. Re:Many cities only have 2 real choices by RobertLTux · · Score: 1

      can you say Ping times in the large fraction of a second?? for a sat link you need to uplink to the satellite downlink from the sat travel from the NOC to your remote server
      then reverse to return and how high up is geosyncronous orbit?? (just found a nasa source that puts it as 35,768 kilometers and each leg of the bounce nets you 0.11 seconds so each trip has an added 0.44 seconds)

      so no WoW or chats or anything "real time"

      --
      Any person using FTFY or editing my postings agrees to a US$50.00 charge
    3. Re:Many cities only have 2 real choices by shlashdot · · Score: 1

      With Direcway's basic plan, the service actually shuts down for practical purposes after a couple hours of 192k streaming music. Even if you only do that once a week. In other words, it sucks. Bad. On purpose. Maybe other providers are better.

      It is, however, better than nothing and relatively reliable.

      --
      Additional plugins are required to display all the media on this page.
    4. Re:Many cities only have 2 real choices by rriven · · Score: 1
      Most if not all sat ISP's have a cap.

      Wildblue's top end plan caps you at 12GB a month. After that you get dial up speeds. They best part is you are paying 79.99 a month for a 1.5 mb/s connection.

      We sell wildblue at our store and the tech says it is around a 1/4 second delay each way.

      --
      Dan
    5. Re:Many cities only have 2 real choices by hughk · · Score: 1

      Yes, the rule we used in the old days (with a lot of data going via space rather than on the older lower-capacity cable) was .5 of second to bounce off a satellite. The solution was to increase window sizes which would help you max out the connection but interactivity was difficult, to put it mildly so you are quite right about forgetting real-time gaming.

      --
      See my journal, I write things there
  35. Something smells fishy about this by Anonymous Coward · · Score: 0

    And it's not Comcast's practices (at the moment, at least).
    ???

  36. If more ISPs adopt this strategy,shouldn't it mean by D4C5CE · · Score: 2, Interesting

    ...the end of a few of these ISPs?

    Unless there is a legal loophole allowing them to unilaterally change the terms of consumer contracts from Internet to Throttled Censornet, only customers having no other choice would stay with companies trying to force them back to the days of scary time- or traffic-based metering (especially given the risk of excessive traffic due to botnets these days) and/or walled gardens with little content exclusively picked at the mercy of one's provider.

  37. Common Carrier status? by Darundal · · Score: 1

    Does this have any effect on that at all? IANAL, but it seems like it certainly would. Is it the fact that they are just blocking/throttling a particular type of traffic and not basing blocking/throttling on content?

  38. wtf?? by SolusSD · · Score: 1

    Comcast, as well as other cable broadband internet providers advertise X Mbps connections yet they are filtering high bandwidth content? Can't we just slap these bastards with false advertising? I use bittorrent to download LEGALLY DISTRIBUTED SOFTWARE, ie linux distros. wtf?

    1. Re:wtf?? by man_ls · · Score: 1

      No, since it's probably both in the terms you agree to when you sign up, it does take you to the same Internet, and even most of us on here recognize that 90+% of BitTorrent traffic is somewhere between marginally and completely illegal in nature, what with the distribution and duplication of copyrighted content without a license to do so.

      I am in favor of throttling BitTorrent or banning it entirely -- I've been on shared Internet connections where BitTorrent was technically and morally equated with "free content as much as you can download 24/7" and where, despite owning the router, the fact that my roommates had physical access meant they'd reset the router to its defaults and go crazy all the time. I hate it.

    2. Re:wtf?? by SolusSD · · Score: 1

      honestly you are missing the point. I should be able to download anything at the speeds they advertise. If they cannot meet those requirements, they shouldnt be advertising it. banning bittorrent shouldnt be an option.

    3. Re:wtf?? by 7-Vodka · · Score: 1
      Let me see if I got this straight.
      So because you're incapable of applying a social fix to a social problem, you want to see a protocol banned.
      1. Identify social problem: I'm being picked on by my roomates
      2. Ban the bittorrent protocol.
      3. ??????
      4. shazam! Sit back while my roomates treat me with respect.

      (pause while I laugh so hard I piss my pants)

      Ok carry on I want to see how this 'Cosmo Kramer' idea turns out!

      --

      Liberty.

    4. Re:wtf?? by Wildclaw · · Score: 1

      Why should false advertising laws care what the contract says? Of course in the us where it is legal for a "news"/propaganda agency to lie, I doubt that false advertising laws have much power.

      And I am in favor of throttling email or banning it completly, because it is just a bunch of spam that takes up precious bandwidth. Oh, and ban VOIP while you are at it. If people want to phone each other, they should use the existing telephone system instead of wasting bandwidth.

      Protocol throttling is nothing more hypocrisy coming from those that use other protocols. If they need to throttle, they should have the guts to throttle by bandwidth instead of protocol. It would still hurt those that use bittorrent, but those that downloading lots via other protocols would also feel it. Focusing on a single protocol simply isn't fair in any sense of the word.

  39. Eh-Self-Rationalization strikes again. by Anonymous Coward · · Score: 0

    Hehe. That's funny. Now who exactly are they going to lose? Oh that's right. The one's that are costing them money, and giving everyone else a bad experience by abusing the network. I can't imagine why they'd want to lose THOSE.

    And since we're going with the "I'll take my ball and go home" defense. What ISP is going to accept an abuser? Looks to me like you all in true fashion ruined a good thing, and now you don't want to live with the consequences.

    1. Re:Eh-Self-Rationalization strikes again. by JustNiz · · Score: 1

      The only real power consumers have is the "I'll take my ball and go home defense" as you call it.

      I'm not sure what you mean by ISP's accepting abusers, but dumping bad service companies isn't abusing them. Nor is expecting them to give you the download speed you paid for, regardless of its use, unless they made it clear they were throttling up-front before you signed.

  40. red herring pricing by davidwr · · Score: 2, Interesting

    *Plus total data volume at 0.1 cents per MB.*

    1 dolar for 10MB Check your math. That's $1/GB, or $4.50 for a DVD.

    See my other posts in this thread regarding pricing.

    Pricing should be set so less than 10% of the customers pay more, and only a small minority of that pay more than 3-4x more.

    One thing I didn't mention:
    No user should pay more than some maximum based on the size of the pipe, and that maximum should be significantly less than the per-GB fee low-end users pay.

    Let's do some math:
    There are 2592000 seconds in 30 days. Suppose for the sake of argument that 90% of users use less than the equivalent of 25920 seconds at the 6Mbps full speed, or around 20GB. That's a 1% utilization rate. Charge them $20, which happens to match the $1/GB rate you suggest. The real numbers may be higher or lower. If someone uses 40GB $40. You would think that at 24/7, this would be 2000 GB or $2000. But you already have an "unlimited business" plan specifically for companies that use full-throttle services and you only charge them $600/month for 6Mbps service. So, anyone using more than $600 worth of bandwidth will have their bill capped at $600/month.
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:red herring pricing by fredklein · · Score: 2, Insightful

      That would just encourage people to share or re-sell connections.

      I buy a connection, assuming it's going to be maxxed out at 2000GB/month. I pay $600. I then provide my 4 neighbors a 500GB connection, for a rate of $400 each. (Note, this is a 20% discount off them buying direct from the ISP at $500!). I make $2000, I pay $600. Profit!

    2. Re:red herring pricing by syukton · · Score: 1

      ...So?

      --
      Reinvent the wheel only at either a lower cost, greater effectiveness, or your own personal enrichment and satisfaction.
  41. Around here... by Kjella · · Score: 3, Informative

    ...in Norway prices are high, but you get what you're paying for. I've been with three different providers (two DSL, one cable) over the last 4-5 years because of moving, and every time it'll run full speed 20+ hours a day. Nobody complains if I load it out 24/7, and if they did I'd take it up with the consumer protection agency that's got real teeth. Whatever weasel words they used in the contract won't matter, if you're not delivering they slap you around good. How the US companies get away with promising "unlimited" plans, disconnecting heavy users, throttling heavy traffic and deliver such shitty service I don't know. "The market" don't fix things in a mono/duopoly, and from what I gather most are stuck with at most one cable and one DSL operator. At least here the phone lines are for rent, so you can pick from several DSL carriers (but the network build-out is still controlled by one ex-state company).

    --
    Live today, because you never know what tomorrow brings
  42. Most USA cable customers can't get it by davidwr · · Score: 1

    I don't think there's a single ISP that doesn't have [metered service as an option] At least two of America's large cable companies do not offer this to home users. The all-you-can-eat plan is so cheap that it doesn't make sense.

    What I'm talking about is eliminating "all you can eat" at the low end of the market and replacing it with metered service, but with an initial allowance high enough that relatively few customers will be impacted.

    Think of it as the internet-equivalent of "600 calls a month for [insert your usual bill here]" instead of "all the calls you want for [insert your usual bill here]." Very few home customers make more than 600 calls a month. However, back in the days before electronic switches, each call caused wear and tear on the switch. People making high numbers of local calls were costing the phone company more money than those who weren't.
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  43. Doesn't quite work by SIGBUS · · Score: 4, Informative

    It seems that they're now directly interfering with the connections, above and beyond sending RST packets. If I stop my client and then restart it, it will send for a while, then quit, even with the RST packets being dropped. I tested this by running a client on a backbone-connected server that I have. Aside from dropping the RST packets, I've been logging them as well, and they are being dropped. Since my server doesn't have any arbitrary restrictions or throttling, it's clearly something being done by or on behalf of Comcast.

    My choices:
    - Only seed torrents from my server
    - Switch to AT&T (yuck, and they'll no doubt be doing the same crap)
    - Switch to Speakeasy (the Best Buy deal gives me the creeps)
    - Switch to Covad (expensive)
    - Switch to a local fixed wireless provider (my employer has this, and it sucks for VoIP)
    - More cat & mouse games with Comcast

    --
    Oh, no! You have walked into the slavering fangs of a lurking grue!
    1. Re:Doesn't quite work by Neoprofin · · Score: 1

      AT&T (and in our area SBC before the buyout) for all their evil has never done much of anything to slow down my downloading. I haven't even gotten any cease and desist letters like my friends with the local cable monopoly.

    2. Re:Doesn't quite work by Hardhead_7 · · Score: 1

      On top of that, switching to AT&T sends a message to their pocketbooks, encouraging them *not* to do the same.

    3. Re:Doesn't quite work by level_headed_midwest · · Score: 1

      I have similar experiences. My ISP (Mediacom Cable) is an AT&T reseller and I haven't seen them do any sort of traffic shaping or port blocking. The only two ISPs I have used that do stuff like that are the university's Internet access and BellSouth. The university blocks all P2P activity and SEVERELY rate-limits downloads of files larger than about 50 MB from non-LAN servers over the wireless. BellSouth is much more pernicious and while it does not block P2P, it blocks outgoing SMTP and HTTP, and rsync. I was visiting relatives who had BellSouth as the ISP and I was completely unable to do *anything* useful with my computer. Trying to use rsync brought down the connection until I rebooted the modem :sigh:

      --
      Just "gittin-r-done," day after day.
    4. Re:Doesn't quite work by netcrusher88 · · Score: 5, Interesting

      Sorry, but you're wrong. If Comcast sends RST packets to both ends of the connection (and why wouldn't they?), it doesn't matter whether or not you're dropping them, it matters that the other guy isn't.

      --
      There's an old saying that says pretty much whatever you want it to.
    5. Re:Doesn't quite work by Anonymous Coward · · Score: 0

      No, it says "i already dont like them, if you do this too i have no where else to go and will put up with it from you"

    6. Re:Doesn't quite work by Buran · · Score: 1

      And sends a message to them that people don't care that they are reporting your Internet use to the NSA. Good going.

    7. Re:Doesn't quite work by Repossessed · · Score: 2, Interesting

      At least you have options, my apartment has choice between Comcast and nothing at all (there's not even a phone line for dial-up). I have a strategy though.

      Everybody call Comcast, daily, to bitch about this. Eventually they'll realize that each phone call costs more than they'd save in a month per customer complaining.

      --
      Liberte, Egalite, Fraternite (TM)
    8. Re:Doesn't quite work by Mattintosh · · Score: 1

      That's because unlike BellSouth (former sole owner of the AT&T brand name), SBC wasn't all that evil. Sure, they were a Big Telco, and had their greedy moments, but it wasn't until the BellSouth merger took place (just prior to the "The New AT&T" marketing blitz) that it became the asstastic pile of telco we know and hate.

      SBC had sane billing.
      The New AT&T does not.

      SBC had decent customer service.
      The New AT&T does not.

      SBC had actually expanded their capacity in recent years.
      The New AT&T has ceased to do that, but sure as anything, they're bragging about expanded capacities that were put in place before they were in this area.

      SBC never blocked ports for any reason.
      The New AT&T blocked outbound 25 ASAFP, with more to follow if my guess is right.

      SBC never hinted at being anything but a carrier. In fact, their marketing was all geared toward "we build and maintain the lines and you get to use them".
      The New AT&T instantly started grumbling about not being paid on both ends of a connection and started making threats about port blocking and traffic shaping.

      Just give TNATT some time. They'll be as evil as everyone says they are. Too bad SBC got mixed up with these idiots. The rest of the nation could've done just fine without BellSouth/TNATT.

    9. Re:Doesn't quite work by WilliamX · · Score: 3, Informative

      SBC has always engaged in port 25 blocking, from almost the start. I've run alternate port SMTP for business clients on SBC for years.

      SBC's President was one of the first to stand up against Net Neutrality and argue that popular site operators should be paying them, and has been long before the AT&T and BS acquisitions.

      And btw, you have the order all wrong.

      SBC bought AT&T for over 16 billion in Jan 2005, almost a year after merger talks with BellSouth went sour. In Dec of 2006 they bought Bellsouth (there was no merger, it was completely acquisition in both cases)

      SBC decided to take advantage of the AT&T brand and renamed itself.

      Bellsouth was the remaining partner in Cingular, NOT AT&T, and that acquisition enabled them to make the rebrand of all the services they owned as the AT&T brand they had already acquired.

      Nearly the entire modern AT&T board is nothing but the same former SBC board members, including the Chairman and CEO.

      AT&T itself before acquisition was opposed to Net Neutrality, but never as loudly and adamantly as SBC was before.

      Just making sure some facts are laid out in this discussion.

    10. Re:Doesn't quite work by Mattintosh · · Score: 1

      I've been an SBC DSL user for almost 7 years now, and I didn't have to use an alternate SMTP port until 18 months ago, right about the time they bought BellSouth (they called it a merger in all the press releases, but you're right, it was a buyout). I'm still of the opinion that SBC was less evil 2 years ago. And not just 2-years-of-decay evil, but actually almost a "good" telco.

      Oh well. I guess the only good telco is a dead telco. Shoot 'em. It's faster and cheaper than hanging.

    11. Re:Doesn't quite work by WilliamX · · Score: 1

      Also, about the billing comment, the "unification" of all services under one brand and thus one single billing is something the tree huggers should be up in arms about. The billing has gotten more complicated, and the bills are much larger and more confusing for consumers (which is the same story as the iPhone billing records, they are doing that same type of thing with all of their services).

    12. Re:Doesn't quite work by izomiac · · Score: 1

      Well, if this problem is widespread couldn't trackers just drop RST packets from Comcast's IP range?

    13. Re:Doesn't quite work by Anonymous Coward · · Score: 0

      FWIW, while the Best Buy deal doesn't sit well with me either, my service so far is still excellent from SpeakEasy.

      -A satisfied, if slightly worried, customer.

    14. Re:Doesn't quite work by Anonymous Coward · · Score: 0

      When does the tracker help with sending data between clients?

    15. Re:Doesn't quite work by netcrusher88 · · Score: 1

      No, because bittorrent clients are only connected to trackers for a matter of seconds, if that. Bittorrent is peer-to-peer - p2p connections are getting RST'd. And there is no way for userspace software (the BT clients) to ignore RST packets (sockets are handled at kernel level), and NO, we are NOT putting BT clients in kernel space, that would be ugly at best, heh...

      --
      There's an old saying that says pretty much whatever you want it to.
    16. Re:Doesn't quite work by shmlco · · Score: 1

      You mean like Sprint, who simply terminated "problem" customers who complained too much?

      Yep. Go ahead and call every day.

      --
      Any sect, cult, or religion will legislate its creed into law if it acquires the political power to do so.
    17. Re:Doesn't quite work by shadwstalkr · · Score: 1

      You've never called Comcast customer service, have you.

    18. Re:Doesn't quite work by Xabraxas · · Score: 1

      I've had SBC (now ATT) for over three years now and SMTP has been blocked since day one for me.

      --
      Time makes more converts than reason
    19. Re:Doesn't quite work by vranash · · Score: 1

      Surewest is worth checking out as well, other than botching our static IP purchase (they stay just fine until you're off for a few hours, then your IP DOES change.)

      But as far as servers and such go, they don't seem to care at all (I haven't gotten a mailserver up via them yet, but that was mosty lack of time and not having set one up in a good 5 years.)

    20. Re:Doesn't quite work by izomiac · · Score: 1

      Doh, brain lapse. :-) Anyway, I know there are some personal firewalls that play with TCP on a fairly low level (such as randomizing the sequence number), so it should be possible to run a helper program that would selectively drop RSTs. You don't need to put the entire client in kernel space, just the helper. Similar to how several Windows packet sniffers require WinPcap. In any case, it wouldn't be a good solution since it requires the cooperation of everyone else, but for private trackers and smaller communities it may work fairly well.

    21. Re:Doesn't quite work by Binkleyz · · Score: 1
      It's faster and cheaper than hanging.

      Sorry.. have to...

      "Hanging too good for im', burnings too good for im', he should be torn into little bits and pieces and buried alive!"

      http://www.youtube.com/watch?v=SDHFCKD8wgo&NR

    22. Re:Doesn't quite work by WilliamX · · Score: 1

      There are way too many reports of this to be discounted as possibly something else going on....but that said, I'm a comcast customer and have seen none of these things. My torrent seeds have been running without problem, and without playing any cat and mouse games.

      I've also in the past not found myself suffering from the other things I've heard reported that Comcast has done.

      I figure it could be that I am in an area that was not originally a Comcast area, it went from Mediaone, to ATTBi, to Comcast. Or it could be that they treat their users a bit different based on what tier of service they are on. I've always paid for the full TV package, the highest tier of internet service they offer, and I'm a digital voice customer with two lines. So yeah, my bill is more than a bit higher than the normal user I'd guess. But I doubt that Comcast really is that discriminating when it comes to who they give the shaft to. My bet is that its because this area isn't part of the original comcast network, so we've not seen as much of the bad behavior spill over to us....yet.

      That said, I've always said that I find it pretty darn stupid for the cable customers to go after their power users. Most of us not control the purchasing decisions in our own household, but usually influence if not control the purchasing decisions in many other households within our extended families and friends and their families, who look to the family "computer guy" to make these decisions for them.

      Having not had a problem, I've continued to strong recommend Comcast to family and friends, and clients, in the area, but the day they start playing games with me, that will change.

  44. Torrents? by morari · · Score: 0, Troll

    We should be kicking all of those MMORPGs and retarded-ass YouTube vidoes off of the networks instead!

    --
    "He who can destroy a thing, controls a thing." --Paul Atreides, Dune
    1. Re:Torrents? by Wildclaw · · Score: 1

      While I understand why the parent is understandably marked as a troll, he has a point. Why are ISPs allowed to exclusivly limit p2p protocols. I wouldn't mind as much if they throttled bandwidth for those accounts that use lots of bandwidth. That would simply be fair and sound practice to allow everyone to use their share of the bandwidth.

      Throttling specific protocols however is just the first step to allowing the ISPs to control what is and what is not allowed on the internet.

    2. Re:Torrents? by Anonymous Coward · · Score: 0

      Bit Torrent is an abomination anyway.
      MMORPG's do not take that great a share of bandwidth.
      Spammers are hogs, but the biggest hogs of bandwidth are Ad-Servers whether googles, MS's, yahoo, whoever you name THEY eat more bandwidth than anything else.
      Make them pony up some.
      How about they take that money that they are fining spammers and investing in some infrastructure?

    3. Re:Torrents? by Snaller · · Score: 1

      He has another indirect point as well, World of Warcraft uses Bittorrent to distribute game patches (with 9 million users they presumably don't feel like servicing from their homepage) - if a lot of their users are suddenly feeling the pinch, they may get upset.

      --
      If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  45. Welcome back to the 1980s. by twitter · · Score: 1

    ISPs should start charging for bandwidth used just like electric, gas, and other utilities.

    Charge by the minute ISP sucked, but it's nice of you to compare it to other monopoly services. You might as well tell me the break up of Bell was a bad idea.

    Outside of a monopoly, charge per bandwith will fail and drive most people right off the internet. 25% of windoze users are part of a botnet. Disconnecting them until their computers are clean is a better idea than serving them a big fat bill. It would also clear up a lot of bandwith that people could use for things they want, which is the point of internet service to begin with. Only a monopoly service would dare hinder the core function of a service. If they dare make it so that one in four people are ripped off at random, average users will panic and drop their subscriptions. The people served big bills may never come back.

    --

    Friends don't help friends install M$ junk.

  46. Re:If more ISPs adopt this strategy,shouldn't it m by glwtta · · Score: 1

    I don't know what a "consumer contract" is, but I bet you that most, if not all, ISPs' terms of use reserve them the right to do whatever the hell they want with your traffic.

    --
    sic transit gloria mundi
  47. Satellite: high cost, high latency by davidwr · · Score: 1

    Satellite has much-higher costs than similar-priced DSL and has poor latency.

    Latency isn't a huge issue for web-browsing but it's not so great for gaming.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  48. yes, indeed by m2943 · · Score: 1

    Indeed: volume in practice isn't free or unlimited; it's a scarce resource that different users compete for. In fact, a well-priced volume plan, perhaps with peak and off-peak rates and the ability to pre-purchase gigabytes, would remove a lot of the uncertainty and unpredictability surrounding hosting.

    Unfortunately, the market isn't really competitive, and the few providers that have wires into your home can afford to cater to just the average consumer and not worry about offering something for geeks and high bandwidth users.

  49. Comcast offering unlimited* service by CharonX · · Score: 0

    Yes, Comcast ist offering unlimited* service. Please note the asterix.
    As helpfully pointed out a while ago in marketing speech an asterix negates the word it stands after.
    And honestly who would buy "a (usually) really fast internet connection for a flat fee no matter how much or long you surf, but actually we'll throttle the thing to a crawl if you download too much."
    My recommendation (IANAL): Tell them (first via phone, then via postal mail) that you paid for an unmetered account with speed X and that you consider this kind of traffic shaping and throttling as a breach of contract on their side. Reserve yourself the right to sue in a small claims court. Demand that they either restore the service to full functionality (i.e. no traffic shaping and throttling) or reduce your monthly fees by a significant amount (50% or so). Be sure to mention legal uses of Bittorrent (FOS like Linux, Demo Software, Patches, that online video on demand store that uses BT) that are affected. If all that does not help, send them an immediate cancellation of your subscription citing their breach and contract and failure to rectify the issue, stop paying, and look for a new ISP.

    --
    +++ MELON MELON MELON +++ Out of Cheese Error +++ redo from start +++
    1. Re:Comcast offering unlimited* service by Mephistophocles · · Score: 1
      Wishful thinking, unfortunately. Let me explain how such a strategy will work in real life.

      When you call, you'll get a fat, retartded, waste of flesh employee who is paid close to minimum wage to act as a "firewall" - basically he/she sits there and makes certain you can never talk to anyone who actually matters. Said employee will have likely spent a few months at the call center already, gradually becoming more and more jaded (and therefore immune) to everything the customer has to say. Within a few months, they will have heard every threat you can throw at them, also (my favorite was the old "I'll cancel if you don't do X" line - being paid next to nothing means the employee could give a rat's behind about whether or not you keep your account or not), so don't expect to somehow get their attention. Furthermore, what you may not realize if you've never worked in such a call center (I have) is that said employee is actually carrying on a conversation and/or reading something totally un-work-related while only pretending to talk to you (that "mute" button on the phone sure comes in handy).

      So you can talk about your right to sue, demand they give you what they promised, etc etc all day until you're blue in the face. No one who cares about this will ever hear you. Ever. And if you get too forceful or threatening, said employee who took your call will do one of three things. 1) transfer your call back into the queue, 2) hang up on you, or 3) make a note on your account basically saying that you're a pain in the ass. If you're unlucky enough to get option 3, you will never, ever, get anything accomplished with that company again. You'll be lucky if you ever speak to a live person for more than a few seconds before the line gets "disconnected" or you're "transferred to the right department."

      Oh and by the way, if you do decide to actually go to court, and you get an attorney crazy/stupid enough to take your case, it will get thrown out, and you may end up paying the cable company you tried to sue a lot of money for court costs. In your contract, it explicitly states that no download/upload speeds are in any way guaranteed. So they could give you dial-up speeds and there would be absolutely nothing you could do about it.

      --
      Deja Moo: The distinct feeling that you've heard this bull before.
    2. Re:Comcast offering unlimited* service by hey! · · Score: 1

      Probably depends on the state you're in. Some states still have functioning consumer protection laws, so a call to the consumer affairs division of your state AG may help; in my state (Massachusetts), they'll often send a letter to the company on your behalf, which gets a lot more attention coming from the AG's office than it would from you.

      Small claims court is for people with time to burn. It should be called "personal vendetta" court. What you really are looking for is a law firm that does class action suits. That's serious money, and serious money means serious clout.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
  50. Reminds me of Fight Club by HangingChad · · Score: 5, Interesting

    God dam it so annoys me when the ISP's bitch and moan about the customers actually using the bandwidth they have signed a contract, and paid for to use.

    We're the people who build and run these systems. Comcast...or anyone for that matter...can't win that fight. I've worked with you wankers for 15 years, you're clever, relentless, and infinitely creative in a mischievous kind of way. If Comcast closes off BitTorrent, you'll find another way to disguise the traffic. They'll figure it out after a while and you'll figure out something else or go somewhere else. It may be difficult some days to motivate you at work, but you'll drive yourself until the early hours of the morning figuring out how to get around whatever filters they put in place. I've seen this arms race take place in every type of communication technology out there and you've won every time. Telephones, mainframes, PC networks, the internet. The road of technology is littered with the bodies of people who underestimate the technical genius of people who don't like being regulated.

    We run your switches, your networks, firewalls, databases and your web sites. We are root and domain admins, we have the back door passwords to your routers. We run packet sniffers and Snort, know what a clever fella can do with xp_ extended stored procedures and javascript, we grew up on ping and tracert....we don't need no steeking GUI.

    You can work with us or spend your life on an endless treadmill fighting a losing battle. But one thing history should have taught you...

    ....do not fuck with us.

    --
    That's our life, the big wheel of shit. - The Fat Man, Blue Tango Salvage
    1. Re:Reminds me of Fight Club by tepples · · Score: 1

      you'll find another way to disguise the traffic. They'll figure it out after a while and you'll figure out something else So the ISP gives each residential customer 10 GB per month combined up and down, but it gives a bandwidth "discount" for downloading documents containing correctly spelled English words over unencrypted HTTP, downloading JPEG, GIF, and PNG images that aren't obviously noise over unencrypted HTTP, or downloading anything from the ISP's own servers. Fine print in the new advertising states that "fast" applies to latency for a given request, not number of requests. Disguise that.

      or go somewhere else Do you know how much it costs to move a whole family once both the cable company and the phone company start pulling this $#!+?
    2. Re:Reminds me of Fight Club by Anonymous Coward · · Score: 1, Interesting

      Your use of the term "tracert" and "don't need to steeking GUI" (sic) in the same sentence seem to be contradictory. Chances are if you're NOT using a GUI on a given machine, you're not going to be running "tracert".

    3. Re:Reminds me of Fight Club by T-Bone-T · · Score: 1

      Huh? I've never run tracert outside of the command line. I didn't even know it could be run in a GUI.

    4. Re:Reminds me of Fight Club by Mattintosh · · Score: 1

      I think he's referring to the fact that tracert is the Windows version of traceroute, meaning that you can only run tracert if you have a (Windows) GUI.

    5. Re:Reminds me of Fight Club by T-Bone-T · · Score: 1

      They say you learn something new every day. Awesome.

    6. Re:Reminds me of Fight Club by SerpentMage · · Score: 1

      >....do not fuck with us.

      Yeah until a lawyer sends you to jail. Then we will know who will do the f***king, no? After all most geeks who seem to "own" the routers are a bit fair skinned...

      Give me a freaken break...

      --

      "You can't make a race horse of a pig"
      "No," said Samuel, "but you can make very fast pig"
    7. Re:Reminds me of Fight Club by Floritard · · Score: 1

      Is it just me, or does the first person in this post have a split personality? The Fight Club reference only lends credence to my supposition.

    8. Re:Reminds me of Fight Club by 4partee · · Score: 1

      Typical basement dweller. They think it is their machine and we need their permission to use it.

  51. Mod parent up by cumin · · Score: 1

    Freaking brilliant! Everybody wins!

    --
    Back in my day when we chiseled our bits into stone and sent them by mule train from village to village...
    1. Re:Mod parent up by BoberFett · · Score: 1

      Including the RIAA who can then sue ISPs for millions of dollars because they're infringing copyright by storing those files on their servers for download by the ISPs customers.

    2. Re:Mod parent up by atamido · · Score: 1

      I would be inclined to say that plain old caching is a pretty safe practice. Many ISPs already do it for general HTTP web page traffic, so extending that to include Bittorrent traffic seems like an easy move. Still, since when does the possibility that something is illegal stop a corporation from doing it to give them a competitive edge?

  52. get a clue by m2943 · · Score: 1

    Come on, haven't you figured out that "unlimited plan" doesn't mean "unlimited"? Just like "satisfaction guaranteed" doesn't actually mean that. It's just one of those phrases.

    In fact, the best thing to do would be for ISPs to scrap unlimited plans and return to volume pricing, preferably peak/off-peak. That way, people pay for what they actually use and we can eliminate the guesswork.

  53. simple economics by m2943 · · Score: 1

    Simple economics tells you that the monthly payment you make must more than cover the average monthly bandwidth costs, with a tidy profit. So, normal iTunes and YouTube usage are covered. And, in fact, neither of those comes close to what a serious Torrent user will consume.

    1. Re:simple economics by knewter · · Score: 1

      I reject your notion of normal. We have a media room in our house, projector screen and home theater, etc. That thing is almost always running vbs.tv or something along those lines, which is high def streaming video. It's a normal usage (I don't watch the television, I watch IPTV). But it does come painfully close to the bandwidth a torrent consumes. I pay for unlimited data, and if they were to start restricting *my* usage by packet type to save themselves money I would be extremely pissed. I regularly use bittorrent to download legitimate and non-copyrighted traffic. If I were a Comcast customer I would find a sales rep and camp outside his house with a loudspeaker. Drive all their salespeople insane and they'll comply. Now get to it, Comcast customers...

      --
      -knewter
    2. Re:simple economics by catbutt · · Score: 1

      So what is your notion of normal? I'd put someone like you in the 99.5 percentile, and if the word "normal" has any useful meaning whatsoever, it wouldn't include the 99.5 percentile.

    3. Re:simple economics by ElBeano · · Score: 1

      The parent is like a lot of slashdotters who seem to have no grasp of economics or the history of the commercial Internet. Bandwidth has always been oversold/oversubscribed. It actually worked well in the dialup world, as it was mostly unnoticed. Now, with faster last mile connections, the situation is different. If I were an independent Internet service provider with a sufficient number of business connections to serve, I'd innovate with advanced services, unblocked ports and metered access that reflected the actual economics of the connection. I'd make the real money on the services and price the access as a commodity. Tiering/metering the service would make that work.

    4. Re:simple economics by m2943 · · Score: 1

      I reject your notion of normal. We have a media room in our house, projector screen and home theater, etc.

      OK, so you're a rich guy with tens of thousands of dollars of home entertainment equipment, and you're subscribing to an IPTV service that makes you abuse your network connection instead of them paying for a content distribution network. I just use cable for reading news and occasionally connecting to Subversion. Why should I subsidize your bandwidth usage?

      It's a normal usage

      Statistically, it's not "normal" usage. Contractually, it's not permitted usage. And economically, it just wouldn't work out.

      I pay for unlimited data, and if they were to start restricting *my* usage by packet type to save themselves money I would be extremely pissed.

      No, you do not. If you're a residential Comcast customer, you pay for unlimited data subject to the TOS. Those TOS specifically prohibit file sharing. If you want to be able to do file sharing, ISPs offer other plans for that as well--more expensive ones.

      Alternatively, you can co-locate, which is what I do for my servers.

  54. I'm canceling. by visualight · · Score: 2, Interesting
    From Comcasts Terms of Service:

    We may change our prices, fees, the Services and/or the terms and conditions of this Agreement in the future. Unless this Agreement or applicable law specifies otherwise, we will give you thirty (30) days prior Notice of any significant change to this Agreement. If you find the change unacceptable, you have the right to cancel your Service(s). However, if you continue to receive Service(s) after the end of the notice period (the "Effective Date") of the change, we will consider that you have accepted the changes. You may not modify this Agreement by making any typed, handwritten, or any other changes to it for any purpose.

    I'm calling Monday and canceling on the grounds that this constitutes a Service Change, and too bad about their stupid term agreement. I live in Tacoma WA so I get to choose between multiple cable ISP's, DSL, etc. I give a damn about any fine print in a TOS agreement, I pay for an internet connection and I want what I pay for. They cannot be allowed to dictate what class of packet I can or cannot upload through the connection I pay for. Bandwidth yes, but that's not what they're doing here.
    --
    Samsung took back my unlocked bootloader because Google wants me to rent movies. They're both evil.
    1. Re:I'm canceling. by HungWeiLo · · Score: 1

      I'm in the Puget Sound area too, and I've been mucking around my router thinking it was my setup the whole time (I suspected Comcast, but wasn't sure). So what reputable ISPs are available in our region (Speakeasy?)

      --
      There are a huge number of yeast infections in this county. Probably because we're downriver from the bread factory.
    2. Re:I'm canceling. by visualight · · Score: 1

      I don't know about the whole Puget Sound area, but the City of Tacoma has Click! which is their own last mile cable network. They don't provide ISP services though, you have to go through AdvancedStream, HarborNet etc.

      Outside of Tacoma, Speakeasy DSL and Covad t1 are all I know of, although I've seen ads for Earthlink Broadband. No clue what tech is behind Earthlink.

      Personally I think Click! is the way to go for the whole country. The city builds out the infrastructure but other companies contract for the ISP part of the deal. One network, a menu of ISP's to choose from.

      --
      Samsung took back my unlocked bootloader because Google wants me to rent movies. They're both evil.
    3. Re:I'm canceling. by Buran · · Score: 1

      Are you SERIOUSLY thinking about buying internet access from BEST BUY?! You must be absolutely mental.

    4. Re:I'm canceling. by zakezuke · · Score: 1

      I'm calling Monday and canceling on the grounds that this constitutes a Service Change, and too bad about their stupid term agreement. I live in Tacoma WA so I get to choose between multiple cable ISP's, DSL, etc. I give a damn about any fine print in a TOS agreement, I pay for an internet connection and I want what I pay for. They cannot be allowed to dictate what class of packet I can or cannot upload through the connection I pay for. Bandwidth yes, but that's not what they're doing here. I'm rather pleased with click with netventure as an ISP. My only complaint is inbound ports are blocked, like 23/25/110. SSH isn't blocked oddly enough. But they at least offer a commercial plan. It's not such a stellar deal as it once was as comcast finally increased their caps from 1.5/128 to something more reasonable. Dollar for dollar comcast offered me a much better deal, $30/month so long as I was willing to attempt to cancel every 6 - 12 months.

      I have been online with them for about 5 years, the only real issue I've had is combo bad cable box and modem which took a while to troubleshoot. Comcast in contrast had more intermittent problems.

      --
      There is no sanctuary. There is no sanctuary. SHUT UP! There is no shut up. There is no shut up.
  55. Re:Net Neutrality? by Scynet85 · · Score: 1

    Erm, we currently have Net Neutrality, and it doesn't seem to be probihiting anything. Also, I'm sure most folks here are NOT against net neutrality. It's as if you've mixed the whole thing up, and thinking NN is the bad thing looming in the future and not the other way around. Maybe I just didn't understand, but I'm baffled at the amount of people who don't even know if Net Neutrality is the old way or the new way proposed by ISPs.

  56. So use IPsec by Skapare · · Score: 1

    So use IPsec in ESP mode.

    Ironically, I've hated IPsec since its inception. I always though security should be end-to-end on the connections, since in theory it was just the data, and the end point authentications, that were important. Now it appears that IPsec actually has a valid use. One problem is that it won't completely protect from provider abuses, since once they determine some IP address on the network is a Torrent or Tor site, they can throttle based on that IP address (source IP). And we also need to be using IPsec/ESP for other communications as well.

    --
    now we need to go OSS in diesel cars
  57. TOS: no servers at all by m2943 · · Score: 1

    If you look at your Comcast terms of service, you will find that you're not allowed to run any servers at all. So, to all those people complaining about Comcast not honoring their "unlimited" plans, you're not honoring your part of the contract either. Comcast will tolerate a limited amount of "serving" (webcams, remote access), but torrents go far beyond that.

    Now, this situation sucks. I don't use a lot of volume, but I want fast speed when I need it and I'm basically subsidizing people who send around porn and warez. Furthermore, abuses by high volume server and p2p operators on the network not only limit the performance I paid for, they also may force Comcast to institute filters that also interfere with my usage.

    I think the solution is to go to volume pricing and drop unlimited plans altogether. That way, if you want to run p2p or some server over cable, you pay for what you use. Or you can do what what I do for my high-volume server needs: colocate.

    1. Re:TOS: no servers at all by Shados · · Score: 2, Insightful

      This should have ended the discussion altogether (don't know if someone mentionned it before the parent though). For residential service, most ISPs say "No server". Of course, server is an overly broad term thats up to interpretation, but in this case it is used correctly I feel. Complain when they start throttling Youtube downloads or something.

    2. Re:TOS: no servers at all by Anonymous Coward · · Score: 0

      Actually the TOS says no servers for 'any business enterprise' so personal ones are ok.

    3. Re:TOS: no servers at all by mdmkolbe · · Score: 1

      So does that mean I shouldn't host an online game or use Remote Desktop to connect to my machine? For that matter, since UDP is connectionless, are you going to call an incoming UDP packet a server?

    4. Re:TOS: no servers at all by Shados · · Score: 1

      It means they can stop you from hosting any kind of server if they see fit. The "if they see fit" is the important part here. Can we agree there's a huge difference between remote desktop and seeding a torrent? Thank you.

    5. Re:TOS: no servers at all by garutnivore · · Score: 1

      Your argument depends on how you define "server". I do not consider the mere fact of sharing a torrent to make my machine a "server". AFAIK, neither Comcast nor anyone else has said that whey mean by "server". Until they define what they mean, all arguments that rely on the notion of "server" are specious.

    6. Re:TOS: no servers at all by m2943 · · Score: 1

      It means that Comcast isn't obligated under their contract with you to let you do any of that.

      Now, you might want to argue that they ought to be obligated, that they are abusing their monopoly by writing such terms into your contract, etc. You might even be right. But those are different arguments and they need to be addressed at different people.

      The kind of regulation I would favor is requiring ISPs to do simple volume-based pricing above a connection fee, and to make pricing transparent.

      If you'd read your history, you'd know that all of this is, in fact, quite analogous to railroads about a century ago.

    7. Re:TOS: no servers at all by m2943 · · Score: 1

      Your argument depends on how you define "server".

      No, it depends on how they define "server"; it says so in the TOS.

      Until they define what they mean, all arguments that rely on the notion of "server" are specious.

      Actually, in the TOS, it pretty much says that they can restrict your traffic in any way they like for any reason they like. So, what is "specious" is your kinds of attempts to argue that they are obligated to let your run P2P nets.

      And for those of us who actually like to use our networks to do web browsing and the occasionally download something, P2P usage by others is a big nuisance.

      In any case, I think the solution is simply to go to volume based pricing. And, in fact, I think it would be good if ISPs were regulated and forced to offer transparent, volume-based pricing. That way, you can run all the P2P software you like and pay for the bandwidth, rather than have low-volume users like me subsidize you.

    8. Re:TOS: no servers at all by m2943 · · Score: 1
      Until they define what they mean, all arguments that rely on the notion of "server" are specious. ... and, incidentally, they do exactly that:

      run programs, equipment, or servers from the Premises that provide network content or any other services to anyone outside of your Premises LAN (Local Area Network), also commonly referred to as public services or servers. Examples of prohibited services and servers include, but are not limited to, e-mail, Web hosting, file sharing, and proxy services and servers;


      Clear enough for you?

      http://www.comcast.net/terms/use.jsp
    9. Re:TOS: no servers at all by garutnivore · · Score: 1

      run programs, equipment, or servers from the Premises that provide network content or any other services to anyone outside of your Premises LAN (Local Area Network), also commonly referred to as public services or servers. Examples of prohibited services and servers include, but are not limited to, e-mail, Web hosting, file sharing, and proxy services and servers;

      Again an undefined term: "network content". Before you accuse me of asking that Comcast provide a dictionary, that's not what I'm looking for but in any contract key terms must be defined. The problem is that terms like "service" and "server" and "network content" are vague in the extreme and require more precision than what Comcast provides. That line quoted above does not do that job. What Comcast provides is not a definition, it is a pseudo-definition. It looks like a definition but when applied it does not allow to clearly distinguish between valid usages of the service and abuses.

      Going by that pseudo-definition, if I send an email I'm providing "network content" (they don't define this term so I'm guessing that emails are network content because of the second sentence above) to someone "outside of my Premises LAN". If that does not convince you then maybe the next example will. If I run an instant messaging software that allows my customers to reach me for support, then I'm running a server too because I'm providing a "service" to someone "outside of my Premise LAN". Same thing if it is my wife who just wants to chat with me. But it seems to me that that's an entirely different matter than someone hosting a TB of movies for download. The problem is that this pseudo-definition does not distinguish those cases. Comcast is purposely keeping things vague because that allows them to badger their customers into submission more easily.

      Switching to a metered system would allow them to have a precise notion of what overusing the service means.

    10. Re:TOS: no servers at all by m2943 · · Score: 1

      Again an undefined term: "network content".

      I'm sorry you are having trouble understanding that term, but they get quite a bit more explicit: no "servers", no "public services", no "file sharing", no "e-mail servers", no "web hosting", no "proxy services". BitTorrent is clearly prohibited. Furthermore, they can turn off anything else they don't like; it says so in the TOS. That's what you're paying for. If you don't like it, get a different subscription.

      Comcast is purposely keeping things vague because that allows them to badger their customers into submission more easily.

      They are keeping things vague because it's a low-cost consumer service with no guarantees whatsoever.

      If you don't like it, get a different subscription; Comcast offers subscriptions that let you run servers.

      Switching to a metered system would allow them to have a precise notion of what overusing the service means.

      If you don't like the "imprecise notion" they are giving you, get a subscription that gives you the guarantees you want and pay for it.

      Now, I agree that volume-priced models would be nice even for consumer cable (I've said so before). Of course, I think P2P and business models based on it would come to a crashing halt, but that's just fine by me.

  58. my comcast connection by DragonTHC · · Score: 2, Insightful

    I have comcast. My connection lately has been passing the speakeasy speed test at 20Mbit down, 2Mbit up.

    I use bit torrent to get game demos and betas, Linux distros, and to share music that I have composed and hold copyrights for.

    I can seed just fine. You have to find that sweet spot. (the point at which your upstream starts to impact your downstream). for me, it's about 80KBps.

    That being said, I am forced to use peer guardian 2 and alternative ports to see to it that my traffic gets to its intended location.

    Comcast has noticed that bit torrent defeats its "Power Boost" technology which bursts full bandwidth for the first 20 or so MB.

    With Bit Torrent, it's all the first 20 or so MB. so everyone that can seed that fast is allowed to.

    Bit Torrent is a legitimate technology. I has legal uses. I use it legally. Comcast wants to throttle it because they're losing money on it.

    --
    They're using their grammar skills there.
  59. End of Bittorrent? End of Comcast! by Soong · · Score: 1

    Ending Comcast the right answer. Leave, don't use their crappy service. Tell them why. If you're stuck in a monopoly zone under them, complain to them, complain to whatever city,county,state or federal government has any regulatory influence over that monopoly. They can either provide good service, or go rot.

    --
    Start Running Better Polls
  60. reselling can be good by davidwr · · Score: 1

    Fine. Assuming the cable company can make good money at $600 selling you a fully-utilized pipe, and assuming YOU will take full responsibility for your downstream users, they'd probably be happy with that arrangement.

    I'm sure this kind of thing already happens under the table. I pay $49.95 for my 10Mbps/connection and set up a wireless connection to my 2 neighbors and charge them $16.65 each, off the books and in blatant violation of my contract.

    This will work out fine for small cooperatives like you describe, where everyone knows each other and the cooperative is built on personal trust as much as anything else. Scaling it up could be problematic.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  61. Business account by finkployd · · Score: 4, Interesting

    You want to run a server without hassle? get a business account. I have Comcast workplace at my home and I get 6m/768k with 6 static ip addresses and no port blocking or restriction on servers for $100/month.

    Look, I'm not totally happy about it, but this is how it works today. You want a restrictive, "client only" connection to the internet you can do that for $20-$60 a month. You want a real internet connection you are going to have to pay $100+ a month in most places (in the US).

    Frankly, I am hoping the ISPs finally just come clean and admit that their bottom tier service is client only, practically web/email only. There is a market for that and there is nothing really wrong with them selling it that way.

    Verizon's FIOS service supposedly has a comparably priced business tier as well, and they are laying fiber on my street as we speak. I might check that out when it lights up (although I generally find Verizon slightly more evil than Comcast).

    Finkployd

    1. Re:Business account by Pollardito · · Score: 1

      but can you confirm that they're not doing the same thing to your bittorrent connections? i'd be surprised if they even discriminate with that blocking

    2. Re:Business account by finkployd · · Score: 1

      I haven't used bt in a while (I pretty much only use it for downloading linux install disks). I'll try it later and check back.

      I would be surprised if they are blocking/throttling ANYTHING, since I believe that would be a violation of the contract I signed with them.

    3. Re:Business account by volve · · Score: 1

      Business connections come with no bandwidth usage guarantees. For that you would need a "commercial" account, which I believe start at $1,500/month. These details came to light a few months ago when Comcast started making threatening calls to people who used "too much" bandwidth, despite them never being provided any measure of said limits.

    4. Re:Business account by Anonymous Coward · · Score: 0

      Blimey that's expensive !

      I get 8mbps down, 448kbps up, 30Gb on peak, 300Gb off peak, no ports/protocols blocked, 6 static IPs, 50Mb webspace, the abilitiy to run PHP/CGI/Python etc. and a MySQL database. All for £ 20 a month - and that's in ripoff England where we usually pay through the nose for second rate goods/services.

      From what I read on /. it seems like it really sucks to have an American ISP :)

    5. Re:Business account by finkployd · · Score: 1

      We pay a surplus for all of the NSA monitoring gear and the record keeping the ISPs need to do for the RIAA/MPAA.

      Finkployd

    6. Re:Business account by maztuhblastah · · Score: 1

      I get 6m/768k with 6 static ip addresses and no port blocking or restriction on servers for $100/month.

      You do realize how pathetic that is by non-American standards, right? $100/month for 768kbit upstream? Jesus H. Christ. "No port blocking or restriction on servers" isn't an added feature, it's a GODDAMN INTEGRAL PART OF HAVING AN INTERNET LINK YOU COMBASTARDS!

      BTW, I'm not yelling at you Finkployd -- I'm just seriously shocked at how badly American ISPs are raping their customers.

    7. Re:Business account by finkployd · · Score: 1

      I agree, but between our totally screwed up government, horribly broken justice system and "above the law" corporate conglomerates calling the shots, our isps raping us is really not the greatest of our concerns right now.

  62. suddenly killing processes by davidwr · · Score: 2, Insightful

    You don't suddenly kill their process if they exceed 60 seconds of CPU time. For those of you old enough to remember:

    ABEND 322
    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  63. Contract, Alternatives, Gaming by johndmann · · Score: 1

    I'm pretty sure if you dug down deep in your 'contract' you signed with your cable internet provider that you will find the truth about how there is only so much bandwidth available to your entire neighborhood, and that they are free to throttle you whenever and for whatever reason they wish in order to keep everyone within the norms. So you're downloading or seeding 500TB/day while the guy down the road can't even load up his G-Mail account to view pictures of his brother on vacation due to your consumption. For this, I understand and applaud their decision to enforce the throttling... However, I think they should have made this more apparent to the customers from day one.

    While cable offers greater potential for speed/burst speeds since you can 'leech' the bandwidth from your neighbors, you might want to consider a high-end DSL or even a T-line if you want more stable and pre-defined throughput values.

    I currently use a mid-tier SBC/AT&T DSL plan, and it's plenty for my personal uses, but just like all of the cable internet users out there, I am having bandwidth issues as well, so this might not be the way to go. I've been having problems with an online game, the same one quite a few people have been having problems with lately. It's kind of sad that their attempts to squash torrent traders is affecting other things, such as gaming.

    1. Re:Contract, Alternatives, Gaming by natgry · · Score: 1

      one thing you're forgetting, DSLAM. Cable and DSL both function in very similar ways in regards to their business practices, and both have more customers on any given connection than they can support should all of those customers attempt to use their full bandwidth at any given point in time. the DSLAM causes the same issue as channel sharing in neighborhoods on cable, anyone within 7-10 thousand feet of the DSLAM is sharing the bandwidth too.

      beyond all that, every ISP is screwing you over at the exchange and peering points. most ISP's attempt to charge for peers regardless of whether or not being connected to that peer would be beneficial to them. more peers = more outbound/inbound bandwidth and better access to the whole of the internet. peering is dirt cheap compared to having dedicated lines run, and having an open presence at a PAIX or SIX facility gives your customers better access to the internet and more bandwidth.

    2. Re:Contract, Alternatives, Gaming by Mephistophocles · · Score: 1
      Good points - one thing one might add is the fact that anyone using Comcast/Charter/Misc-cable-company internet service for anything other than just light surfing and maybe an online game now and then is relying on a television company to provide a mission-critical service. Stop and think about that for a minute - the cable companies are not and never were true info-communications companies. They're in the business of providing entertainment, not rock-solid communications. The technology cable companies use to provide internet service just isn't (and never was) meant for heavy, serious use.

      If your internet is mission-critical, or if you're an enthusiast user, for crying out loud, go with the companies who actually know how to provide telecommunications services (if you're too far from the hub, I feel your pain, but hang in there - the network gets bigger daily).

      --
      Deja Moo: The distinct feeling that you've heard this bull before.
    3. Re:Contract, Alternatives, Gaming by yamiyasha · · Score: 1

      I had local DSL from two different Phone companies. Both constantly disconnected and didn't know why, and i found out why, both used crappy cheep hardware. so comcast is actually better because i haven't been disconnected one And hell i can use IRC now because with qwest i would be disconnected in 5 minutes

    4. Re:Contract, Alternatives, Gaming by johndmann · · Score: 1

      The game I use in particular uses torrent to distribute their data for patches, and so forth. As such, it gets flagged at the ISP as "torrent traffic" and I get transmissions capped. Though online gaming doesn't require much bandwidth (compared to some other things), it has been extremely affected by the recent ISP changes. I went from a constant 30-90ms latency to only having 30-90ms when I am standing still away from any other players and server-controlled beings. When I get around something that requires more data to be transfered, these ISP changes cause a drastic change. Often peaking at 2000-3000ms, this is ridiculous. If they are going to use a policy such as this to curb online piracy (or whatever their reason), they need to consider a deeper packet analysis, or have certain traffic on a "safe-list", such as online games.

      And to think that I was considering hosting a torrent tracker for my family to share home videos not that long back. I'm glad I never got around to it, as these recent problems are major hindrances.

  64. More likely to be done for new services by davidwr · · Score: 1

    Sooner or later, ISPs are going to say "enough" and their new consumer offerings will be metered-bandwidth-only.

    You want that fancy new twice-as-fast pipe we are rolling out just in time for Christmas? Fine, give up your all-you-can-eat contract.

    Within a few years, the only people still on the all-you-can-eat plans will be relatively-small-pipe customers and people willing to pay high-end business rates.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:More likely to be done for new services by internewt · · Score: 1

      You want that fancy new twice-as-fast pipe we are rolling out just in time for Christmas? Fine, give up your all-you-can-eat contract.

      That is exactly what the shit ISP[1] Zen in the UK has done. I am currently on an ADSL line from Zen, 512K down and 256K up, but otherwise unlimited, and its costing about £30/month (also 8 IPs, rDNS). This account is not available to new customers anymore, they get the choice of:

      8meg down, 448K up, 50gig/month, £34.99
      8meg down, 448K up, 20gig/month, £24.99
      8meg down, 448K up, 2gig/month, £17.99

      The up and down speeds are theoretical maximums, I understand in the real world you'll get half those numbers. If my dirty maths are right, I can download 1283gig in a month (and upload ~600) for £30. I'd hate to think what that'd cost on the "better" packages!

      But this business model only exists because BT still own most of the infrastructure in the UK, and they charge other ISPs by the byte transferred. ISPs can put their own equipment in some telephone exchanges to bypass BTs bullshit, but they then play by their own bullshit rules because everyone else in the industry does (see Sky's broadband offering: shite considering they are using LLU'd exchanges!).

      [1] I know /. will add a norel or something to that link stopping the search engines from cataloging Zen under "shit ISP", but it makes me feel better.
      --
      Car analogies break down.
    2. Re:More likely to be done for new services by PygmySurfer · · Score: 1

      Sooner or later, ISPs are going to say "enough" and their new consumer offerings will be metered-bandwidth-only.

      It's already started here in Canada. New Bell Sympatico accounts are capped at 60GB/Month. I think some of the other ISPs cap connections as well.

    3. Re:More likely to be done for new services by petermgreen · · Score: 1

      apparently if you can get it be ( bethere.co.uk, another llu provider ) is very good.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    4. Re:More likely to be done for new services by Bertie · · Score: 1

      Damn right it is. I've just signed up with them. They advertise up to 24 meg, but I personally am seeing just over 16, and my upload speed is 1.2 meg. It's plenty for anybody, I'd say. And as for download limits, they claim to be unlimited, although this isn't strictly true, but apparently no user's ever actually hit their limits, so they must be pretty high.

      All for £24 a month. That'll do me.

    5. Re:More likely to be done for new services by internewt · · Score: 1

      And as for download limits, they claim to be unlimited, although this isn't strictly true, but apparently no user's ever actually hit their limits, so they must be pretty high. That is exactly the issue I don't like: vague limits. Having a quick look at Be's T&C, the Be Lite account clearly has a limit, but the unlimited doesn't appear to. But that may mean the limit is there, but ultra weasely worded, if what you're saying is true. :(
      --
      Car analogies break down.
  65. Renting? by tepples · · Score: 1

    Another incentive to secure wireless networks (or just run wired) If you were renting your house or apartment, how would you convince your landlord to accept modification of the walls?
    1. Re:Renting? by dknj · · Score: 2, Insightful

      you don't. drill a hole, don't fuck it up, and patch it when you leave. or, if it's a house, put wall plates in the wall. if your landlord asks about it, say your ISP installed it. just make sure you can do a professional job, or get someone that does (cable/telephone companies tend not to ask if you are renting if its a house and you don't live in a neighborhood thats frequently rented out, i.e. college town).

      i have ran 100+ ft of cat5 through holes in my rented house before (ghetto method) and, most recently, left wall plates in my basement for future tenants/owners. as long as your walls look normal when you move out, you won't get charged. YMMV

    2. Re:Renting? by internewt · · Score: 1

      i have ran 100+ ft of cat5 through holes in my rented house before (ghetto method) and, most recently, left wall plates in my basement for future tenants/owners. as long as your walls look normal when you move out, you won't get charged. YMMV

      Damn right other people's milage may vary. About 6 years ago I lived in a rented place and ended up getting a bit burned. The landlord gave us a verbal "OK" to drill through the side of a kitchen cabinet so hoses could be run to/from a washing machine (not just over the phone, we asked when he came round and showed him exactly what we planned to do). When we moved out, that "damage" was one of the justifications he came up with for keeping the most of the deposit! Between me and an ex we lost about 200UKP, but that sum wouldn't get you fuck-all work out of a solicitor, and legal action was the only thing left we could have done :( . If I ever rent again, I'll refuse to pay the last month's rent and tell the landlord to keep the deposit.

      But of course most humans are humane: if you don't fuck the place up, they'll be cool with subtle modifications. Well added features in a property (LAN wall points, hose points for domestic appliances, decent decorations etc.) would increase the value of a property anyway.

      --
      Car analogies break down.
    3. Re:Renting? by datapharmer · · Score: 1

      Simple, ask first telling them that it will increase the value of the property and the rentability... I own my home and just wired it. Many people use TiVo and gaming systems. It saves money not to need to buy the wireless adapters for all these gadgets and for gaming it reduces latency and increases bandwidth which gamers love.

      --
      Get a web developer
    4. Re:Renting? by Kadin2048 · · Score: 1

      There are lots of ways to run wired Ethernet nondestructively, if you get creative.

      My two favorite ways:

      1) Just leave it out in the open, but get it out of the way. What I usually do is go out and buy a whole bunch of 3/4" cup hooks and run them around the ceiling, generally about 1" down from the top of the wall (screwed into the wall). They leave small enough holes so that it's trivial to patch them when you leave with a little bit of spackling, if your landlord will even care about small holes like that. I basically run them around all four walls of any rooms where I have a lot of computer equipment, and then run the cabling from client machines up to the ceiling, around to the room's door, then down to floor level and go under the door at the hinge side (usually with some gaffer's tape to keep it out of the pinch point) then back up to run to wherever it needs to go. As long as you don't need to get more than 4 or 5 pieces of Cat-5 under a door, this works pretty well, and it keeps you from ever having cable in places where you'll trip over it.

      2) To get between floors, or to just get the wiring out of sight (the ceiling-run wiring doesn't go well with the S.O., funny, that), I've taken to running the cabling through the forced-air HVAC ducts. It can be challenging to run it from one room to another room on the same floor, but it's a good way of getting cabling to another floor. It's pretty easy to take off the vent faces and drop wiring down them, or in some cases just thread the Cat-5 through the grille.

      The other place I've seen people run wiring in apartments, is using the "wet walls" where a lot of plumbing runs vertically from one floor to the next. One of the easiest ways to get into this is via the access panels that are usually located near the faucet end of bathtubs (often in a closet or the next room ... there usually has to be one so you can get to the tub drain's trap, they just are hidden sometimes). I've never tried this because the plumbing in my house doesn't *go* anywhere that I want to run cables to.

      The other thing that's sometimes worth investigating is if there are any extra, unused pairs in the household phone wiring. This isn't the greatest networking medium in the world, but you can sometimes push 10BT over a single unused pair (half-duplex), if the wiring is decent and you can isolate that pair from anything else at either end. (Actually if you don't care about using the phone wiring for anything, I've run 100BT over Cat3 wiring, strictly point-to-point, for distances less than about 50'. I just leave pins 7 and 8 in the RJ45 disconnected, wiring the others as normal T568A.)

      It can take a few hours of work to wire an apartment this way, but I've found the time is worth it, in terms of improved reliability and bandwidth over wireless.

      --
      "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
    5. Re:Renting? by pnutjam · · Score: 1

      running through the HVAC system is a real no-no unless you use the more expensive Plenum cable. Plenum cable doesn't give of toxic fumes when burning.

      You also forgot my favorite place for cables, under the carpet. I use a fishtape to run it down the hall.

  66. ISP-side customer-controlled firewalling by davidwr · · Score: 1

    Personally, I'd love it if my ISP has a "virtual firewall" that I could administer, which blocked all incoming and high-abuse-potential-outgoing ports by default.

    When I signed up, I would be given the following template, with some check boxes pre-checked:
    _x_ Disable all unsolicited incoming traffic
    _x_ Disable outgoing email except through ISP mail servers and through web-mail
    ___ Only allow web and file-transfer traffic (http:, https:, and ftp:)
    _x_ Filter using ISP-level antivirus tool (no guarentees!)
    _x_ Filter using ISP-level ad-blocker (no guarentees!)
    ___ Override above and allow everything needed for IRC
    ___ Override above and allow everything needed for torrents
    ___ Override above and allow everyting for [repeat this line for the top-10 consumer applications that require firewall customization]
    ___ custom

    Where custom was a full firewall editor.

    This service should be built into the cost of the contract because it will reduce the chance that my computer will become a zombie, and will reduce the ISPs costs of delivering traffic to me.

    In addition, for an additional charge, I'd be willing to pay for parental controls.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  67. Nationalize it. by birdboy2000 · · Score: 1

    What will it take for the public to realize that some things simply can not be handled well by the private sector? The only way to stop people from ripping us off for a necessity they have a natural monopoly in is for we the people to take control of it ourselves.

    1. Re:Nationalize it. by Tatsh · · Score: 1

      That will not happen, because we have idiots in the government who truly believe big business (who always pays them off) can do all the work and are better than having government works do it. To support this, they say too much government will result in socialism/communism. I probably will leave this country because other countries WITH socialist parties and such seem to have a lot more emphasis on the people.

    2. Re:Nationalize it. by photomonkey · · Score: 1

      Great, so I can hand my browsing and usage information over to a government agency DIRECTLY, instead of to a 'private' corporation who may or may not choose to turn my information over to te government.

      Maybe we should nationalize TV, radio, newspapers and magazines too?

      I mean, what good would it be for the government to have direct and unbridled control over not only our access to information, but also to the information itself? I'm sure they'd never take advantage of that situation.

      --
      Message contains 1 attachment: spam.gif
    3. Re:Nationalize it. by birdboy2000 · · Score: 1

      Like how they take advantage of their control over the postal service?

    4. Re:Nationalize it. by sydbarrett74 · · Score: 1

      What will it take for the public to realize that some things simply can not be handled well by the private sector? The only way to stop people from ripping us off for a necessity they have a natural monopoly in is for we the people to take control of it ourselves. Yeah, because we all know that, for example, the USPS is a paragon of a well-run service.
      --
      'He who has to break a thing to find out what it is, has left the path of wisdom.' -- Gandalf to Saruman
    5. Re:Nationalize it. by photomonkey · · Score: 1

      To a certain extent, they have taken advantage of their control over the postal service. Most letters and packages are xray-ed for content, and in times past, they have placed strict, moral-based restrictions on mailing pornography and allegedly subversive materials. I point you to Larry Flynt as well as the now redacted Alien and Sedition Act as two topical examples of where they have, in my opinion, overstepped their bounds.

      Besides, in this day and age, there are plenty of alternatives to using the Postal Service to send and receive letters and packages.

      --
      Message contains 1 attachment: spam.gif
  68. different pricing models by davidwr · · Score: 1

    The ones that charged per minute were charging way too much compared to the all-you-can-eat model.

    If they'd lowered their prices or adopted an "allowance" model, that amounted to "all you can eat" for 90% of their customers they would've survived. The other 10% would've either anted up or left to another carrier. Either way, the ISP wins.

    Some dialup providers implemented pseudo-bandwidth caps by cutting you off after X number of hours. This was more to free up their modems than to conserve bandwidth though.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  69. Interesting.... by FlyingGuy · · Score: 1

    With the "common Carrier" status, ISP's pipe suppliers and what not can claim they "just carry traffic" they don't know or care about the content.

    Now it seems by actually Identifying Torrent traffic, and throttling, regulating, metering or in any way attempting to regulate it, they could quite possibly setting them selves up as an RIAA target.

    It would seem to me, and perhaps a lawyer or two, that by doing so, they are "knowingly, transmitting, Allowing to be transmitted or perhaps even facilitating the transmission of prohibited ie: Copyrighted Material".

    Just one of those things that makes you go hmmmm.

    Also it seems to me, that a minor software update to the bit torrent software could circumvent the whole process. Simply add code that will allow the software to start randomizing ports during the transfer. It would be simple enough for the packet exchange to carry a "Next Packet on port n" and completely avoid the entire throttling mechanism.

    Just another one of those things that makes you go hmmmm.

    --
    Hey KID! Yeah you, get the fuck off my lawn!
  70. Still works for me by chiefbutz · · Score: 1

    I utilize comcast and I have noticed a slight different, but nothing too bad. I can't seem to get over 100KB/s of torrent traffic, but I am alright with that. However when I am using uTorrent it seems to make comcast or something uneasy and all of my computers get affected. When I use Azerus I don't have that problem. Just some food for thought

  71. Re:If more ISPs adopt this strategy,shouldn't it m by westlake · · Score: 1
    Unless there is a legal loophole allowing them to unilaterally change the terms of consumer contracts from Internet to Throttled Censornet...

    "terms of service subject to change without notice"

  72. Re:Net Neutrality? by the+eric+conspiracy · · Score: 1

    wouldn't Net Neutrality prohibit Comcast from engaging in this sort of behavior?

    No. Net Neutrality has nothing to do with this sort of traffic shaping.

  73. no it wont be the end of torrent by unity100 · · Score: 1

    or any other filesharing.

    lets face it - web surfing and filesharing are the bulk of all activities people do on the net. if they hamper either one, people will just go and find an isp that doesnt hamper them and thats it. its the people who decide.

  74. Residential vs business by tepples · · Score: 1

    It's called a business or professional account. You want it? You pay for it. Until the ISP complains that it has a policy of not providing business Internet access to subscribers to residential cable television.
    1. Re:Residential vs business by Hawke666 · · Score: 1

      So cancel the residential cable TV subscription.

  75. Absolutly not! by Eric+Damron · · Score: 1

    Absolutely not! I don't want to go back to the days where I have to fear outrageous on-line bills. I still remember being burned by $6.00/hr charges! Once you start down that path you can expect ISPs to start milking the new payment strategy to maximize their profits.

    The internet could end up being a "pick up your mail, serf one or two sites, get the hell off" experience. If you did anything more you could expect a $200.00 bill due to the high cost per megabyte. Hell no!

    --
    The race isn't always to the swift... but that's the way to bet!
    1. Re:Absolutly not! by Anonymous Coward · · Score: 0

      What is ironic is that companies in the US are attempting to head towards this model, while the rest of the planet is busy laying down fiber (including the last mile) and working on high bandwidth wireless structures.

      There is some good news though. Cellular providers, though not perfect, are wising up to the fact that people want high bandwidth connections faster than EDGE or (ugh) GPRS, and are starting to get on that bandwagon. More cellphones can act as gateways, allowing a user to hook up their LAN to a wireless connection. If cable providers tighten the noose too much, more and more people will pay the $20-$40 for an unlimited data plan with their cellular provider.

      Lastly, there is always WiMAX...

  76. Double standards by Anonymous Coward · · Score: 0

    "Comcast doesn't seem to discriminate between legitimate and infringing torrent traffic"

    Can Bittorrent discriminate between legit and infringing?? Because if you can't why should you expect Comcast to do so? In fact are there any statistics to indicate that a majority of the traffic is legit? I would suggest only a timy minority of stuff on Bittorrent comprises legit stuff.

  77. my workaround to seed by Anonymous Coward · · Score: 0

    i use azureus and encryption, i have to start and stop the torrent every 30 seconds, becuase of comcasts "burst" i can seed in spurts at 200kbps but if i want to seed something over 100 megs i need to be able to sit down for a few hours, its annoying but not impossible

  78. Reasoning and how they do it by cableguy411 · · Score: 4, Informative

    I would know the answer as to how and why they do it because I help set up the hardware that does it locally for my system. It doesn't affect all markets nor does it affect customers all of the time. They can do it because of the no server clause in the contract. It doesn't however have to be determined by someone that you're running a server. How it works is there is an actual piece of hardware that is placed into the routing of packets. It inspects the header bits of the packets and determines if the packets being sent are p2p or simply network/server traffic. If it is p2p traffic then the routing priority level for those packets matching those identified are dropped by one level. This is exactly the same way the voip works, but in opposite manner so as voip packets have a higher routing priority than any of the other user traffic. This being said it leaves us with a packet routing priority from top to bottom of user generated traffic looking like: VOIP, Network/HTTP, P2P. Looking at this it's easy to see why some people would experience 'throttling' as it's being called. Unless you can figure out a way to bypass traffic being generated to or from a bunch of private (ie individual ip's not registered with DNS)then your out of luck. This does still leave newsgroups untouched however since the traffic is being routed through a registered server. One more thing. Many of the Comcast systems are implementing what they have termed 'Powerboost'. It doesn't cost anything and it's being done at the server/CMTS level. There is no way to sign up for it or anything. It's either on, off, or hasn't been implemented in your area yet. The rollout of this has been detemined by network capacity for whatever fiber node you're being fed out of. In my current location we've implemented it in appx 90% of our nodes on the downstream and 60% of the nodes on our upstream channels. What this does is allows a user trying to push through large files use of the unallocated bandwidth above and beyond their provisioning rate. Some people here are consistently seeing more than 20Mb/s downstream and 2.4Mb/s per second upstream (being provisioned for 6Mb downstream and 512k upstream). However the servers will not allow that rate to be sustained. It holds a small percentage of the bandwidth available for other demand and keeps the total usage under X% capacity or else it will suspend the additional bandwidth to that user. ****Take notice I didn't say it allows the user to make use of all or even most of the unallocated bandwidth, but just more than they are provisioned for. This is being tightly controlled and regulated to make sure capacity and network stability are maintained while allowing bursts of up to and over 20Mb's. I wouldn't expect to see the number much more than about 20/22 Mb's though depending on the market. Some of the higher capacity/speed markets are running more than the standard 6Mb we're running here in my market. Those people might see something a little more out of powerboost, but don't bet on it for now anyways. Hope this helps, but I don't think it will resolve any of your difficulties any more than just an understanding would do.

    1. Re:Reasoning and how they do it by cableguy411 · · Score: 1

      **Note: It doesn't affect all P2P traffic, just sustained traffic that meets the criteria set in the piece of hardware that's inspecting. That's the reasoning for allowing short bursts of seeding, but nothing sustained.

    2. Re:Reasoning and how they do it by driddint · · Score: 1

      paragraphs, who needs 'em

    3. Re:Reasoning and how they do it by cableguy411 · · Score: 1

      LOL! I didn't care. All sorts of grammer mistakes as well, but who the hell cares anyways?

    4. Re:Reasoning and how they do it by driddint · · Score: 1

      okkay. to meany wordz in wurngo0.eye noo reed arftur urr lin r2. ooneedz ti?/

  79. Common Carrier a myth.. by popeye44 · · Score: 2, Interesting

    This has been pointed out here before. Neither Comcast nor any other ISP has common carrier status.

    http://www.slyck.com/forums/viewtopic.php?t=36623 this describes that no or almost no ISP's have Common Carrier Status.

    --
    Inane Comments are Generously Disregarded
  80. Re:Looming problem by Technician · · Score: 1

    Even though there is a "Looming Problem" with outgrowing bandwidth, it has been very obvious to me that some services are being very limited. When downloading my favorite distro, I did a test. I started 2 transfers of the CD ISO. One using Bit Torrent and the other using a simple download mirror. When the mirror transfer was completed, the Bit Torrent transfer was almost 1/3rd completed. From then on, I've just stuck with mirrors with one exception.

    When SONY had the defective by design DVD's so I couldn't add Open Season to the kids Zen Video, I DL/ed the ISO. It took 4 days. Later with the Slashdot discussion and the recall of the defective disks, I ordered a replacement. When ordering they asked what player I had trouble with. I was up front with them. I told them I had trouble with Acid Rip on Linux so I couldn't play it on a Creative Zen Video. They sent me a replacement with no excuses. At least their database includes Acid rip and the Creative Zen Video.

    --
    The truth shall set you free!
  81. Fraud is a weak manager's way of doing business. by Futurepower(R) · · Score: 5, Informative

    As someone said on the linked site, selling a service without mentioning that it is severely restricted is fraud.

  82. Did you mean "go back to dial-up"? by tepples · · Score: 1

    Find another ISP. Dial-up is unacceptably slow; so is satellite due to geostationary round-trip time. What other ISPs are priced competitively with the phone company's residential service or the cable company's residential service?
    1. Re:Did you mean "go back to dial-up"? by lheal · · Score: 1

      I mean that if you don't like someone's service, find a competitor or go into business yourself.

      Or move.

      --
      Raise your children as if you were teaching them to raise your grandchildren, because you are.
  83. Standard form contract by tepples · · Score: 1

    I don't know what a "consumer contract" is It's a contract that disallows reasonable negotiation of the terms other than to take it or leave it. See "Standard form contract" on Wikipedia.
  84. Torrent from work? by Anonymous Coward · · Score: 0

    I only get 768K dsl at home. I pretty much only torrent legit traffic like Linux ISO's. I do it while I'm at work because I work for an ISP and even though they cap my downloads, I still get 1/MB per second.

    At home I only get 90/K per second.

    How many other people do their downloading at work because the pipe is bigger?

    It used to be awesome at work when they didn't throttle bandwidth. I was getting up to 10/MB per second, depending on the site. I do feel better about them capping it though, because I don't want to take bandwidth from customers.

  85. Isn't that supposed to be easy? by jopet · · Score: 1

    If this is against the agreement, sue them. If you agreed to them being able to arbitrarily filter or throttle your internet access, accept it or change the provider.

    It is hard to imagine that this should be part of a legal and valid contract with an internet service provider, at least in my country, but if this is indeed the case, there should be plenty of competition to change to.

  86. The problem is with users giving 110% by tepples · · Score: 1

    Can't we just slap these bastards with false advertising? I use bittorrent to download LEGALLY DISTRIBUTED SOFTWARE, ie linux distros. wtf? Some comments above this one state that some ISPs don't throttle if you download at the same time you upload. But if you subsequently seed back up to 110%, then your computer is "acting as a server" in violation of residential TOS. Don't like it? Rent a virtual private server from your ISP and run a torrent client on that.
  87. Re:If more ISPs adopt this strategy,shouldn't... by D4C5CE · · Score: 1

    terms of service subject to change without notice
    Talk is cheap, even if the language is Legalese (though then maybe the one who's talking isn't... ;-)).

    Certainly you don't really think the judge would be happy with such terms if you took an ISP to court for making a change such as:

    All fees are tripled retroactively as of January 1, 2001.
    From now on service will be available only on Sundays, 1-2 a.m., and limited to port 80 of sites from our approved list (also subject to change without notice), at no more than 64kBit/s.
    - or that you couldn't ever terminate contracts if the other party had actually managed to validly reserve and exercise the right to change their terms to your disadvantage.

    Many jurisdictions have even explicitly outlawed the use of various "rip-off" clauses wielded against consumers.
  88. Look for a new ISP how? by tepples · · Score: 1

    My recommendation (IANAL): Tell them (first via phone, then via postal mail) that you paid for an unmetered account with speed X No, you paid for unmetered downloading with speed X. You did not pay for unmetered uploading with speed X, such as seeding up to 110% after you finish the download. That may constitute "acting as a server" in violation of TOS, so it's your breach.

    Be sure to mention legal uses of Bittorrent (FOS like Linux, Demo Software, Patches, that online video on demand store that uses BT) that are affected. They'd point you to HTTP-based downloading of free software, proprietary demo software, and patches, and their own digital cable video on demand service.

    If all that does not help, send them an immediate cancellation [...] and look for a new ISP. Their response: "We're disappointed that you're disappointed in our service, but we're glad you're happy with dial-up, as that's the only other choice short of moving your family to another city."
  89. Moral: Get it in writing. by tepples · · Score: 1

    The landlord gave us a verbal "OK" Moral: Get it in writing.

    but that sum wouldn't get you fuck-all work out of a solicitor Don't they have small-claims court in the UK?
    1. Re:Moral: Get it in writing. by internewt · · Score: 1

      The landlord gave us a verbal "OK" Moral: Get it in writing. I know that now ;)

      but that sum wouldn't get you fuck-all work out of a solicitor Don't they have small-claims court in the UK?

      They certainly do, but the landlord was being exploitative of two people who were admittedly very naive. It was the first place me and the GF had rented on our own, and we were just too trusting, I guess. The landlord seemed so nice and friendly.... <- how naive does that sound?!

      But for the amount he ripped us off for it was barely worth the effort to go to court. I do appreciate that small claims is very geared to the small guy, but still, it would have meant time off from work at a time when we were more interested in buying and moving into a property. Neither of us had great jobs at the time either, so we had long hours with not the best pay etc..

      If it happened these days, I'd have no hesitation in legally ripping him a new one. My sister is going out with a barrister, so if I was definately gonna win I'd go in with the big guns straight away, just so that they have to pick up a huge legal bill!

      --
      Car analogies break down.
  90. I call bullshit by kimvette · · Score: 2, Interesting

    Last year we had a discussion whether traffic shaping is good or bad, and ISPs made it pretty clear that they do not like P2P applications like BitTorrent. One of the ISPs that joined our discussions said: "The fact is, P2P is (from my point of view) a plague - a cancer, that will consume all the bandwidth that I can provide. It's an insatiable appetite.", and another one stated: "P2P applications can cripple a network, they're like leaches. Just because you pay 49.99 for a 1.5-3.0mbps connection doesn't mean your entitled to use whatever protocols you wish on your ISP's network without them provisioning it to make the network experience good for all users involved."


    Here's the thing:

      - You folks want common carrier status
      - You want subsidies from taxpayers instead of spending your own money on infrastructure
      - You advertise your services as always on and unlimited

    And yet, when customers actually take you up on that offer you want to reneg after the fact.

    When you advertise a service, accept payment for it, and refuse to deliver on it, that, my friend, is called fraud. Considering that you mail bills to your customers charging them for unlimited services, isn't each and every statement you mail one count of mail fraud? Isn't that what took down several mafia families, if the reference in The Firm is to be believed?
    --
    The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    1. Re:I call bullshit by cableguy411 · · Score: 1

      Who says we still want Common Carrier? The truth is infrastructure costs money. If you want a true 1.5Mb unlimited connection, then go pay the $700 a month or so for a T1. If you want more than that then look into the cost of a T3 or so. If you want cheap bandwidth then you're going to have to deal with whatever we (not just comcast, but all residential ISP's) are willing to provide. We all basically operate the same way. We buy/build to support X bandwidth. Yes that is a projected number based on penetration and population density. Then you can model the peak capacity and average capacity based on those numbers. Once you have the model you build spare/unused bandwidth into the plan and get it approved. Then comes the budgeting of the equipment, manhours, and infrastructure to support the bandwidth. Now that's out of the way lets assume the build happens overnight. Oops, capacity alarm that was set at 85% was on from 6pm till 10pm. Peak was at 96%. Put that node/whatever on watchlist. If node continues to reach/exceed capacity alarms you start over with the design/build process to split or segment that node into smaller more managable units. What does slowing down bit torrent traffic do? Nothing to the overall bandwidth used. It merely distributes it accross a longer time period so as not to incapacitate the network at times of high usage. If you really want to get into the legal aspects of it, it's perfectly legal for us to manage our network that way, and EVERY residential provider operates in the same manner. I've worked for both cable and telephone companies and have seen this first hand from the inside. Read your contract and then figure out how you're not in breach of your agreement before sueing us for fraud or false advertising. I'm sure our high priced lawyer teams that wrote it fully understanding how the backside of it all works made sure that there is no garuntee of those speeds, especially sustained ones. Once again...if you don't like it go pay for a T1/T3 or even go with DS/OC if you're really rich and up for it!

    2. Re:I call bullshit by kimvette · · Score: 1

      Where did I say anything about throttling? Go back and re-read. The plans are advertised as unlimited. That is, as in using it as much as you need/want/feel like, without fear of hitting any limit since being unlimited it is by definition unlimited, just like an all-you-can-eat buffet.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    3. Re:I call bullshit by cableguy411 · · Score: 1

      Isn't that what the entire thread was about? Duh!

    4. Re:I call bullshit by hidave · · Score: 1

      Well, of course, this analysis assumes the ISP/carrier will then sell their services accordingly, and not severely oversubscribe, then throttle the subscribers. I have WildBlue satellite service, and throttling starts around 8 AM. By 10:30 AM, it is severely degraded. Around noon, plus or minus an hour, service drops to near-zero. Repeat, NO service from noon until, say, 7 PM. Then it starts to pick up slowly again, until by about 10 PM, it is back to 1.5 Mbps. It isn't that we are just throttled, we are totally disconnected for hours at a time EVERY AFTERNOON - Saturdays and Sundays included. $80/mo for that "service" is BS no mater what you say.

      --
      Synchronizing stop lights across the US = one less nuclear power plant
    5. Re:I call bullshit by cableguy411 · · Score: 1

      So is this just the bit torrent that is throttled or everything? Reason I ask is most satellite providers have an average ping time of 100ms+ (it takes roughly 70ms depending on orbit altitude and relative azimuth for the signal to travel either to or from the ground to the satellite). If your provider is dropping packet priority for just your torrents, then considering the traffic most inet satellites carry during the day I can see why your packets would just sit there indefinitely waiting to be routed until the ttl kills them. If it's everything then I'd call and inquire with your isp about their inability to provide even basic service during the peak hours of the day. Remember ttl doesn't care what your ping times are, so if they're really long the packet just dies and ceases to exist before it ever arrives on the other end.

    6. Re:I call bullshit by hidave · · Score: 1

      Right, they do not even provide basic service during peak hours, which could be, and ususally is, SEVERAL hours per day. I'm not savy enough to know about packets and torrents; I'm just your run-of-the-mill EE. I will do some research to get smarter in this regard. Anyway, I've called the ISP, WildBlue (shortest hold time 1 hr 20 min so far), and been told, "We are a shared service, so there is nothing we can do." What a copout. Well, it works fine from midnight until about 7 AM; at least that's something. A few months ago they would throttle me by sending text only, not videos or images (just the Red X); now they just cut off the connection after one mouse click to connect to the Internet. The modem tries futiley for hours trying to register, but to no avail. Those WildBlue folks even had the audacity to ask if my antivirus software was current; I told them even with my router disconnected from the modem, it won't connect for hours. They suck, but I don't have a choice really. A neighbor has the same problem (I only have one neighbor out here in the boondocks who is willing to pay big bucks for broadband). That neighbor is considering buying an amplifier for his cell phone, and trying their unlimited data option. I asked him to keep me posted. Any other advice from you will be appreciated. I'll pay almost anything to get broadband, but so far it simply doesn't exist where I live. Thanks. David

      --
      Synchronizing stop lights across the US = one less nuclear power plant
  91. Negotiation by tepples · · Score: 1

    If you look at your Comcast terms of service, you will find that you're not allowed to run any servers at all. What's the typical way to negotiate this term out of the contract? Is it possible to have residential cable TV and business Internet at a single address?
    1. Re:Negotiation by cableguy411 · · Score: 1

      Yes you can have residential TV and a business inet at a single address. It happens all the time really. There are a bunch of telecommuters and/or home office people that do just that. It does solve the server problem, but it wouldn't solve the bit torrent throttling persay.

    2. Re:Negotiation by m2943 · · Score: 1

      What's the typical way to negotiate this term out of the contract?

      Simple: you buy a business line; it's only a question of paying for it.

      Alternatively, you can co-locate and connect to your server from home. That's outgoing connections only, so there is no problem with terms of service, provided you stay under the implicit volume limits.

  92. Subconscious copying by tepples · · Score: 1

    and to share music that I have composed and hold copyrights for. Are you sure you hold the valid copyrights? Was George Harrison sure that he held the valid copyright in the song "My Sweet Lord"? Actually, how can a composer tell?

    Bit Torrent is a legitimate technology. I has legal uses. I use it legally. What does your residential Internet connection's contract say about servers?
  93. wrong by m2943 · · Score: 1
    You can find the TOS here: http://www.comcast.net/terms/use.jsp

    Under prohibited activities, you find:

    run programs, equipment, or servers from the Premises that provide network content or any other services to anyone outside of your Premises LAN (Local Area Network), also commonly referred to as public services or servers. Examples of prohibited services and servers include, but are not limited to, e-mail, Web hosting, file sharing, and proxy services and servers;


    Also:

    restrict, inhibit, interfere with, or otherwise disrupt or cause a performance degradation, regardless of intent, purpose or knowledge, to the Service or any Comcast (or Comcast supplier) host, server, backbone network, node or service, or otherwise cause a performance degradation to any Comcast (or Comcast supplier) facilities used to deliver the Service;


    Furthermore, they are free to define any other activities as "prohibited" any time they like.
  94. Eh-P2P is the problem. by Anonymous Coward · · Score: 0

    Your logic is poor. Downloading movies and music isn't the problem (illegal copyright violations notwithstanding). The means being used (P2P) is the problem. So sorry but you fail the "false advertising" test. Now if the complainers want to get off their butts and develop a protocol that actually respect peoples resources instead of consuming them in an orgy of ME!, ME!, ME!, It's all about ME!

    "Be proactive... and change the system."

    Now if you could only apply that willpower to changing the speed of light.

    1. Re:Eh-P2P is the problem. by zakezuke · · Score: 1

      Your logic is poor. Downloading movies and music isn't the problem (illegal copyright violations notwithstanding). The means being used (P2P) is the problem. So sorry but you fail the "false advertising" test. Now if the complainers want to get off their butts and develop a protocol that actually respect peoples resources instead of consuming them in an orgy of ME!, ME!, ME!, It's all about ME! The last advert for Comcast I remember was "share pictures and videos". This IS false advertising. Actually the BT protocol does an excellent job of conserving resources by distributed transmission. In theory priority is given to those on your own network.

      You fail the logic test as the services I spoke of are commercial legit sites which permit high quality downloads of videos, such as rocky and bullwinkle.
      Also you fail the logic test because BT isn't about mememe, but rather sharing the burden of transmitting media. If 10% of your download goes to uploading, the host site benefits as they serve less data. The ISP *may* benefit as they may keep trans-net data at a minimum.

      It's really a good deal, taking full advantage of the fact that service is sold unlimited. But to be fair, if they were recommend a limit, that would be perfectly fine. But so long as they directly affect commercial sites there's a huge issue.

      --
      There is no sanctuary. There is no sanctuary. SHUT UP! There is no shut up. There is no shut up.
  95. So Comcast is the new AOL? by r_jensen11 · · Score: 1

    Isn't this basically what AOL did? When they first started out, they could cope with the demand. But once they were really popular, their tubes weren't fat enough to handle all the people calling in?

  96. TOS: no servers at all-"Unlimited" greed. by Anonymous Coward · · Score: 0

    "In any case, I think the solution is simply to go to volume based pricing. And, in fact, I think it would be good if ISPs were regulated and forced to offer transparent, volume-based pricing. That way, you can run all the P2P software you like and pay for the bandwidth, rather than have low-volume users like me subsidize you."

    I noticed you left out, "getting their own dedicated line". Why? It would make everyone happy. The mass up/down loaders can do whatever they want with their "unlimited"* connections, and the rest of us don't have to put up with their actions and the consequences. A win, win unless one is looking for "all you can eat" at Wal-mart prices, then there's a problem, and I can't think on how one is going to solve that.

    *Let's pretend that the laws of physics don't exist and therefore there can be an "unlimited" connection in any "self-rationalization" sense one can conceive of.

    1. Re:TOS: no servers at all-"Unlimited" greed. by m2943 · · Score: 1

      I noticed you left out, "getting their own dedicated line". Why?

      Because there is no such thing as a "dedicated line": sooner or later, the wires come together. What is being sold as a "dedicated line" is a shared line with specific bandwidth guarantees, guarantees that are useless and unnecessarily expensive for almost every user.

      Volume-based pricing is the right way to go, with appropriate peak and off-peak rates to shift the traffic around. Among other things, P2P traffic could probably be accommodated well at very low prices during off-peak hours, and shifting P2P traffic to off-peak hours could even be automated.

  97. Let me be the first to say by Almahtar · · Score: 1

    "Thank you, Mr. Senator!!"

  98. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  99. I use comcast.. by Anonymous Coward · · Score: 0

    My torrents work just as well as they always have.

  100. Re:Fraud is a weak manager's way of doing business by Speed+Pour · · Score: 1

    It's always worked for Microsoft [insert uproarious laughter here]

    Seriously though, this isn't TOO dissimilar from what happened several years ago when ISP's started blocking their subscribers from running their own base protocol servers. Most block ftp servers, some block web servers, and I've yet to sign up an ISP that doesn't get hinky with running a mail server. In point of fact, I'm signed up to Cox cable right now, and I am constantly working around the ftp server limitation. Nobody could call fraud, because nobody asked the questions about what features where disabled...

    As some may remember, the prime reason given by many o' ISP was that they didn't want people running public sites that would swallow up all of their bandwidth. To me, this feels like the same argument all over again, but with two significant differences: The scale is dramatically increased (more bandwidth to go around, but way more content), and this time the users aren't tech-savvy and relatively educated computer users, instead they are average people with only enough knowledge to be angry that they can't use bittorrent to get the new Daughtry album.

    Unfortunately, this could be more than an issue of bandwidth concern, as many ISPs are still getting constant batteries of requests for customer information and no doubt they are looking for a way to remove that hassles.

    --
    - Nobody would know what RTFA meant if it didn't need to be said all the time
  101. Personally ... by ScrewMaster · · Score: 1

    I haven't noticed any substantial reduction in Comcast's download rates (I have the 8 mbit/sec tier, speed which I rarely achieve anyway) but then again I'm fortunate enough to live in a broadband-competitive area. I can call up SBC, Covad, or a number of other providers and get service, so maybe Comcast figures it's a bad idea to squeeze people around here too much. If Comcast were my only available provider, I understand it could be very different.

    Of course, when all the ISPs are pulling this stunt, it wont matter. But I suspect they'll have a lot fewer customers. There's a reason downloading is such a big part of network traffic: it's what people want. Times have changed, technology has changed, we can do more with it now, and email and Web browsing are only a part of modern online activities. Smart businesses that are in a truly competitive situation find ways to give customers what they want and need, and still manage to make a profit. Take away that incentive, that pressure to garner and keep customers, and crap like this is what happens.

    I can get my email and browse the Web on a $5/month dial-up connection. I pay Comcast a pretty penny because I want to send lots of packets from here to there quickly. Take that away from me and they are no longer worth $75 each month (it's arguable whether they are now.) I've been considering dropping Comcast's asymmetric crap and going with a straight 1.5 mbit/sec DSL connection.

    --
    The higher the technology, the sharper that two-edged sword.
    1. Re:Personally ... by cableguy411 · · Score: 1

      Most DSL providers are asymmetric as well. I've worked for two of them and the symmetrical DSL accounts are really pricey!

  102. You all sell your souls to the cable companies by zymano · · Score: 1, Flamebait

    Your paying for CABLE INTERNET service. Not the internet.

    They own you and can do what the hell they please.

    This is whay you get when you are against muni broadband.

    1. Re:You all sell your souls to the cable companies by zymano · · Score: 0, Flamebait

      this isn't flamebait you idiot mod.

  103. Re:Fraud is a weak manager's way of doing business by Slow+Smurf · · Score: 2, Insightful

    They could stop giving in without a full court order.

  104. Qwest too? by Oracle+of+Bandwidth · · Score: 1

    I have actually suspected Qwest of throttling WoW and the Wow patch downloader (which is torrent based), I just have no clue how I'd go about proving it.

  105. Zhonka by beeblebrox · · Score: 1

    I have Speakeasy and I'm also in the Puget Sound area. Once we decide whether we're moving or not (and whatever the result of that decision - depends on whether any rent increase is reasonable, i.e. <=5%) , I'm dropping Worst Buy and switching to Zhonka. They're based in Olympia and the only negative thing about them is that they use the Qwest racket, but I can just about live with that.

  106. Charter's been throttling BitTorrent for years by jerkychew · · Score: 2, Interesting

    I've had Charter in Massachusetts for a couple years now, and BitTorrent has always been throttled. BitTorrent downloads take forever to download, if at all. I've tested this by connecting to the same trackers with the same client on my old work's Verizon 1.5Mb DSL (I'm running 6Mb Charter at home) and the downloads were exponentially faster on Verizon.

    It sucks because WoW updates and several of Microsoft's large downloads are sent via BitTorrent. I have to hunt and seek every time I want to update a new WoW installation.

  107. Re:Fraud is a weak manager's way of doing business by sumdumass · · Score: 1

    I'm not sure this is the same. The TOS agreements of ever ISP I have had on a residential line said I couldn't run servers from my connection. They have been relaxed in enforcement but I had to switch to a commercial service once when they started blocking port 25 and my mail servers went down.

    I guess this would depend on whether they are doing it for every customer commercial and residential or not. I agree it is a foul deed but they might have their asses covered it they can claim seeding as a server.

  108. Glad I switched to Verizon by The+Analog+Kid · · Score: 1

    They don't throttle anything and their infrastructure is built to be upgraded indefinitely. People have reported downloading terabytes of data and haven't even received a letter. This just might be for now because they don't want negative PR, but they haven't capped me once even after I switched from Comcast to Verizon DSL.

  109. Why ISPs should be common carriers by skywire · · Score: 1

    Imagine your voice phone provider listening for forbidden topics of conversation, and then inserting "Oh, gotta go, the repairman's at the door" and hanging up. How long would that last?

    --
    Those who would give up essential liberty to purchase a little temporary safety, deserve neither liberty nor safety.
  110. Dial-up's design is actually safer downloading by Anonymous Coward · · Score: 0

    The reason why I say this is that dial-up( I just cancelled my service and went broadband recently) has dynamic ip's that change everytime you connect. However, you're going to be hard pressed to download anything quick over a meg. The wait time is god-awful, LOL! On the positive note, the RIAA/MPAA snoopers hound dogs won't be able to track your activiies back to you. Now, if you combine this with a TOR onion proxy/router whatever; then I think you'd be virtually undetectable.

    1. Re:Dial-up's design is actually safer downloading by janrinok · · Score: 0, Troll

      And that's the most intelligent reply that I have seen for quite a few hours now. Thank you for restoring my faith in humanity!

      --
      Have a look at soylentnews.org for a different view
    2. Re:Dial-up's design is actually safer downloading by Takumi2501 · · Score: 1

      Yes, and you'd also be able to download at about 500bps... if you're lucky.

      --
      Sent from my computer.
      Now GET OFF MY LAWN!
    3. Re:Dial-up's design is actually safer downloading by Takumi2501 · · Score: 1

      I just had a second look at your post and realized that you mentioned that it would be slow. That's what I get for posting first thing in the morning before the higher brain functions have kicked in.

      My bad. ^^;

      --
      Sent from my computer.
      Now GET OFF MY LAWN!
    4. Re:Dial-up's design is actually safer downloading by janrinok · · Score: 1

      It wasn't a troll - I was genuinely wishing to compliment the poster for having thought something through.... Ah well, must be the language barrier.

      --
      Have a look at soylentnews.org for a different view
    5. Re:Dial-up's design is actually safer downloading by janrinok · · Score: 1

      My previous reply to you was tagged as a troll. It wasn't intended to be such, I was genuinely saying 'thank you'. It must be the language barrier - I speak English but my American is obviously lacking.

      --
      Have a look at soylentnews.org for a different view
  111. Poor Americans by Anonymous Coward · · Score: 0

    Oh you poor, poor Americans.

    Meanwhile I'm happily seeding away, as I have been for the last week, on my 100mbit connection, one that's available in any major city and comes at a reasonable $45/month. No shaping, no port-blocking and no nonsense.

    Move to Sweden, anyone?

  112. Re:Bandwidth costs by Anonymous Coward · · Score: 0

    yah really technically anyhting that sends data out of your local box is a server
    ok so dont have me send packets of data to the isp yah know that secret shit they monitor.
    Don't have any web browsers send back data to handshake the connections and what do you have a useless piece a junk not able to do anything , and what about learning , if you goto college back when i was htere i learned more by setting up servers here localy and played ( i wasn't adverting it so no traffic just to see it work and have a very few people test it.
    AND why should we not be allowed to run servers according to that wired article they already spy on the traffic?( google illegal wiretapping document the fbi wanted wired to take down.)
    AND its like this a 100MB server costs me about 200$ CAN for a terabyte a space
    they want to charge me 40$ a month for 30GB ( 30 times 33 = 990 GB ; 40 times 33 =1320$)
    so let it go forth its ok for business to get the wicked deal but home users SCREW YOU.

  113. Re:Net Neutrality? by Anonymous Coward · · Score: 0

    Why the hell not?

  114. Re:ISP vs WAP: FTP loses out also by TwoAtHiOne · · Score: 1

    I have noticed that when I FTP several files for network-based backup (mput *), the small ones have great upload throughput, but the big ones are terrible. I assume they try to degrade any large 'batch' uploads. Does anybody have a different experience?

  115. Re:Net Neutrality? by The+Master+Control+P · · Score: 1

    Network Neutrality refers to not discriminating for or against traffic based on source or destination. This is one of the most basic premises of the Internet; The middle of it just routes data to it's destination.

    Packet shaping refers to discriminating for/against traffic based on traffic type. It has positive uses, such as to give interactive traffic priority (audio/video > games > web > p2p). What we're seeing here is Comcast throttling p2p because people are using the shitload of bandwidth they sold (but don't have).

  116. 100mb/1 terabyte BW = 200$ /month //5megabit 30gb= by Anonymous Coward · · Score: 0

    100mb/1 terabyte BW = 200$ /month //5megabit 30gb=40$ CAN
    that means they are charging per 100mb home use 1320$can/month
    or 1120$ extra do do nothing then browse the internet?
    WTF

  117. maybe im an exception by Anonymous Coward · · Score: 0

    Strange, I have DL~800GB and UL ~1.1TB on comcast and never had my traffic slowed. THe only thing i can think of is my firewall blocking. I use gshield gentoo hardened blocking all unsolicited traffic. I see tons of drops on my bittorrent port, some UDP, which is all blocked, and others TCP RST packets. Since all are blocked, my client never receives them and continues traffic unblocked. I dunno, ive never been throttled but if i was, i would probably simply change my BT port. Simplist things first friends...

  118. MS downloads via BT? by antdude · · Score: 1

    Where are these? I have never seen MS mention their official files via BT. I am not referring to pirated files either.

    --
    Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
  119. Utils are gov monopolies by SonicSpike · · Score: 1

    Yes -

    Telcos and cable co's are government granted monopolies. Thus there is very limited competition (if any at all), and ISPs really DON'T operate in the free market unfortunately.

    --
    Libertas in infinitum
  120. I may be experiancing this by Brianwa · · Score: 1

    I have Comcast, and Bittorrent connections have been acting strangely for the last several months. The speed slowly ramps up to a good rate, then suddenly drops to almost nothing, and starts slowly ramping up over and over again. The same thing has been happening at my friend's house, who also uses Comcast.

    Or maybe my cheap router is just dropping packets under the heavier than normal load.

  121. Re:100mb/1 terabyte BW = 200$ /month //5megabit 30 by cableguy411 · · Score: 1

    It's not 100Mb=1 terabyte. 100Mb = 12.5MB as in 12.5 Megabytes. 100MB = 1GB 100GB = 1TB or 1 Terabyte.

  122. Does this also effect Commercial class customers?? by l0ungeb0y · · Score: 1

    I just signed up for Comcast Internet as a Business Class Customer for an 8mb connection with 5 IP's. And it seems that Comcast would really piss some business customers off by damaging BitTorrent access as there are some businesses that have been using BitTorrent to store large diskimages as a means of low cost backup redundancy.

    So if this is the case for Business Class as well, I could definitely see a backlash against Comcast for such an action.

    I would lke to say that I was utterly impressed that Comcast haad my data line up and running within 24 hours of my initial phone call to sails.
    That is the fastest service installation I have ever seen. So it sucks to read something like this so soon after my install. But I guess any large ISP will make bad decisions from time to time, however, those decisions usually target residential customers.

  123. Re:Fraud is a weak manager's way of doing business by yabos · · Score: 1

    Then they have to define "servers". A bittorrent client could be considered a server as much as a client.

  124. Rogers Cable in Ontario Does This Already by Anonymous Coward · · Score: 0

    They have for a long while now, and I work with the guy who deployed it. (not at Rogers anymore) I asked him how it was done one day.

    They're done by wire-speed layer 7 analyzers sitting at each node on the fibre trunk. There's a very small but common pattern present in the encryption handshakes of all Torrent clients. (and unencrypted is, of course, very easy to spot) He mentioned something common in the encryption key is how it spots it, but my memory is fuzzy so don't quote me on that. :)

    If the analyzer sees that pattern it automatically throttles your entire connection until it stops seeing the pattern for a while. That's right - whole connection, not just torrents. There are indeed a small number of false positives with this - as well as some torrent connections that don't get throttled - however to Rogers, it was a wash and they didn't care. The accuracy was more than good enough.

    At any time of the day, torrents were eating 2x as much bandwidth as all their regular traffic combined and it was saturating the network. They decided to deal with it by throttling. I don't agree (and thankfully, neither does my present ISP TekSavvy) I was told that torrents are presently throttled to eat half that traffic on average.

  125. Re:Fraud is a weak manager's way of doing business by Ravensfire · · Score: 1

    I suspect that this IS mentioned in the agreement, but that most people are fools and skip reading it.

    -- Ravensfire

    --
    "But we decide which is right, and which is an illusion"
  126. T1s are a bad joke by Anonymous Coward · · Score: 0

    T1 is fucking ghetto, 1970s technology used for no other reason as to keep prices high and margins easy to hide ... it's an archaic and wasteful use of cable. Decades worth of improvements in signal processing has gone into DSL (and cable for that matter). Providing guaranteed bandwidth of the DSL connection is hardly rocket science either. The only reason T1s are more reliable is because DSL gets the shaft in maintenance.

    PS. if you charge 700$ for a T1 your customers are getting screwed.

  127. Peer Gaurdian won't save you. Common sense will. by Anonymous Coward · · Score: 0

    The reason is that if even if you have blocklists( and you can't trust who ever made them unless you did yourself) you can still be detected. It very simple. All an investigator has to do is launch a popular torrent program that lists the amount of seeders and leechers on a download; do either a responsive trace on that ip back to it's ISP; and add it to a collection of others in a warning letter to your ISP. The ISP;if threatened enough, will use that information and do further monitoring to detect and verify the target if need be. No one is safe. Your best bet is too stay away from popular downloads(easier said than done) or use a TOR proxy or do both to add extra "bounce" to your tracepath. If they really want you; they'll get you. It's just less work for them to go after easier marks. So try not to be an easy mark! Good luck and happy downloading.

  128. How to check if it's being comcastic. by SynapseLapse · · Score: 1

    Easy way to find out. Download wireshark -> http://www.wireshark.org/
    Run a capture on the ip of one of the hosts you're trying to send to.

    So, for example, if you're trying to the address 66.41.193.0, click Capture -> Interfaces -> Prepare button on the network interface you're using, then type in the filter field "host 66.41.193.0" (w/o quotes) then click start.

    Watch your p2p client until it disconnects, then switch back to Wireshark. The last few packets should show [RST] if it's comcast being comcastic and hindering your bittorrent.
    The final test is to go to www.dnsstuff.com (Or use the program SamSpade) and plugin the ip address to see if it's inside or outside of Comcast.

    1. Re:How to check if it's being comcastic. by Brianwa · · Score: 1

      Thanks. I'll check that next time I use bittorrent.

  129. from the horses... um... mouth. by funchords · · Score: 1

    Hi All,

    It's kinda neat to see something that I started show up on Slashdot!

    At the bottom of the original TorrentFreak article is a link to my post http://www.dslreports.com/forum/r18323368-Comcast- is-using-Sandvine-to-manage-P2P-Connections on DSLReports.

    I encourage you to read my original post and, if you can take it, the pages that follow. It explains exactly what is going on, and on page 7 or so of that topic, I try to clear up some misconceptions left by the TorrentFreak article. Uploading isn't impossible, but it clearly is being "managed" -- probably to reduce the cost or load on their network.

    Go Slashdot! This is exactly the right crowd to view this issue and understand what is happening!

    -Robb (funchords)

  130. Denial of Service by Anonymous Coward · · Score: 0

    This is the ultimate in hypocrisy. Why is it that big businesses constantly bitch and moan about denial of service, and then turn around and deny service to their customers?

  131. You can't get around it by jambarama · · Score: 1

    I've heard again and again that encryption & randomizing the port will get around this. From my experience this is not true. The encryption only hides *what* you are transferring, it doesn't (and can't) hide where or how. Bittorrent is a very unique protocol and it is very easy to identify a user, even without real packet inspection. The only thing to get around this is rent a host somewhere that allows bittorrent. Run bittorrent from there and transfer completed items back through ssh, scp, sftp or whatever.

    Other than that, your options are very limited. It would be my guess that Comcast uses a layer2 packet shaper, which has the ability to determine the actual content of an unencrypted packet regardless of port, and the ability to determine the type of traffic regardless of port or content. This has been quite common for years. Chances are you are just going to have to live without torrent, or switch to a provider that doesn't throttle torrent activity.

    I tried to get around this before on a different ISP, you really can't. I ran fragroute, which chops up your packets randomly so for sure no one can tell what is in them, and hopefully enough to throw off the signature. No dice. I tried a variant of the IP tables rule above (which I think is wrong BTW), no improvement. I ran traffic over TOR (definitely abuse, sorry TOR people, I've mended my ways) and it didn't help, since my ISP could still tell what type of traffic it was, if not what is in it or where it is going. Encrypting traffic and running it over a port that normally has encrypted traffic (ie 443 for SSL, or 22 for ssh) didn't work either.

    But as an IT guy, I'd have to guess that the growing trend to throttle connections is most likely a QoS issue. While bt users may not intend to suck up all of the bandwidth their ISP has, bittorrent is notorious for eating up the band. This probably matters to Comcast more and more now that they have their own VoIP & IPTV--too many people on bittorrent and their other services may suffer (this isn't our fault, but it doesn't mean they won't make us pay for it). In addition, bittorrent unfortunately has a rather poorly designed protocol (for packet efficiency that is, it is great for moving around lots of the same bits). Bittorrent has the problem of opening a lot of connections (the larger the torrent storm, the more connections). While each of these connections to other seeders/leechers may only be passing small amounts of information, they tend to take up a lot of the routers memory (especially for very slow connections that stay open even though they don't pass much if not any information). This kills a router. You might not ever notice it at your own home, but having a lot of people on torrents can drop a router fast, and thus reduce the speeds available for all of the other users using your ISP. Kind of like a DOS attack on a router. It is scummy for them to do this, but I thought you guys might want to know the other reasons for throttling this type of bandwidth.

    PS - It also seems like they've been throttling Vonage for sometime now. Pigs!

  132. What Angers Me The Most Here by Nom+du+Keyboard · · Score: 1

    The interruption is accomplished by sending a perfectly forged TCP packet (correct peer, port, and sequence numbering) with the RST (reset) flag set. This packet is obeyed by the network stack or operating system which drops the connection.

    What angers me the most here, and ought to be the most illegal part of all here, is that they are forging packets from ME! Nobody has the right to forge traffic as if I sent it!

    --
    "It's the height of ridiculousness to say for those 9 lines you get hundreds of millions."
  133. Re:100mb/1 terabyte BW = 200$ /month //5megabit 30 by sworoc · · Score: 1

    It's not 100Mb=1 terabyte. 100Mb = 12.5MB as in 12.5 Megabytes. 100MB = 1GB 100GB = 1TB or 1 Terabyte. http://www.google.com/search?hl=en&q=100+MB+in+GB& btnG=Search

    http://www.google.com/search?hl=en&q=1+GB+in+MB&bt nG=Search

    You had it partially right, 100Mb = 12.5MB, or thereabouts. However, 100MB (Megabytes) != 1GB (Gigabyte), even 1000MB != 1GB.

    MB is Megabytes and Mb is Megabits. You may be thinking of 1000Mb (Megabits) = 1Gb (Gigabit) which is true in most networking settings.

    *Typically storage size is measured in 2^n increments, meaning that it is a factor of 1024 for storage.

    *Measuring in bits instead of bytes is typically done when measuring transfers, where the base ten system is used. Hence the 1000 factor instead of the 1024 factor. The same is true for 100 GB != 1 TB

    --
    If knowing is half the battle, what is the other half?
  134. Internet is Cultur by NewtonCorp · · Score: 1

    The internet should be free of access. It should be considered like a cultural thing. Like having access to books in a library. We should do mesh networking, we would have problems with ISP.

  135. VPN protocols? by tachyonflow · · Score: 1

    What about using IPsec or PPTP instead? I doubt the providers would risk angering their VPN-using telecommuting customers by toying with VPN filters.

  136. Metering traffic by sworoc · · Score: 1
    If we do have to start paying on a per bandwidth basis, I forsee developing a program to keep track of all advertisements, SPAM, and other unwanted bandwidth. Just send the bill to the ISP and claim "I was being charged for unsolicited traffic". It works both ways.

    You can't charge someone for something that they have no control over. Nowadays, you have pop up ads that may or may not contain sounds or even video. While "unlimited" bandwidth may make this a non-issue, if you are being charged for that traffic when it was not requested, there is no way that will hold up in court.

    You can't charge someone for getting credit card offers in their P.O. Box, just like you can't charge people for having ads dropped on their doorstep or their windshield wipers.

    If this does come to pass and someone does take this issue to court, it will be troublesome for the ISP to prove it was solicited content. The excuse of "I didn't want that, I just wanted the news article text." or "I was just checking my email to see if my grandma wrote me when I got an email about a child in Rowanda that wanted my money".

    It would cost more to keep track of that than it would be worth, they should just start being honest about how much bandwidth they are selling you, and they should start upgrading their poorly aging infrastructure.

    *On a technical level I understand that your machine does request packets to be delivered, but the user does not technically approve that request. For example, if the page you are loading is on a different server from the server containing the ads, you technically never approved that the ads on the other server be loaded, you merely requested information from the original site.

    --
    If knowing is half the battle, what is the other half?
  137. Drop Comcrap! People gotta vote w/wallet by lpq · · Score: 1

    I think Speakeasy uses/contracts with Covad -- at least they used to when my DSL was installed. The "Best Buy" deal has me a bit worried as well. They actually had technically competent people to handle problems at Speakeasy that didn't pretend to know it all or talk down to you. I keep fearing that Best-Buy will replace the good support folks with "Porn^wGeek Squad". Ug. Runs about 3-4 times what Comcast does, but I don't have to worry about bandwidth caps (Speakeasy actually encourages people to sell their unused bandwidth to neighbors; they'll optionally handle billing) or selective traffic shaping...at least I didn't before BB took over. Nothing has changed that I know of, but past experience is no predictor of future actions by BB.

  138. Packet Prioritization vs. Connection Killing by funchords · · Score: 1

    Thanks, Cableguy411 --

    Although I know many disagree, the prioritization scheme you outlined makes sense to me (I wrote the original article on DSLReports that started this mess). What I wrote about was the RST packets that I think are being forged at the comcast.net boundaries (to neighboring networks or the "backbone").

    Do you have any information on that?

    1. Re:Packet Prioritization vs. Connection Killing by cableguy411 · · Score: 1

      I know the prioritization happens at the router level at my local system. We are routed down through atl afterwards before jumping the backbone there. Whether everything is normallized before insertion into the backbone I'm not completely sure. I have my suspicions, and having talked to some counterparts within other isp's and knowing that their basically using the same equipment/schemes we are, it is likely that the packets are never normalized back to the standard priority level.

  139. No problem here by Anonymous Coward · · Score: 0

    I'm downloading right now over Comcast from a bittorrent on Pirate Bay. The content is open, so no copyright problems, and I'm up to 360 kB/s. I'm not seeding yet, but I don't know if that's just a lack of demand right now.

  140. False alarms, fear mongering, or just plain FUD? by plasmacutter · · Score: 1

    I use torrents and i have not noticed any drop in seeding speed whatsoever on my comcast connection.

    I have to cap it at 30k otherwise my modem will fail to send the signals necessary to maintain the overall connection.

    Maybe that's what's happening to these people?

    --
    VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
  141. You hit nail on head, it's not comcast, its client by plasmacutter · · Score: 1

    Back in the day when bit torrent was still new, many clients just sucked, it would kill my internet connection or otherwise slow my computer's packet receipt. as it improved they moderated the clients' "aggression" to fix this problem Additionally, comcast instituted newer more stable modem protocols which were bit torrent FRIENDLY. (I immediately noticed i no longer had to "babysit" my modem when running a torrent). I honestly think it's just a problem with a popular client like utorrent, and since so many people use it they assume it's the isp or something. I honestly think it's fearmongering and jumping to conclusions, and utorrent will silently get updated and no longer have this problem.

    --
    VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
  142. We should be thankful. by Anonymous Coward · · Score: 0

    Now the MAFIAA can't sue Comcast customers for distributing copyrighted works over bittorrent.

    It's better than PeerGuardian!

  143. tcpkill? by bigtrike · · Score: 1

    This sounds very similar to a utility called tcpkill: http://www.groar.org/trad/dsniff/dsniff-2.4/englis h-txt/tcpkill.8.txt

  144. Consumer Fraud by 0x1b · · Score: 1

    You were sold access to all of the Internet right? If it isn't all there, you were sold a lemon. File!

  145. Oh no! by Anonymous Coward · · Score: 0

    Oh dear, doesn't discriminate between legitimate and infringing traffic? How about this...they pay the salaries, benefits, taxes, etc. for a bunch of guys to monitor all the torrents on the web (the majority of which, I can assure you are infringing) and enter that into the system so that the legitimate bittorrent stuff goes through properly?

  146. This is how it is in Australia by trawg · · Score: 1

    In Australia, this has been a massive problem for ever. The early days of broadband Internet saw you paying something like $60 / month for 300MB (yes, MB) of data. After that you got billed extra. 20 cents a megabyte, or something ridiculous like that.

    That was years ago. Eventually we got 3GB a month as the "standard", and then once more and more DSL ISPs started kicking around and offering competing plans, we're not at 10GB.

    Now the common practice is to offer (X)MB a month, and then when you exceed that you get bandwidth-throttled down so you can't smash your link any more. Seems to work fairly well, especially now as most of the plans are quite high - but we're still seeing ISPs having to regularly change their prices, bandwidth limits, etc as they adjust to the sheer increase in traffic as more and more people a) get online and b) discover they can download stuff for free.

    Bandwidth has always been a limited commodity over here - lots of the stuff Aussies want isn't in Australia. So we've always had these restrictions and have jealously looked at the US and other countries as you guys have downloaded hundreds of gigs a month on your much faster connections.

    So, now, we are (or at least, I am :) finding it somewhat entertaining that you guys are going backwards :) You'll want to make sure your ISP has a decent local mirroring service (a couple TB of Linux ISOs, gaming files, etc).

  147. Re:Fraud is a weak manager's way of doing business by Snaller · · Score: 1

    It appears to an outside observer that they are already trying to sell something they don't have (a certain amount of bandwith) so presumably that is not something which bothers them?

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  148. Move to Australia by Hyperhaplo · · Score: 1

    You may have to pay (for the moment! ULL coming soon! Maybe!) the Telstra Tax (min $20 a month atm), but you get to choose from over a hundred DSL providers.

    http://www.whirlpool.net.au/ has a list of them :)

    --
    You have a sick, twisted mind. Please subscribe me to your newsletter.
  149. Old foes may come to help... by Vapula · · Score: 1

    Blizzard, which has already been pointed out as "bad" for things like their actions against Bnetd (Battle.net "emulation" server) could come to help here...

    As far as I know (it may have changed since then), their World of Warcraft client updater uses Bittorrent to download the big updates... and WoW weights several million people around the world...

    By banning Bit Torrent, they will prevent people from updating their WoW client and to connect to the game itself... And blizzard has the $$$ to weight in the balance and make Bitorrent restored...

  150. Crooks and thieves do it. by Anonymous Coward · · Score: 0

    There's one element in this "why don't you..." discussions that's not being addressed. If people are willing to go to extremes to avoid any kind of limits? What makes people think they're going to start behaving honestly when these suggestions are implemented? Volume-pricing? What's to stop someone from tricking the system into falsifying the readings? People do it with electric meters. Charge per a movie? People trick cable systems into either someone else paying the bill, or simply not registering the purchase. None of these suggestions are going to make an honest person out of someone who believes they have more to gain by being dishonest.

  151. Re:100mb/1 terabyte BW = 200$ /month //5megabit 30 by cableguy411 · · Score: 1

    Yeah, I wasn't really thinking too well that day. I knew the 1024 because of base 2/binary incremental storage. That's what I get for trying to do math in my head after working nearly 30hrs straight. Being on call sucks, till you see the paycheck! LOL!

  152. In Soviet Russia... by Anonymous Coward · · Score: 0

    Uh, metered access.... We've been there and I say I don't want it back.

    When our ISPs first introduced so-called unlimited plans in 2003, all of them carried bandwidth caps. The common attitude between internet providers was to treat heavy users as 'greedy barbarians', 'ruining internet access for everybody', 'unlike those civilized first-world honest citizens'. Today in Moscow few remaining "cappers" are unpopular choice, due to natural selection they have nearly died out. Average good offers are around $25 for 3/3 Mbps and $50 for 8/8 Mbps fully unrestricted access. They are up/down symmetric which is nice for BT seeding, users may run http or ftp (or any other, except maybe email) servers off their PCs if they wish so. Stats show that my total upload over rolling last year exceeds 19 (nineteen) Terabytes and my ISP is perfectly fine with that. Speeds get upgraded ~30% each 3 months. Sure, Swedes have their 100/100 pipes and we envy them, but reading about US situation makes me uncomfortable - are you really okay to tolerate that kind of abuse?

    Users eating too much traffic? Upgrade your uplinks and deliver the promise or whine, throttle and go out of business. At least here it works this way and we are satisfied.

  153. Comcast descrimination by u-235-sentinel · · Score: 1

    Comcast doesn't seem to discriminate between legitimate and infringing torrent traffic, and most of the BitTorrent encryption techniques in use today aren't helping. If more ISPs adopt their strategy, could this mean the end of BitTorrent?"

    Personally I don't think it does because someone will come around with a solution to their "solution". Always happens.

    I'm stunned this is the solution Comcast selected rather than invest in their infrastructure. I guess I shouldn't be surprised after having received (drum roll please) "The Call". Such a large company with a myopic vision of the future.

    It's time for a change. I'm hoping people will contact local Government and demand Fiber to the home solutions. This way when a company does crap like this you simply select another vendor. Easy enough today for any other product or service. Nearly impossible except for very select area's in the US.

    --
    Has Comcast disconnected your Internet account? Same here. You can read about it at http://comcastissue.blogspot.com
  154. This is exactly what my ISP does by lennier · · Score: 1

    I don't understand this whole fracas over oversold bandwidth because this is exactly how Telstra in NZ works. You pay a monthly fee for a bandwidth + transfer package. If you transfer more than your monthly limit (1GB, 5G, 10GB) you get billed another.

    Simple, convenient, puts the responsibility for not flooding the pipes onto the user, no content filtering. What part of this is hard?

    --
    You are not a brain: http://books.google.com/books?id=2oV61CeDx-YC
  155. Yes, you're bandwidth hogs by lennier · · Score: 2, Insightful

    "I have a family of four, and when each of us want to experience the rich content we were promised (like VOIP, online productivity applications, video-on-demand, and streaming music), you're going to call us bandwidth hogs?"

    ? Is this a trick question or something?

    Yes, you're bandwidth hogs. The cable doesn't care what kind of content you're downloading, just how big it is. Deal with reality, and pay for how much you use, and this won't be a problem.

    Do you expect your car to take you places without paying for petrol? Why expect that Internet bits should be magically free? Unregulated, yes definitely, but there's a cost to move those bits and that's what you should be charged for.

    Asking for infinite data transfer on finite capacity media is like getting a car 'with free lifetime supply of petrol' built in for a fixed monthly rental and wondering why it comes with a restrictive contract that specifies that you can't drive it interstate.

    --
    You are not a brain: http://books.google.com/books?id=2oV61CeDx-YC
    1. Re:Yes, you're bandwidth hogs by Anonymous Coward · · Score: 0

      Uh, if I am paying for an unlimited use, 3mb service, and I use it, then I am not a band width hog, PERIOD. The available bandwidth, is not my problem, I am simply using what I purchased.

      If I purchase a "gas free" car (which would be the ACCURATE stating of your metaphor, based on Comcast's current plans), then yep...I would most definitely expect it to take me places without paying for petrol.

  156. Sending RST packets to both ends of the connection by grolschie · · Score: 1

    If Comcast sends RST packets to both ends of the connection (and why wouldn't they?), it doesn't matter whether or not you're dropping them, it matters that the other guy isn't.
    Is that even legal? Why should Comcast initiate it's own communications with computers that you are peered with? Can they send RST packets to whomever they like? Can anyone?
  157. How to test whether you are affected by RST resets by funchords · · Score: 1

    Everyone,

    I wrote a guide for Comcast users on how to test whether, and how much, you are being affected by this problem.

    Please visit this page ahref=http://www.dslreports.com/forum/r18901881-%2 318901881rel=url2html-4193http://www.dslreports.co m/forum/r18901881-#18901881>

    The page explains how to test for it manually, and also gives you a Windows XP batch file that can automate the testing.

  158. HOW TO TEST whether you are affected... by funchords · · Score: 1

    Everyone,

    I wrote a guide for Comcast users on how to test whether, and how much, you are being affected by this problem.

    Please visit this page http://www.dslreports.com/forum/r18901881-#1890188 1

    The page explains how to test for it manually, and also gives you a Windows XP batch file that can automate the testing.

  159. Re:Net Neutrality? by greenlove · · Score: 1

    I agree. This seems to be exactly what the Net Neutrality laws were put in place to prevent. ISPs cannot restrict access to particular applications. It is crucial that this kind of thing happens. We can't have Comcast restricting who ever they they want to. If BitTorrent or BitTorrent's users are breaking the law, that should be decided in the courts, not by Comcast. And if Comcast is restricting an application's use, it seems to me to be a violation (at least in principle) of the Net Neutrality laws.

  160. Re:Net Neutrality? by the+eric+conspiracy · · Score: 1

    What Net Neutrality laws? Also, if you require free access to all applications, what happens when an ISP blocks access to a port that is used primarily spread virii or spam? Or if the ISP tries to shut don a botnet?

  161. Re:Net Neutrality? by greenlove · · Score: 1

    http://en.wikipedia.org/wiki/Network_neutrality_in _the_US is what I found with a cursory glance to the US state of Net Neutrality. I guess there is currently no law to restrict such behavior, but there have been some proposed. I think that ISPs are attempting to keep things neutral until the debate has been finalized. From a legal standpoint, I would think there is going to have to be some allowing (perhaps requiring) of ISPs to restrict illegal activities on their networks, or who would enforce those laws? On the other hand, an internet where sites that compete with my ISP for certain services is restricted or a site that criticizes my ISP or its parent or affiliate is censored would be a real shame indeed.

  162. Re:Fraud is a weak manager's way of doing business by daringone · · Score: 1

    Not the case. As soon as you get a DMCA notice, you must comply (we don't give out customer information where I work, we only notify the subscriber to cease and desist) or you lose your safe harbor. That's the crappy part about the DMCA, it's essentially as good as a court order without the hassle of getting one, which is why the **AA abuses it so much.

  163. See, I have the opposite problem with Comcast by swiftcoder · · Score: 1

    Whenever I am downloading a torrent, the torrent runs just fine (up to around 650K/s), but they kill my browsing experience. Suddenly the ping command registers pings to well know severs (google, apple, microsoft, yahoo) in excess of 1500 milliseconds - to be contrasted against my normal 55 milliseconds.

    The instant I hit the pause button on that torrent, blam! My pings go back to 55ms, and my browser loads pages perfectly. So my question is this: Why in hell would Comcast kill my browsing experience when I am torrenting? The torrent is pulling far more bandwidth than my browsing, and they don't mess with that at all! Maybe they are incorrectly sending TCP resets down the wrong stream?

    I am not a heavy torrent user, so it doesn't bother me most of the time - but WOW, OpenOffice, Blizzard trailers, and a whole lot of smaller open-source projects use bittorent as their primary download medium. I probably wouldn't mind slow torrents as much as I mind having my browser fragged!

    --
    http://swiftcoder.wordpress.com