Slashdot Mirror


Sandvine CEO Says Internet Monitoring a Necessity

Khalid Baheyeldin writes in with a CBC interview with the CEO of Sandvine, Dave Caputo (bio here). Sandvine is the Waterloo, Ontario-based company that provides the technology that Comcast and other ISPs use to overrule Net neutrality by, for example, injecting RST packets to disrupt Bittorrent traffic. Caputo says, among other things, that Internet monitoring is a necessity. Some of the comments to the interview are more tech-savvy than the interviewee comes across.

171 comments

  1. Of course it's needed by compro01 · · Score: 5, Insightful

    And we can sell you just the product you need for that.

    --
    upon the advice of my lawyer, i have no sig at this time
    1. Re:Of course it's needed by Anonymous Coward · · Score: 1, Insightful

      Careful there, some shill for the company will mod you down like happened to me in the security story.

    2. Re:Of course it's needed by Anonymous Coward · · Score: 0

      Oh well. I've had excellent karma for years now. I can handle a downmoding.

      And I just noticed, that was my first first post.

    3. Re:Of course it's needed by Anonymous Coward · · Score: 1, Insightful

      You dummy, no PR firm has set their sights on you. You get modded down by all and sundry because you offend everyone, even other free software advocates, with your sheer idiocy.

    4. Re:Of course it's needed by Anonymous Coward · · Score: 2, Informative

      I'm pretty sure you get modded down for posting as 10 different people and having conversations only between yourself. That's how shilling works.

    5. Re:Of course it's needed by nurb432 · · Score: 1

      Its needed like another hole in the head, hmm thats not a bad idea.

      --
      ---- Booth was a patriot ----
    6. Re:Of course it's needed by willyhill · · Score: 0, Offtopic
      can assure you that you will need new accounts

      I can assure you it's not nearly necessary to engage in massive and blatant gaming of Slashdot just because you think the forces of evil are after you.

      All one has to do is look at your posting history and realize that you are modded down because Slashdotters are sick of being brought down by association with you.

      Nothing whatsoever justifies what you've been doing. Nothing.

      --
      The twitter monologues. Click on my homepage and be amazed.
    7. Re:Of course it's needed by Anonymous Coward · · Score: 0

      > Five years worth of good reputation

      We beg to differ.

      http://slashdot.org/comments.pl?sid=49657&cid=5011656
      http://slashdot.org/comments.pl?sid=180946&threshold=1&cid=14972959
      http://slashdot.org/comments.pl?sid=129735&threshold=5&cid=10823036
      http://slashdot.org/comments.pl?sid=112229&cid=9521025&threshold=5
      http://slashdot.org/comments.pl?sid=137420&cid=11489094&threshold=5
      http://slashdot.org/comments.pl?sid=155076&cid=13011391&threshold=5
      http://slashdot.org/comments.pl?sid=113493&threshold=5&cid=9614809
      http://slashdot.org/comments.pl?sid=164775&cid=13751004
      http://slashdot.org/comments.pl?sid=126301&threshold=5&cid=10572437
      http://slashdot.org/comments.pl?sid=119108&threshold=5&cid=10056927
      http://slashdot.org/comments.pl?sid=135403&cid=11299129&threshold=5
      http://slashdot.org/comments.pl?sid=136181&threshold=5&cid=11374447
      http://slashdot.org/comments.pl?sid=134005&threshold=5&cid=11203454
      http://slashdot.org/comments.pl?sid=159878&threshold=0&cid=13384602
      http://slashdot.org/comments.pl?sid=166661&cid=13899128&threshold=2
      http://slashdot.org/comments.pl?sid=168164&cid=14019967
      http://slashdot.org/comments.pl?sid=168163&cid=14020030&threshold=5
      http://slashdot.org/comments.pl?sid=172399&threshold=1&cid=14355804
      http://slashdot.org/comments.pl?sid=172869&cid=14389115&threshold=5
      http://slashdot.org/comments.pl?sid=175800&cid=14612128&threshold=5
      http://slashdot.org/comments.pl?sid=153489&threshold=-1&cid=12876883
      http://slashdot.org/comments.pl?sid=118246&cid=9997235&threshold=5
      http://slashdot.org/comments.pl?sid=100963&cid=8633073&threshold=5
      http://slashdot.org/comments.pl?sid=182119&cid=15055046
      http://slashdot.org

    8. Re:Of course it's needed by Dewin · · Score: 1

      Posting to cancel accidental moderation.

      --
      Of course nobody reads the FAQ! If people read the FAQ, the Questions wouldn't be so Frequently Asked.
    9. Re:Of course it's needed by Anonymous Coward · · Score: 0

      I've been on a phone screen with Brad Siim, their co-founder. I wasn't very impressed with the technology, or their team. I wonder how companies like this continue to get funding....

    10. Re:Of course it's needed by Captain+Splendid · · Score: 1

      Uhh, I'm a free software advocate, and he hasn't pissed me off. In fact, I friended him several years ago.

      I love guys like you. You're either far too precious, or you actually are shills for MS. Either way, you're as much a 'problem' and a nuisance here as Twitter is.

      --
      Linux, you magnificent bastard, I read the fucking manual!
  2. Beating Sandvine by Misanthrope · · Score: 5, Informative

    http://redhatcat.blogspot.com/2007/09/beating-sandvine-with-linux-iptables.html [blogspot.com]
    If you are running linux or a linux based router with iptables give this a try. My speeds returned to pre-sandvine levels.

    "If you are using a Red Hat Linux derivative, such as Fedora Core or CentOS, then you will want to edit /etc/sysconfig/iptables. First, make a backup of this file. Next, open this file in your favorite text editor. Replace the current contents with this, substituting 6883 with your BitTorrent port number:

    *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0]
    -A INPUT -i lo -j ACCEPT
    #Comcast BitTorrent seeding block workaround
    -A INPUT -p tcp --dport 6883 --tcp-flags RST RST -j DROP
    -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
    #BitTorrent
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 6883 -j ACCEPT
    -A INPUT -m state --state NEW -m udp -p udp --dport 6883 -j ACCEPT
    -A INPUT -j REJECT --reject-with icmp-host-prohibited
    COMMIT

    Reload your iptables firewall with service iptables restart. You should now see a great improvement in your seeding.

    If you are using Ubuntu or another non-Red Hat Linux derivative, then place the following in a file and execute that file as root.

    #!/bin/sh
    #Replace 6883 with you BT port
    BT_PORT=6883

    #Flush the filters
    iptables -F

    #Apply new filters
    iptables -A INPUT -i lo -j ACCEPT
    #Comcast BitTorrent seeding block workaround
    iptables -A INPUT -p tcp --dport $BT_PORT --tcp-flags RST RST -j DROP
    iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
    #BitTorrent
    iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport $BT_PORT -j ACCEPT
    iptables -A INPUT -m state --state NEW -m udp -p udp --dport $BT_PORT -j ACCEPT
    iptables -A INPUT -j REJECT --reject-with icmp-host-prohibited

    Your firewall is now configured and you should have great upload speed now. You will have to run this script every boot, by the way. One easy way is to call the script at the end of /etc/rc.local."

    1. Re:Beating Sandvine by mikael · · Score: 1

      What about the existing firewall commands? Surely, by just deleting the existing commands, you would be reducing system security?

      # Firewall configuration written by system-config-firewall
      # Manual customization of this file is not recommended.
      *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :RH-Firewall-1-INPUT - [0:0]
      -A INPUT -j RH-Firewall-1-INPUT
      -A RH-Firewall-1-INPUT -i lo -j ACCEPT
      -A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT
      -A RH-Firewall-1-INPUT -p 50 -j ACCEPT
      -A RH-Firewall-1-INPUT -p 51 -j ACCEPT
      -A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT
      -A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT
      -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT
      -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
      -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited
      -A FORWARD -j REJECT --reject-with icmp-host-prohibited
      COMMIT

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    2. Re:Beating Sandvine by Anonymous Coward · · Score: 3, Informative

      This doesn't work. Sandvine sends RST to both sides of the connection, so even if you drop the packet the other end most likely will see it and end the connection.

    3. Re:Beating Sandvine by ScrewMaster · · Score: 3, Insightful

      On the other hand, if a sufficiently large population of Torrent users made the change, that particular attack vector would pretty much go away.

      --
      The higher the technology, the sharper that two-edged sword.
    4. Re:Beating Sandvine by Misanthrope · · Score: 1

      I use my linux box as a one user desktop, as such I do not run a firewall normally due to the fact that I have no running services/daemons.

    5. Re:Beating Sandvine by mrsteveman1 · · Score: 1

      Aren't you going to end up with a large number of dead TCP connections still going? You're blocking ALL RST, right? not just the fake ones?

    6. Re:Beating Sandvine by SanityInAnarchy · · Score: 1

      Right. I don't see any way that distinguishes between fake RST packets and real ones. Sure, they'll timeout eventually, but I really wouldn't want to see this adopted by a large population of torrent users.

      --
      Don't thank God, thank a doctor!
  3. How fscking stupid can a suit get? by jeiler · · Score: 4, Insightful

    From TFA:

    For every five megabits they sell you for $40, they buy a quarter of a megabit because they're planning on you not using your computer 24/7. They count on you being away at work or being asleep. They simply cannot provision that five megabits because that costs way more than what they're selling it to you for. They need people not using the internet for it to work at $40 a month. (Emphasis added)

    So let me get this straight--poor planning on their part somehow does constitute some form of emergency on my part?

    --

    If you haven't been down-modded lately, you aren't trying.

    Sacred cows make the best hamburger.

    1. Re:How fscking stupid can a suit get? by cdrudge · · Score: 3, Insightful

      Poor planning on their part doesn't make it an emergency on your part. Poor planning on their part makes a problem that Sandvine's CEO wants to sell a "solution" to fix the problem.

    2. Re:How fscking stupid can a suit get? by jeiler · · Score: 1

      Yeah, I know--but it's occasionally refreshing to vent when stupid people make stupid mistakes, suits like the jerkwad at Sandvine want to sell them a "solution," and people like me get stuck with the bill.

      --

      If you haven't been down-modded lately, you aren't trying.

      Sacred cows make the best hamburger.

  4. What the fuck is 'churning'? by LighterShadeOfBlack · · Score: 1

    With every service you've ever churned in your life, be it your bank, insurance company, cellphone service, why did you churn that service? This guy is using 'churn' in the most bizarre places. Is this some weird Canadian thing or what?

    I'll admit I only skimmed the article so maybe it's explained earlier that he's had some kind of stroke that's messed with the speech centre of his brain resulting in this problem. Or maybe he's just an idiot.

    --
    Spelling mistakes, grammatical errors, and stupid comments are intentional.
    1. Re:What the fuck is 'churning'? by oodaloop · · Score: 1

      There was an article in Mobile Tech Today, uh today that used the same word in the same context over and over again. Weird.

      http://www.mobile-tech-today.com/story.xhtml?story_id=11100AWYI8ZX

      --
      Tic-Tac-Toe, Global Thermonuclear War, and relationships all have the same winning move.
    2. Re:What the fuck is 'churning'? by Ethanol-fueled · · Score: 2, Funny

      Let's hope that Caputo goes Kaput.

      (sorry, someone had to say it!)

    3. Re:What the fuck is 'churning'? by base3 · · Score: 1

      Not much "churn" going on where there are local Comcast monopolies, unless he's referring to the churning of butter.

      --
      One CPU cycle wasted on digital restrictions management is ONE TOO MANY.
    4. Re:What the fuck is 'churning'? by hedwards · · Score: 1

      That's just verbing the noun, I suspect he really means screwed.

      Allow me to translate:

      With every service you've ever churned in your life, be it your bank, insurance company, cellphone service, why did you churn that service? Means:
      With every service you've ever screwed in your life, be it your bank, insurance company, cellphone service, why did you screw that service?

      The truly bizarre thing is that it really ought to be the other way around.

    5. Re:What the fuck is 'churning'? by Zerth · · Score: 3, Informative

      Churn is an industry term for the percentage of your users will leave for somebody else and the percentage of their users that leave for you. Frequently these users are the same damn people swapping back and forth.

      So despite gaining and losing lots of users, everyone's base stays roughly the same, like a churning ocean, but each one of those churners costs you $X every time they switch sides(freebies, paperwork, number portability, etc).

      Apparently this is now the superlative of "discontinuing service", i.e. "you guys suck, I'm leaving for your competitor."

    6. Re:What the fuck is 'churning'? by urcreepyneighbor · · Score: 1

      With every service you've ever churned in your life, be it your bank, insurance company, cellphone service, why did you churn that service? The truly bizarre thing is that it really ought to be the other way around.

      Lesson: fuck 'em for as long as you can and escape once they want to return the favor.

      Sigh. This will probably be modded funny or, worse, insightful. :(

      --
      "The fight for freedom has only just begun." - Geert Wilders
    7. Re:What the fuck is 'churning'? by I+cant+believe+its+n · · Score: 1

      The greatest cause of churn (except for really awful services / products) has to be the companies that dont give a damn about you as a loyal customer and give all rebates and freebies to new customers. The second you leave for some other supplier the old supplier contacts you with all kinds of offers (all kinds I tell you). Talk about teaching your customers to change suppliers often.

      A similar example is the morning paper that my girlfriend subscribes to. She has been a loyal customers for years, but they keep trying to convince me to start subscribing (for less money - and I will also get a useless "summer bag")

      In the short term, they will increase some "significant" number, but in the long term they are ruining their own reputation.

      --
      She made the willows dance
    8. Re:What the fuck is 'churning'? by grahammm · · Score: 1

      So despite gaining and losing lots of users, everyone's base stays roughly the same, like a churning ocean, but each one of those churners costs you $X every time they switch sides(freebies, paperwork, number portability, etc).

      So why do so many companies (not just ISPs, but credit card, insurance companies, banks etc) have "new customer only" deals to attract people to switch to them rather than making an effort to encourage existing customers to stay? They seem to encouraging churning.
    9. Re:What the fuck is 'churning'? by Zerth · · Score: 1

      Bullshit freebies are cheaper than infrastructure improvements, probably. Plus, if some company actually spent time working on service over specials, "we don't suck" seems to lose to "50% off" and their shareholders would get on their case for not doing enough to attract "new" customers.

  5. What has overselling to do with monitoring? by kandresen · · Score: 5, Insightful

    As stated in the article is that the ISP's are selling you 1 megabyte while really buying you 1/4th of a Megabyte... Network monitoring is in other words necessary to ensure you in other words only use 1/4th of a Megabyte for every Megabyte you buy. It's right there in his argument!

    1. Re:What has overselling to do with monitoring? by joocemann · · Score: 1

      That is a pretty great analogy. I like where it is going because it points out the obvious flaw in the deceptive marketing tricks of the ISPs with plenty of clarity for a judge to understand. I hope.

      One thing I do not quite understand is that even if 1-1/4 is the expectation, I don't know or see enough people actually utilizing max bandwidth 24/7. Most people I know use the internet as 'expected', so the realistic offset from the actual 24/7 P2P use is probably noticeable but probably not that bad.

      In another argument, similar to the faked 'oil supply issues' in the US. If there was actually a lack of supply, gas stations would be out or nearly out of gas somewhere (which is not the case). And in this case, if there was a shortage of bandwidth, there would be major breakdowns of the internet (which is not happening before or after p2p controls).

      If they need to charge me more, that's fine by me. I just want them to be honest about what I'm getting and to let the appropriate authorities deal with whatever illegal activities may be occurring on the internet.

    2. Re:What has overselling to do with monitoring? by Alibaba10100 · · Score: 1

      If the price of a good is adjusted quickly and severely enough to compensate for an increase in demand or a decrease in supply, the good will never actually run out. The idea that there is "not enough" of some good is meaningless in an economic sense. If there is not enough gas being produced to supply world demand at $1 a gallon, there may be enough to supply world demand at $3 a gallon.

      in other words: if markets work like they are theoretically supposed to, you will never simply run out of a good. gas stations will never run dry, and the internet will never collapse. under normal circumstances like gradually increasing demand for oil and bandwidth, the market is able to absorb changes without breaking down.

    3. Re:What has overselling to do with monitoring? by dodobh · · Score: 1

      The ISP probably buys 10 Mbit/s of transit, but sells it to 100 users at 1Mit/s each (1 1:10 oversubscription). If users wanted less oversubscription, those plans would be available (typically business class ADSL, or T1/E1 and above).

      This would be reasonable for usage patterns which were previously considered normal (web surfing, email, some chat) over asymmetric links, with a large bandwidth bias in favour of the subscriber.

      This is one of the reasons why ISPs forbid end-users from running servers (which have a bandwidth usage bias in the other direction).

      It isn't necessary that you use only 1/4th of the bandwidth, it is that you use full bandwidth only 1/4th of the total time, and be nice to your neighbours. What we have on the other hand is a culture which encourages grabbing shared resources for yourself all the time instead of being nice to your neighbours. ISPs don't encourage the "be nice to your neighbours" viewpoint either.

      In a civilised world, file-sharing wouldn't even be a problem because it would be dealt with by social measures (but we would also have world peace and no spam). In this scenario, the file-sharers are the abusers of the last-mile bandwidth commons, and cause trouble for the remaining users (just like spammers cause trouble for the rest of the Internet).

      Distributed file sharing technologies re-define normal, throwing their existing calculations off kilter.

      --
      I can throw myself at the ground, and miss.
  6. Yes and no by Mensa+Babe · · Score: 3, Interesting

    Yes, Internet monitoring is a necessity.[1] No, injecting anything into someone who doesn't wish to have his stuff interfered with is not only not a necessity but quite frankly an outrage. Remember people, just because one thing is a necessity doesn't mean that something more must also be necessary. This is a slippery slope. To be honest I was expecting more logical integrity from Dave Caputo whom I've always respected and liked personally but who has apparently started to be blinded by his corporate agenda. What a shame, Dave. What a shame.

    --
    Karma: Positive (probably because of superiour intellect)
  7. "Honour" by EvilRyry · · Score: 1
    TFA

    There used to be this honour system on the internet called "published ports."

    It's an antiquated honour system now because there's plenty of application developers that have no honour.

    Oh yeah? Well back in my day we had an honor system called "don't screw with my freaking packets while they travel over your routers that I'm paying you to use". If y

    1. Re:"Honour" by Opportunist · · Score: 3, Insightful

      Back in my day we had a honor system that basically said "don't sell 100 gallons of milk when you only have 20".

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    2. Re:"Honour" by maxume · · Score: 2, Funny

      Is it a let down knowing that your day has passed?

      --
      Nerd rage is the funniest rage.
    3. Re:"Honour" by Opportunist · · Score: 2, Funny

      I'm trying to get old in dignity, you insensitive clod!

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    4. Re:"Honour" by Anonymous Coward · · Score: 1, Interesting

      Yeah, easily the most ridiculous statement in the interview. They're basically telling me that if I as a programmer put in the ability to change a port I am "dishonourable". News flash: every single network application worth its salt lacking "honour". Your web browser, by allowing you to connect to http://foo555/ is unethical!

    5. Re:"Honour" by kramerd · · Score: 1

      IANAL, but in today's world, if you sell 100 gallons of milk and only have 20, that is considered fraud. That isnt what is happening here. We have companies selling the right to milk cows and take as much milk as you can drink, for a set fee. The companies assume that people can drink x amount of milk, and that they only want to use the milk for drinking, as a supplement to the rest of their diet. They also expect users to pay for the maintenance of the cows during the service, built into the price of the milk contract. Certain subscribers are taking milk baths, lying under the cows, and using programs to milk the cows directly onto them 24 hours a day. Other users are using milk as the entire source of nutrition, easily able to sustain a gallon challenge or two. In response, rather than realizing that the business model of unlimited milk is being used by customers in a different way than expected, these companies are refusing to adjust the business model. Users arent willing to pay more money for less milk, so charging by the gallon isn't going to work in this environment. The companies response has been exactly the opposite of what a good would say, instead of investing in cows that produce more milk or in larger herds or selling to less customers with existing infrastructure, companies are reducing the amount of milk that each cow can produce and claiming that it is necessary for consumers to reduce their proper usage of a contract. Sadly, this works much better than the traditional car analogy.

  8. speeding up 'your' Internet by postbigbang · · Score: 2, Insightful

    That sums it up. It's all of 'our' Internet, and its lucidness and capacity to re-adjust is part of its design. If you want a big-gulp download, you should get what you pay for-- subject to the randomness off aperiodic congestion, just like a freeway.

    I'm guessing you weren't around or were kicking your siblings in the playpen when the Internet was designed. We believe in getting what we paid for, in a neutral, unbiased delivered fashion. All other attempts at control in our opinion, is not only illegal, but contradictory to the philosophy of egalitarian use, and in some corners, reason for revolting.

    --
    ---- Teach Peace. It's Cheaper Than War.
    1. Re:speeding up 'your' Internet by Anonymous Coward · · Score: 2, Insightful

      One of the downsides to living in a civilized society (as opposed to the anarchy you espouse) is that sometimes you have to curtail your activities for the benefit of the society as a whole. Just because you are legally entitled to rip off a loud fart, belch, and gab on your cellphone in the middle of an opera doesn't mean you should.

      It's called being civilized, or, if you prefer, acting in a civilized manner.

      Just because you can jam your neighborhood's pipe with your devil-may-care attitude of usage doesn't mean you should. Nor does it mean that society (us) should allow you to. This isn't the wild west. My apologies if this is a new concept for you; your parents should have taught you better.

    2. Re:speeding up 'your' Internet by postbigbang · · Score: 3, Interesting

      That's not what I'm advocating at all.

      Civility means getting what you pay for. Civility means behaving when there's a traffic jam. Civility means not having what you bought and paid for surreptitiously examined, weighted, and thwarted.

      I'm not interested in jamming my neighbor's pipe. I AM interested in not being lied to, and for getting what I paid for, and not having my information sniffed by a cockamamie CIVIL liberty-avoiding bone head that calls him/herself a service provider.

      Where, praytell, is the civility in THAT?

      --
      ---- Teach Peace. It's Cheaper Than War.
  9. Honestly, I'm SHOCKED! by Frosty+Piss · · Score: 2, Funny
    NEWS FLASH! CEO of company that makes money helping ISPs throttle the Interweb says throttling the Interweb necessary!

    Honestly, I'm SHOCKED!

    --
    If you want news from today, you have to come back tomorrow.
    1. Re:Honestly, I'm SHOCKED! by DaMattster · · Score: 2, Interesting

      I am shocked because Sandvine is a frequent supporter of Open Source Operating Systems and has contributed to BSD Conferences. I would have thought that they would support the openness of the internet too. Apparently, their monetary sponsorship of open source conferences are just a PR Stunt.

    2. Re:Honestly, I'm SHOCKED! by 99BottlesOfBeerInMyF · · Score: 5, Interesting

      I am shocked because Sandvine is a frequent supporter of Open Source Operating Systems and has contributed to BSD Conferences. I would have thought that they would support the openness of the internet too. Apparently, their monetary sponsorship of open source conferences are just a PR Stunt.

      Sandvine is one of many telecomm gear companies that strongly support OSS. I used to work at a similar company with at least one ex-Sandvine co-worker. Basically, they build "devices" which they sell to ISPs and other big network operators. They build those devices with custom or off the shelf hardware combined with on OSS operating system, toolchain, and applications, plus a few closed source applications that contain their core competency and money proposition. This is often referred to as the "secret sauce" code.

      These companies do support OSS and build their entire business model around it (in combination with some closed source). They aren't OSS zealots, but most of the employees are strong supporters of OSS and the companies are very good about contributing code back. A lot of the code in Linux and the BSDs is contributed by these companies. They support OSS conferences and the like, because they want to promote OSS, because it is a good way to recruit new talent, and because the improvements that come out of those conferences are often beneficial to their bottom line. A lot of people think OSS is created by hobbyists, but really Sandvine is a good example of who really makes up the OSS community and contributes code. It is mostly businesses who use it to make money in conjunction with hardware, services, or additional closed source software.

    3. Re:Honestly, I'm SHOCKED! by Frosty+Piss · · Score: 1

      I am shocked because Sandvine is a frequent supporter of Open Source Operating Systems...
      A number of notable heavy-hitting Open Source guys have made pacts with The Devil of Redmond. Big stacks of money can be attractive.
      --
      If you want news from today, you have to come back tomorrow.
  10. Re:Maybe I'm being selfish by compro01 · · Score: 1

    It's not going to speed up your internet connection.

    At best, everything will remain the same as now.

    More realisticly, your bill will increase and your service will become worse.

    At worst, they'll disconnect you as they've kicked off so many of the "top 5%" of users that you're now part of the top 5%.

    --
    upon the advice of my lawyer, i have no sig at this time
  11. How about selling what you have? by Opportunist · · Score: 1

    So you can't provide those fantastillion megabits per sec for 40 bucks. Ok, I can see that. How about ... I dunno... selling what you can sell?

    Trying to sell something and hope that the customer won't use it is at the very least false advertising. Personally, I'd call it fraud.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    1. Re:How about selling what you have? by Zontar+The+Mindless · · Score: 2, Insightful

      Trying to sell something and hope that the customer won't use it is at the very least false advertising. Personally, I'd call it fraud. Perhaps you would. Some people, however, find that it suits their purposes to refer to it as "marketing".
      --
      Il n'y a pas de Planet B.
    2. Re:How about selling what you have? by spottedkangaroo · · Score: 3, Insightful

      So you can't provide those fantastillion megabits per sec for 40 bucks. Ok, I can see that. How about ... I dunno... selling what you can sell?

      The problem is, that a megabit still costs $300/mo or $700/mo. There's no way around that.

      You can get un-fucked-with bandwidth for that price, or you can live with the fact that your concentrated. You can't have it both ways.

      The more you buy, the cheaper it gets, so you could order a T3 or something for like $5000/mo and then sell it to your neighbors for like $200/mo... (not including the cost of the routers).

      ... but one thing you couldn't do is sell unfiltered unconcentrated bandwidth to your neighbors for $40/mo.

      I don't know about you, but I'm happy to have 3megs part of the day for $30/mo instead of my old ISDN line for $145/mo. Or maybe dialup? No thanks. I'll take the concentrated 3megs for $40.

      It's just not realistic to expect to get more for your $40 than they get for their $300.

      --
      Imagine if you weren't allowed to use roads because a bus company complained about your driving 3 times. --skunkpussy
    3. Re:How about selling what you have? by Opportunist · · Score: 1

      That's a given, no doubt, but it irks me to no end that we get sold "promises" of insane speeds at insanely low prices. That it cannot work out is a given, at least for everyone who didn't sleep through his business classes. Or at least has lived in any capitalist society for longer than a month.

      Now instead of telling people that no, you can't use the insane speeds we promised you, selected services get cut off or crippled. Sure, email and www are love children of every ISP, email is entirely local traffic (at least when users collect their mail) and www is rather low bandwidth, and burst usage too (ISPs love that).

      And they can sell those two services well to the masses. That's what 90% of their customers use, predominantly.

      When you're not one of those that are satisfied with "internet for the masses", you become a nuisance. How dare you use the net the way you want to!

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    4. Re:How about selling what you have? by whoever57 · · Score: 1, Offtopic

      The problem is, that a megabit still costs $300/mo or $700/mo. There's no way around that.
      Actually, it is something less. I recently put a couple of machines into a Colo facility. For $200/month, I get a bandwidth allowance equivalent to a continuous 1MB. Since I am also paying for space, electricity, overhead, etc., one can assume that the cost to the Colo facility of that 1MB for a month is a lot less than $200.
      --
      The real "Libtards" are the Libertarians!
    5. Re:How about selling what you have? by Wildclaw · · Score: 3, Informative

      http://www.dslreports.com/shownews/Cogent-McBandwidth-Gets-Cheaper-95203/

      $7/mbit (of course talking about decent volumes here with the cheapest provider and I guess with fiber already in the ground)

      However that should give you a clue how much everyone is overcharging everywhere. The expensive part is the digging, but it is good (money earning) business to charge big money for small traffic volumes on lines that in reality could support far higher volumes. Not to mention how inefficent a big part of the industry is.

      Atleast that is the only way I can explain how some countries are managing to supply such nice bandwidth to their citizens without getting economically ruined.

    6. Re:How about selling what you have? by spottedkangaroo · · Score: 1

      No... try setting up a bit torrent that maxes out your 1mb for a month or so. They'll talk to you about it. That 1meg they're allotting to you is concentrated too. The real cost of bandwidth is much higher, but in most situations servers and people don't really use it all. If it wasn't for that we'd all have our own crappy 360k for the money.

      --
      Imagine if you weren't allowed to use roads because a bus company complained about your driving 3 times. --skunkpussy
    7. Re:How about selling what you have? by ady1 · · Score: 1

      >>The problem is, that a megabit still costs $300/mo or $700/mo. There's no way around that.

      Costs? Costs? How the fuck does a megabit costs anything at all? The infrastructure does have a running cost, no doubt but each megabit which passes through DOES NOT costs anything.

      Now if they (aka large ISPs) stop fucking paying advertising companies and lobbying firms large sums of money to amend laws to their suiting and instead learn to spend this money on upgrading their network. But that would make them less of an asshole, wouldn't it? How would they be able to look in the mirror.

  12. Blocking bittorent by aceofspades1217 · · Score: 1

    I think that blocking bittorent is a horrible offense against net nuetrality and that Comcast really is just falsely advertising. They try to sell you a connection for a ton of money and than not let you use it....how is that fair.

    Comcast is simply ripping people off and refusing to upgrade their network.

    I blame comcast but I don't really blame sandvine. Someone is going to make the software whether its sandvine or "Network Management Unlimited" (wow not a bad idea for a new startup :P). He is just making software. He is just as much of an exploiting douchbag as the people who make the bandwidth hogging programs if you think about it.

    Its comcast that are money hungry exploiting bastards who just want to exploit the fact that they are a monopoly.

  13. This is the "perfect storm" by hairyfeet · · Score: 4, Insightful
    That I have talked about several times in the past. When you combine corporate greed,the ease of buying off congress,and the desire by the telecos not to bother sinking any of their massive profits into infrastructure upgrades even though the taxpayers shelled out for them,you have the "perfect storm" that in the end will leave the Internet nothing but a crippled former shell of itself.


    After all,it isn't but a single step to go from "We are doing RSTs to save our network!" to "We can use this technology to "guide" our customers to our services and to our affiliates and to "discourage" them from using our competitors and make even greater profits!".


    Mark my words,the Internet will end up a bunch of "walled gardens" like in the days of AOL and Compuserve. The amount of bandwidth they give you for "non-affiliated" services will be so pathetic as to not matter. They will offer the few big boys like Google a free pass to keep them from fighting it while the rest can just starve. The days of a wild and free Internet are coming to a close IMHO. And the world will be a much worse place for it. After all I'm sure that each "garden" will have their own "free" news feed where only approved views will be heard and the corporate spin will always be considered gospel. But that is my 02c,YMMV

    --
    ACs don't waste your time replying, your posts are never seen by me.
    1. Re:This is the "perfect storm" by Anonymous Coward · · Score: 0

      the Internet will end up a bunch of "walled gardens" like in the days of AOL and Compuserve I guarantee that it will not end up like that. The internet may not be run by the companies which are running it today, but it will be P2P. There are too many attractive applications which require that kind of network and building networks is not exactly rocket science. We'll do it ourselves if we have to, you know?
    2. Re:This is the "perfect storm" by Inquisitor911 · · Score: 2, Interesting

      Mark my words,the Internet will end up a bunch of "walled gardens" like in the days of AOL and Compuserve. The amount of bandwidth they give you for "non-affiliated" services will be so pathetic as to not matter. They will offer the few big boys like Google a free pass to keep them from fighting it while the rest can just starve. The days of a wild and free Internet are coming to a close IMHO. And the world will be a much worse place for it. After all I'm sure that each "garden" will have their own "free" news feed where only approved views will be heard and the corporate spin will always be considered gospel. Unfortunately, what you said paints a frighteningly accurate picture of what the future may hold. I've taken a screencap of your comment so that someday we can tell everyone that we knew that this beast was coming before it reared it's ugly head.

      Screenshot Link
    3. Re:This is the "perfect storm" by Anonymous Coward · · Score: 0

      And this is why Amerikkkans should not be left in charge of the internet. They are too easily corrupted by corporate greed.

    4. Re:This is the "perfect storm" by Anonymous Coward · · Score: 0

      Even if the ISPs gave Google an unrestricted pipe, if they limit the speed of all the other sites in the search results it will inevitably mean less searches performed.

      And just think about how even more unwilling individuals will be to click on ads if they take an inordinate amount of time to load.

    5. Re:This is the "perfect storm" by hairyfeet · · Score: 2, Interesting
      Thank you. Despite what Mr. Coward has so rudely said earlier,I am speaking from personal exp. In my area you have the choice of 20Gb for $35(WISP) or 36Gb for $33(cable). The DSL here is so damned slow you might as well be on dial up. I used to use a lot more FLOSS and try out newly released distros,but not anymore. I simply can't waste my bandwidth.


      As to the earlier Mr. Coward...This is how the wall works.It isn't some giant "great firewall" that you bash against,they simply starve you out for bandwidth for anything that isn't "approved". And I have read several whitepapers and discussions by the telecos about how tiered pricing will work and they are all quick to point out that Microsoft updates will be given a free pass,either by a locally hosted WSUS server or having the Microsoft IP range not count towards your total. Which of course gives the public one more reason to use the "approved" OS,as it won't count against them when it updates. The telecos know pulling a "great firewall" will lead to bad press,so instead they will spin it about "local content" gets priority and the use of the "extremely limited" non locally hosted content will be punished.


      And don't forget Mr. Coward,these "shills" have priority passes through the halls of congress and enough money to get their views heard. After all,it is their network,who better to "optimize" the traffic for the good of all? But that is my 02c,YMMV

      --
      ACs don't waste your time replying, your posts are never seen by me.
    6. Re:This is the "perfect storm" by hairyfeet · · Score: 1
      But the "big boys" who put up a large chunk of those ads,the amazons,the ebays,etc will also have an "unrestricted" pipe. And this will in turn cause more of the "also rans" to want to get on board and pay their "bandwidth allocation" fees so that they too can have unrestricted access to the user. And don't forget about the ease of "forced ads" which I am seeing all to often on news and entertainment sites. You know the ones,where they "force" you to watch a series of ads before the video starts.


      There is simply so much profit to be made in a tiered system,and without the downside of actually having to build up their infrastructure,that I just don't see the big telecos not going for it. And it isn't like they have a lot of competition in most markets,so if they get together and decide that,say all users only get 20Gb of "unstructured" content a month,there really isn't a lot we can do about it. Personally I hope it doesn't come to pass,but in my case at least there is no such thing as "unlimited" Internet as nobody sells it here. But that is my 02c from my personal experience,YMMV

      --
      ACs don't waste your time replying, your posts are never seen by me.
    7. Re:This is the "perfect storm" by Anonymous Coward · · Score: 0

      There's not much point to Google if you can search but you can't click through to results.

    8. Re:This is the "perfect storm" by Anonymous Coward · · Score: 0

      so basically the Internet will become like TV/Radio/Newspaper and all other forms of mass media.

  14. or maybe by Anonymous Coward · · Score: 0

    destroying sandvine is a necessity.

  15. ISPs should never send an RST by Animats · · Score: 5, Insightful

    ISPs should never muck with a TCP stream. They're entitled to send ICMP messages. ICMP Destination Unreachable has codes for things like "(13) Communications Administratively Prohibited" and "(10) Destination host administratively prohibited". Then at least the user knows 1) that somebody along the route didn't like the packet, and 2) who to blame. There's a right way to do this, and sending an RST isn't it.

    Client software may not pass all the ICMP info up to the user, but that could be fixed easily enough.

  16. Gotta love those statements. by khasim · · Score: 4, Interesting

    CBCNews.ca: Has the internet always been managed, because this idea of network management almost seems recent?

    Caputo: I had dinner with Vint Cerf [a U.S.-based computer scientist often called the father of the Internet] probably a year back and I think he'll be the first to admit that he's surprised and shocked at what his authoring of TCP/IP has meant. If you look at that underlying transmission protocol, when you send a flow of packets -- if they're getting through -- they get bigger until you get congestion, then the packets get smaller. The idea of flow control in the internet has been a tenet of it since day one.

    It really depends on where you draw the line on what management is. The service provider has to figure out the business model of how much service they're going to give a subscriber and how much bandwidth they're going to provide to the internet. That oversubscription ratio is their business model.

    For every five megabits they sell you for $40, they buy a quarter of a megabit because they're planning on you not using your computer 24/7. They count on you being away at work or being asleep. They simply cannot provision that five megabits because that costs way more than what they're selling it to you for. They need people not using the internet for it to work at $40 a month. Now CBC may buy its one-megabit connection for $800 a month because it's a dedicated one-megabit connection.

    ...and...

    CBCNews.ca: So theoretically an internet service provider could sell customers a dedicated peer-to-peer router?

    Caputo: Conceivably. The beauty is to let the market figure it out, and it will.

    So he wants to sell technology that allows the ISP's to OVERSELL their bandwidth while LYING to their customers and he refers to that as "the market".

    How about just telling the customers EXACTLY what they're paying for?

    For $40 you get a guaranteed MINIMUM bandwidth of X with a potential to burst to Y.

    If you want more, you pay for more.

    1. Re:Gotta love those statements. by abigor · · Score: 3, Insightful

      All ISPs oversell, with our without Sandvine's products. Your ISP tells you you're getting a certain amount of bandwidth, but you aren't, at least not 24/7. This has always been the case from day one.

      This company isn't doing anything particularly brilliant. ISPs have been doing ad hoc versions of it for years and years.

    2. Re:Gotta love those statements. by legirons · · Score: 1

      All ISPs oversell, with our without Sandvine's products. Your ISP tells you you're getting a certain amount of bandwidth, but you aren't, at least not 24/7. This has always been the case from day one.

      Sure the label said that our can of beer contained 18oz. But it actually contains just 6oz - we were expecting you to fall asleep while drinking it and not notice.
    3. Re:Gotta love those statements. by mrsteveman1 · · Score: 3, Insightful

      Its more like selling access to the keg, telling everyone they can drink the whole thing, and expecting everyone to blackout before they notice its gone

    4. Re:Gotta love those statements. by Free+the+Cowards · · Score: 5, Insightful

      Everybody in my neighborhood picked up the phone at the same time and half of them couldn't get through!

      Overselling is not a bad thing. It can just mean that you sell based on statistical maximums rather than theoretical maximums which never happen. When done this way, there's absolutely nothing wrong with it.

      When 90% of your customers are offline at any given time, there's no point in provisioning more than one tenth of the bandwidth you would need to support all of them downloading at the maximum rate simultaneously.

      The problem is not overselling. The problem is that some ISPs oversell too much. They aren't willing increase capacity to match actual use, but instead try to reduce usage to match actual capacity. This is wrong. But the simple fact of overselling is the only sane way to do business.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    5. Re:Gotta love those statements. by mrsteveman1 · · Score: 1

      Oh i know, its called statistical multiplexing :D

      I just think, as you noted, they are cheap and do it too much, and they bitch and complain about heavy users because they want to find new ways to extract money from their networks.

    6. Re:Gotta love those statements. by Free+the+Cowards · · Score: 3, Insightful

      Exactly right. So complain about insufficient capacity, and not about overselling which is necessary, common, and entirely reasonable.

      It just gets me how it seems like everybody in these discussions does not actually understand reality. "Ooh, the evil cable company promised 100 people in my neighborhood 5MBit connections but they don't actually have 500Mbit of bandwidth serving us! What a bunch of liars!" Sorry guys, but that's not actually how it works!

      Now if people will complain about a lack of capacity then I'll be right there with them. But everybody just jumps straight to complaining about "overselling" and it makes them look like a bunch of fools.

      To take your analogy, if you know from past behavior that you can sell beer "subscriptions" and only purchase half the beer that your subscriptions would require because most of your customers won't drink their full subscription, this is just good business practice and it's a good thing to do.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    7. Re:Gotta love those statements. by Dan541 · · Score: 1

      How about just telling the customers EXACTLY what they're paying for? Because that's not how fraud is supposed to work.

      --
      An SQL query goes to a bar, walks up to a table and asks, "Mind if I join you?"
    8. Re:Gotta love those statements. by call-me-kenneth · · Score: 2, Interesting

      How about just telling the customers EXACTLY what they're paying for?

      Because most people want their router to be a little box the telco sends them that enables them to get to CNN, Yahoo mail, and donkeyporn.com . If you want to try explaining 95 percentile billing, BGP peering, settlement-free transit, backhaul, TE at the edge, Netfllow, CEF, OSPF, "tier [n]", eyeballs versus content networking, CDMA, MPLS, tag switching, jumbo frames, latency vs packet loss vs RTT, asymmetrical routing ILECs vs CLECs vs incumbents,... well, as someone once said, I encourage all my competitors to adopt ths approach :)
    9. Re:Gotta love those statements. by Dr.+Donuts · · Score: 4, Insightful

      That's all true, however, the point being made is that companies are not selling/telling their customers this. They are advertising it as unlimited.

      To build on the analogy, you can have unlimited beer but if we see you drinking more than a six beers a day we'll cap how much beer you can have. See how ridiculous that is?

      Overselling is not unreasonable. Advertising as unlimited is.

    10. Re:Gotta love those statements. by Free+the+Cowards · · Score: 4, Insightful

      I disagree. Advertising as unlimited is perfectly reasonable, if you can provide it. There's nothing that says you can't. This should be obvious simply by observing that a huge number of ISPs over a very long period of time have advertised and provided unlimited access with no problems.

      The problem comes when you no longer want to provide it but still want to advertise it, which is what these large US ISPs are beginning to do, and this is indeed unreasonable.

      Back to the beer analogy, let's say you sell a beer subscription that's limited to 1 beer an hour but is otherwise unlimited. However you only provision your restaurant for 10 beers an hour despite the fact that you've sold 100 subscriptions. Nothing wrong with this so far. If you worked out your numbers to see what your peak demand is and that peak demand is 10, then you're in good shape!

      The problem comes when people start drinking more, and so your peak demand increases past 10 beers per hour. At this point you have two honorable choices. One is to say, sorry, we can no longer offer the unlimited subscription, would you like a subscription which comes with 30 beers per month, and a charge per each beer after that? Another is to increase your supply of beer. If your subscribers are now peaking at 15 beers per hour then arrange for that amount to be delivered. Unfortunately these US ISPs are taking a cowardly way out. They are, essentially, continuing to offer the unlimited beers but are finding all the guys who constantly come in for one beer every hour nonstop, intercepting them on the way out the restaurant, dragging them into the alley, and beating them up.

      But if you just increase your supply to match the actual demand, there's nothing wrong with overselling while advertising unlimited service, since that is in fact exactly what you are providing.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    11. Re:Gotta love those statements. by Anonymous Coward · · Score: 0

      This is only true for some (all cable?) companies, my DSL is full bandwidth 24/7. 4/1mb

      How do I know? cause I do it on a regular basis for weeks at a time, no throttling, no calls from "support" no problem.

    12. Re:Gotta love those statements. by studog-slashdot · · Score: 1

      Overselling is not a bad thing. It can just mean that you sell based on statistical maximums rather than theoretical maximums which never happen.

      Which is *exactly* the problem. The suits think exactly like that. However, with the internet, usage can be automated by programs, and can and does hit the max. Overselling in that environment is just cheating the customers. And now they want to cheat the customers even more to make up for their mistakes.

      ...Stu

    13. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      No, it's not. The statistical maximums take that usage into account. Proper provisioning does not involve making some worthless model of an ideal customer that never interacts with the real world. It means you look at actual usage, and actual growth rates, project usage into the future, and upgrade your infrastructure to suit.

      Just because your ISP doesn't have the capacity to handle every single customer downloading at the maximum rate simultaneously does not mean they're doing anything wrong, because that never happens. As long as they can handle the actual peak loads then they're doing everything right. Yes, automated access increases peak loads, but they still don't come anywhere close to the theoretical maximum.

      Whining about how ISPs don't provision to match theoretical maximum loads is equivalent to whining that ISPs don't have 90% unused capacity sitting around all the time accomplishing absolutely nothing beyond driving up the price you pay for service. It's like complaining about rush-hour traffic in your area by saying that the city should build 500-lane highways to handle the case where every single car in the region is on that highway simultaneously.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    14. Re:Gotta love those statements. by mrsteveman1 · · Score: 1

      It would be fine if they were happy just coming in under their networks limits, but they aren't happy with just that. They want to charge people more despite the fact that their networks aren't maxed at the moment.

      For large providers, once they pay for the equipment and maintenance, there is zero cost increase as network use rises, the cost comes in upgrading that network to keep the ceiling high enough, which they either aren't doing or don't want anyone to know about, so they can claim they are being maxed and then charge people more :D

    15. Re:Gotta love those statements. by jonaskoelker · · Score: 3, Insightful

      Could you explain what would be lost if such as page was clearly marked as highly technical, and was optional to read?

      I'm thinking something along the lines of the link text being "high technical information" and the page having a header that goes "The information on this page is meant for people who want to know the technical details of how internet service is provided by $ISP. It's written with the assumption that the reader knows what TCP window sizes, anycast routing and best-efforts networks are and which practical implications they have. If these terms are new to you, you probably want $USER_FRIENDLY_DOC."

      I'm with you on the point that you shouldn't try to force your users to understand the technology (just as the car stereo salesman doesn't wax on/wax off about how frequency modulation works and the benefits of optical versus magnetic storage). But not having to explain something is different from having to not explain it. Why not make both groups of users happy?

    16. Re:Gotta love those statements. by TheLink · · Score: 1

      Really? How do you oversell and not monitor and throttle if all of your customers start using P2P and leave their computers online all the time? It'll be like everyone picking up their phones and connecting to each other just to listen to music all day long.

      If ISPs could set up "super" caching peers for P2P on their network that'll help a lot - but the MPAA and RIAA might give them problems, and also ISPs would still have to throttle inter-ISP P2P traffic (and prioritize traffic to their super peers - so they can cache stuff ASAP for their customers).

      And the only way P2P caches could work at the moment is if ISPs snoop P2P traffic. Lots of people are going snooping and throttling = bad.

      One way to oversell is to have "always on" internet connection at a crap priority by default, and users use a "dialer" to get a higher priority, and they get X hours a month depending on their package. But that's back to the bad old days of dial up (except that you still do get "always on", just at really crappy speeds - when no higher priority traffic is running).

      It's trivial to throttle P2P traffic - non P2P apps (that aren't worms etc) don't normally make connections to dozens of other hosts at the same time (even if your heavy web browsing has many connections, those connections are usually to a few hosts). Thing is not everyone cares if their P2P connection is getting good rates all the time - sometimes users want it ASAP, and sometimes they're just "leaving it on". Without that dialer thing, it'll be hard to tell.

      --
    17. Re:Gotta love those statements. by Zombywuf · · Score: 1

      There is an obvious problem with that model that everyone seems to miss. The portion of time that people aren't using the internet is always the same. People will generally be wanting their maximum bandwidth between 6pm and 11pm. Unless you're willing to stick 5 hour latencies on packets, overselling doesn't work.

      --
      If you can read this you've gone too far.
    18. Re:Gotta love those statements. by DarkOx · · Score: 1

      True, but you should be keeping some idea of how much beer is being used. If you start to notice that your saftey stock is beeing almost completely consumed, or hell you have even run out on multiple ocasions; you would start ordering more beer. Maybe people are drinking more in the economic down turn or whatever but you would start ordering more beer. If you had to order a great deal more beer you would probably start charging higher rates for beer subscriptions too.

      The ISPs on the otherhand have been ridding the maxiums of their infrustructure for years now in many cases. They continue to add customers and continue to charge the same rates but don't invest in more network. Its bad business all around and the only think that lets them do it is that in lots of localites their are only one or two players in the general consumer space and they both behaive badly.

      If your all the beer you can drink bar was consistantly out of beer when customers show up people would cease subscribing and would start frequenting other bars. You would lose the business.

      There is nothing wrong with overselling, I agree with you on that but you have to manage the degree to which you are oversold. There is not enough competition in the general consumer ISP space. The big telcos were allowed to kill all the mom and pops and we are not better for it. There are botique porviders like SpeakEasy which I use. They treat you great, their terms are premissive and you get what the contract says you get (at least I do). You pay more for the bandwidth though. Now I need it for work and do a great deal of VPN which has to perform well. My company pays for my line. I don't get as much "badwidth" as the local cable CO or DSL provider offers dollar for dollar, but after the problems I had with them SpeakEasy is a bargin. My connection never drops and I always have enough throughput even if I am not setting records. I don't think my friends and family would find their offer exactly competitive for their, web, e-mail, and youtube needs; unfortunitly.

      SpeakEasy does a great job if you need a home line for anything important I can't speak highly enough of them.

      --
      Repeal the 17th Amendment TODAY! Also Please Read http://www.gnu.org/philosophy/right-to-read.html
    19. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Really? How do you oversell and not monitor and throttle if all of your customers start using P2P and leave their computers online all the time? It'll be like everyone picking up their phones and connecting to each other just to listen to music all day long. How do you oversell if all of your customers turn into faeries with giant butterfly wings? Your statement is nonsensical. Not all customers start using P2P and leave their computers online all the time. Even with the current rise of P2P, most customers are offline most of the time. Your peak rate is still vastly lower than what you would need if every single user were downloading at the maximum rate simultaneously. Overselling still works fine in this environment as long as you provision the infrastructure to match demand. The problem is not overselling. The problem is ISPs not upgrading their infrastructure to match demand.
      --
      If you mod me Overrated, you are admitting that you have no penis.
    20. Re:Gotta love those statements. by Free+the+Cowards · · Score: 3, Insightful

      So obvious that everybody knows about it and solves it.

      It's not a problem. You size your infrastructure for peak demand. Yes, that peak demand tends to happen between 6PM and 11PM. Yes, a lot more people use their connection a lot more than they do at other times of the day. But no, that peak demand is still well below the theoretical maximum. If you oversell by sizing your network to average demand then, yes, you will fail hard. But if you oversell by sizing your network to actual peak demand then you will succeed in providing what you promise while still provisioning only a small fraction of the theoretical maximum usage.

      The concept of overselling isn't very hard to grasp. I don't know why so many people here just don't get it. Aren't you people supposed to be smart?

      --
      If you mod me Overrated, you are admitting that you have no penis.
    21. Re:Gotta love those statements. by Anonymous Coward · · Score: 0

      That's all well and good but they *aren't* doing anything to fix the problem. They have no incentive to fix the problem.

    22. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Yes. Please pay attention. I'm not defending ISPs in any way. What I am defending is overselling. Whenever these stories appear, a whole swarm of idiots come out of the woodwork and say that it's due to overselling. It's not. It's due to a lack of capacity. Overselling is not the problem and it does not deserve criticism.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    23. Re:Gotta love those statements. by Jerry · · Score: 2, Informative

      For $40 you get a guaranteed MINIMUM bandwidth of X with a potential to burst to Y.

      And "backward" countries like China (Hongkong) offer 100MB of bandwidth for $48. That's their "entry" offer.

      Taxpayers funded the gov organization (DARPA) which created the Internet. How did it come to be "owned" by the corporations? The same way the White man stole the land from the Indians. When you own the law you make the rules.

      --

      Running with Linux for over 20 years!

    24. Re:Gotta love those statements. by pxlmusic · · Score: 1

      all these analogies are making me thirsty!

      --
      "If for any reason you're not satisfied with our service, I hate you."
    25. Re:Gotta love those statements. by call-me-kenneth · · Score: 1

      Could you explain what would be lost if such as page was clearly marked as highly technical, and was optional to read? The OP asked "How about just telling the customers EXACTLY what they're paying for?" Those are the things you're paying your ISP to take care of. The point I was trying to make is that you either go build your own service provider or you pay commercial rates. If you want guaranteed bandwidth and SLAs, there's a market there that will give you it; however you're going to be paying rather a lot more than $20/month for it. (Go google up transit costs for a typical bandwidth provider.)
    26. Re:Gotta love those statements. by SillyNickName · · Score: 1

      The problem is not overselling. The problem is that some ISPs oversell too much.
      To me, that sounds a lot like "The problem is not stealing. The problem is that some people steal too much."
    27. Re:Gotta love those statements. by TheLink · · Score: 1

      You seem very confident that peak demand is well below theoretical max.

      Any evidence to back that confidence?

      aka "citation needed"

      --
    28. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Nonsensical. It's like paying for one loaf of bread and taking two. The problem is not taking bread, the problem is that you take more than you pay for.

      The problem is not that you don't have 90% unused capacity sitting around doing no good for you whatsoever. The problem is that your actual capacity is below actual demand.

      How is it that an otherwise intelligent crowd is so incapable of understanding the basic economic and statistical principles behind overselling?

      --
      If you mod me Overrated, you are admitting that you have no penis.
    29. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      You seriously need a citation to tell you that 90% of broadband users are light users and do not, in fact, use bittorrent running full blast all the time during peak hours?

      If you really do need a citation for this, go around to all of your neighbors. Ask them if they have broadband, and if they do ask them about their use habits. You'll find that the vast majority use it for e-mail, web browsing, occasional youtubing. (And keep in mind that while youtube is intensive while you're downloading, you still spend most of the time watching the videos and not downloading them, so overall the pipe is not very heavily used.)

      And while you're totaling up these statistics, you can put me in the 90% category as well. I use my broadband connection mostly for e-mail, web browsing, youtubing, uploading photos and videos, etc. I occasionally download large files and, yes, use bittorrent on occasion. It sits idle well over 90% of the time and that includes peak hours.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    30. Re:Gotta love those statements. by TheLink · · Score: 1

      I have not used P2P stuff in the past months or year even. But the vast majority of other users could be using malware infested machines that spam the world for all I know ;).

      Put it this way, I do agree you might be right, but I have no evidence - and lots of people here seem to say they download 24 hours a day.

      Anyway, if 90% of the broadband users are light users, then ISPs may do better by shifting the high 10% to their competitors by having terms or "fine print" that won't affect the 90% but are unacceptable to the 10%, rather than spending money on increasing capacity (which appears to be what a lot of people here want). Or alternatively charging the 10% more.

      Most normal people will go "150GB/month? I'd never download that much", whereas lots of people here might scream "that's not even 500kbps sustained".

      What I want is very low latency connections for online games (and snappier web browsing, ssh), and enough bandwidth to watch youtube without hiccups, and download an ISO or two within a day, and not too onerous T&C terms in terms of rights (can run servers, share connections etc). But others might have different priorities. There are limits to low latency - speed of light is crap, but my current ISP sends my packets the wrong way round the world (possibly the right way in terms of $$$, but wrong in terms of milliseconds).

      In theory heavy users can be catered for by implementing caching (P2P, web etc) if there were no danger from the **AA.

      --
    31. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Put it this way, I do agree you might be right, but I have no evidence - and lots of people here seem to say they download 24 hours a day. Slashdot is not exactly a random sample of the population. Those lots of people here who say they download 24 hours a day are in the top 10%, quite probably the top 1%, of the user population. For every slashdot user you have 10 or 100 people who just read e-mail and look at their friends' pictures, and who of course never visit slashdot because there's nothing for them here.

      As for shifting the top 10% to other ISPs or to a higher pricing structure, there's nothing wrong with that. What's wrong is doing it with underhanded tactics.

      It would be perfectly reasonable to have, say, a 50GB/month plan for most people, then an extra fee per gigabyte, or a true unlimited subscription that costs more. I believe AT&T proposed this, and it seems to me like a fine idea. The problem is that a lot of these ISPs want to have a 50GB/month plan for everybody but they keep calling it "unlimited".

      I have no problem with controlling the amount of traffic on the network as long as it's done honestly. Forging TCP RST packets and cutting people off of their "unlimited" connections after they cross the hidden limit is not OK.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    32. Re:Gotta love those statements. by TheLink · · Score: 1

      Where the problem is: I think the people in the US should have a problem with the present (and proposed) underwhelming ISP subscription plans, since they've already paid USD 200 billion.

      I heard that the US ISPs were given USD 200 billion (via tax credits, higher charges) in the understanding that they would roll out stuff like 45Mbps (up and down) speeds to subscribers (there was talk of fibre optics and so on).

      If that USD 200 billion was actually used to improve internet connectivity, perhaps there wouldn't be such a great need to throttle P2P today in the USA. With current tech, USD 200 billion should go a lot further.

      http://www.newnetworks.com/ShortSCANDALSummary.htm

      http://www.pbs.org/cringely/pulpit/2007/pulpit_20070810_002683.html

      --
    33. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Sounds reasonable to me. I think a lot of these ISPs are doing poor jobs and need to reform. It's just not due to overselling, which is necessary and reasonable.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    34. Re:Gotta love those statements. by Zombywuf · · Score: 1

      That's not the same as saying ISPs have the capacity to support peak demand. If 10% of users using the service they've paid for tops out the ISPs capacity and they have to perform various tricks to keep running, then they clearly do not have the capacity needed.

      Also, as a user of Youtube, you're part of the problem (the screwed over consumer part).

      --
      If you can read this you've gone too far.
    35. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      I didn't say that ISPs actually have, right now, in reality, the capacity to support peak demand. I only said that it is possible to have this capacity while still having far below what you would need to support the theoretical max. This is overselling. As evidence, see nearly every ISP in history which was able to support peak demand, which is most of them.

      Also, as a user of Youtube, you're part of the problem I'm afraid I have no idea what you're saying here. My use of Youtube does not max out my connection except for a couple of minutes at a time. In the long term (minutes or hours) my connection is still used at 10% or less of its full capacity.
      --
      If you mod me Overrated, you are admitting that you have no penis.
    36. Re:Gotta love those statements. by TheLink · · Score: 1

      If everyone has 45Mbps I think overselling would be fine.

      Even at 150GB/month I've heard that some people run out of things they want to download and start downloading junk instead till they hit their cap (not sure why but that's what some people do).

      So I think most people will get tired of downloading junk in the background, and only download on demand - at 45Mbps it's not such a long wait (except maybe for HD stuff which may take an hour or two ). Thus the overselling ratios can go up.

      --
    37. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      I'm sure you're correct. As the top speeds go up, the ratio of usage is almost sure to go down. After all, grandma on 5Mbit cable who uses it only to download pictures of her grandchildren will use the exact same amount of bandwidth once she switches to 50Mbit FiOS. Conversely if she downgrades to 50kbit dialup she won't be using much less.

      But overselling is always fine, as long as your infrastructure meets actual peak demand. It's just the degree of overselling that changes with speeds. If you're serving people on 256kbps DSL then you won't be able to oversell to nearly the degree that you would on FiOS, but you can probably still oversell by 75% or more.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    38. Re:Gotta love those statements. by Zombywuf · · Score: 1

      So, the problem is that ISPs are selling bandwidth they don't have?

      As for the Youtube bit, there are two things you find the CEOs of ISPs crying over in public, one is Bittorrent, the other is streaming video. Usually the, frankly embarrassing, public whining will be followed by claims that the only way to solve the Youtube/Bittorrent/Comunist menace is for ISPs to engage in extortion against companies like Google and (in the UK) the BBC.

      It seems even a few thousand people dling a few Youtube videos is beyond the means of a lot of ISPs these days, and their usual ways of dealing with problems (bigger bonus's for directors) aren't solving the problem for some strange reason.

      --
      If you can read this you've gone too far.
    39. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      Why is this so difficult to understand? Seriously, I would like to know. The principle is extremely simple, and should be well within the grasp of anyone who can operate a computer well enough to post on Slashdot.

      Let me explain it to you.

      Let's say you're selling 10Mbit connections. I choose this number simply because it's a nice, round number and easy to work with. The same principle applies to any speed.

      Now, let's say you have 1000 customers. The theoretical maximum bandwidth requirement with 1000 customers is 10GBit. Now you call up your upstream ISP and ask them how much for a 10GBit connection. After you collect yourself off the ground, you start looking for a way to reduce the price, because that 10GBit connection is going to cost far more than you can possibly afford.

      So you look at your network use statistics. You discover that even at the peak times, when people are using their connections the most, your connections are still only 10% used. Lots of people aren't home at peak times, and lots of people who are home don't use their full connection. You never go above 10% usage even at the busiest times of the day, so you get to thinking.

      What if you buy a 1GBit connection and serve everyone with that? Actually let's make it a 1.2GBit connection just so you have some headroom. With the original plan of a 10GBit connection, you'd be paying an untenable amount of money and you'd have 9GBit of bandwidth sitting there idle 24/7. With a 1.2GBit connection, you still have 200Mbit sitting idle ready to take up the slack even at the worst times of the day, and you save a pile of money, which you can then pass on to your customers.

      (If you don't believe the "pass on to your customers" bit, ask yourself this: how much would your DSL or cable connection cost if the ISP provisioned bandwidth equal to the full theoretical maximum? Hint: it's not going to be two digits, probably not even three. Call your local telco and ask for a T1 line and you'll start to see just how much savings does get passed on to you with DSL and cable.)

      So you're serving 1000 10Mbit customers off a 1.2GBit line. Is there anything wrong with this? Hell no! You have enough bandwidth to support actual usage. Any one of your customers can start downloading full blast at 10MBit with no problems. What they can't do is have everyone do this at the same time, but that doesn't matter, because they never do this.

      This is overselling. This is what everyone criticizes here. And it's nonsense. It's standard, it works great, and it saves everyone a whole pile of money.

      The problem comes in a few years later, when usage starts to rise and suddenly you begin to exceed that 1.2GBit link. Now you have three options. First, you can upgrade the link. This is the normal thing to do, and it's what ISPs usually do in this situation. Second, you can cut back on usage. Raise prices, introduce plans with quotas, whatever you need to do. Of course you can't do this to existing customers until their contracts run out, but that's fine, because people behave predictably in large numbers; your usage will grow smoothly with clear long-term trends, giving you plenty of time to adjust.

      Third, you can continue to advertise "unlimited" connections at the same price as always, but implement various underhanded schemes to attack the heavy users. This is what Comcast and others are doing. This is not OK.

      Overselling is fine. You can call it "selling bandwidth they don't have" if you like, but that just exposes your ignorance. The problem is when usage exceeds capacity. And even this is not a problem if they take one of the two reasonable courses of action in response to it. The real problem is when usage exceeds capacity and they refuse to upgrade and refuse to change their pricing structure, but instead carry on a campaign of false advertising and fraud to keep usage down.

      --
      If you mod me Overrated, you are admitting that you have no penis.
    40. Re:Gotta love those statements. by Zombywuf · · Score: 1

      So they are selling more bandwidth than they have the capacity to provide? Or to put it another way, bandwidth they do not have.

      What's more, even if they had the capacity for the usage patterns of their users, they are still /selling/ more bandwidth than they have if they are selling /unlimited/ bandwidth. If a coffee shop sells unlimited refills, but refuses to give me another after my 5th refill, they are liars. Even if I didn't want more than five cups, the fact that they are lying would piss me off. The same is true of bandwidth, they should sell it as X MBit peak bandwidth, rather than 10 MBit unlimited.

      I think the problem you are having though is you're assuming that when I say 'overselling' I mean selling more bandwidth than $total_isp_bandwidth/$number_of_customers. I'm not, I mean selling more bandwidth than they can provide, given normal usage patterns.

      --
      If you can read this you've gone too far.
    41. Re:Gotta love those statements. by Free+the+Cowards · · Score: 1

      I think the problem you are having though is you're assuming that when I say 'overselling' I mean selling more bandwidth than $total_isp_bandwidth/$number_of_customers. I'm not, I mean selling more bandwidth than they can provide, given normal usage patterns.

      Well then that's your problem for abusing the terminology. This is not what "overselling" means. Please use a different word.

      --
      If you mod me Overrated, you are admitting that you have no penis.
  17. Re:Maybe I'm being selfish by Vectronic · · Score: 1

    Fuckit, I'll bite...

    "Want unlimited downloading? PAY FOR IT"

    That's the problem, you payed for your (i would assume) non-unlimited internet account, which means no matter who else is downloading what, you should be able to get exactly what you payed for, limited, or not.

    Besides, its the same network, so if someone Pays for an unlimited account (that's actually unlimited) whatever traffic they use has to come from somewhere, and that somewhere will be your account, to user your highway analogy...

    If someone can afford to buy a car for ever member of their family, and they all live on the same block as you, then the odds are fairly high that when you go to leave your driveway, one of them might be passing by at that time, delaying your trip.

    Its basically a democracy, the whole wolf and sheep deciding whats for dinner nonsense, the people who want to download 8 DVDs a day, will do so, and the people who just want to browse the internet, will do so, but one of them will be taking from the other, and its usually the biggest one who is doing the taking.

    Its not possible (currently, or for the foreseeable future) to have unlimited accounts, but if they were all limited appropriately, you wouldn't feel any effect at all, you would get exactly what you payed for, even if it happens to be slower than you prefer, it would be a consistent 100kb/s or whatever...

    But right now its working on like a tidal principle, whichever person has the most gravity, the water tends to conglomerate towards them.

    I dunno, I'm kinda just rambling, so I'll shut up.

  18. Caputo is a phony by Ripit · · Score: 1

    FTFA:

    "Caputo: Here we are, a company founded on improving the quality of the experience of the internet and trying to make the world a better place."

    Come on... The company is founded on maximizing revenue for ISPs. Who does he think his audience is? Oh, and I didn't realize bandwidth throttling was improving everyone's quality of life! And here I thought others were doing this. Congratulations on finding a way to make the world a better place and line your pockets at the same time!

  19. Re:Maybe I'm being selfish by hardburn · · Score: 5, Insightful

    Where is it written that it is all-you-can-eat?

    All over ISPs' advertisements. Unless they've redefined the word "unlimited".

    An Internet which is not neutral is less useful than an Internet that is. If web browsing is sped up at the expense of streaming video, that's going to hurt some people more than others. If streaming video is sped up at the expense of games, a whole other group is affected. Since people come up with new ways of using the Internet all the time, and we can't predict new uses, the best strategy is to give all packets equal measure.

    Rather than throwing out Net Neutrality, it'd be more productive for ISPs to find business models that don't involve overcommitment, or at least make it less painful. Like some of the recent attempts to make P2P software favor nodes within the same ISP.

    --
    Not a typewriter
  20. Re:Maybe I'm being selfish by growse · · Score: 1

    I suppose the argument the ISP's use is that their throttling service *is* unlimited, because they never cap how much you can download. They just change how fast you can download it at. You can never download an "unlimited" amount of data in a finite time, because you're always limited by your connection speed.

    For example, on an 8Mbit connection, ignoring overheads, you can get 1MB per second. Or 2.592TB per month. All the ISP will claim they're doing is changing that figure, which is how fast you can pull data down. A "limited" connection would be one in which you're only allowed xGB per month (which is what I use in the UK - I pay Zen £35 per month for 50GB and get no throttling or anything crap like that - if I exceed 50GB, I pay per GB).

    I'm not saying it's right, but it's how I've seen it argued.

    --
    There is nothing interesting going on at my blog
  21. Churn is nothing new by EmbeddedJanitor · · Score: 1
    It has been used for quite a while in the service industry.

    Churning means the loss of customers to other service providers. In other words, the opposite of customer retention.

    Service providers can combat churn by having some sort of mechanism to make it hard to switch. For example, an email address tends to keep you using the provider of that email address because people don't want to go through the hassle of changing.

    --
    Engineering is the art of compromise.
    1. Re:Churn is nothing new by springbox · · Score: 1

      That's the dumbest term I've heard since people calling single enemies "mobs" in online games.

    2. Re:Churn is nothing new by mkendall · · Score: 1

      It has been used for quite a while in the service industry. Churning means the loss of customers to other service providers.

      It also implies the gain of new customers leaving those same competitors. It's a dynamic equilibrium, a zero-sum game, customers flowing back and forth like a churning sea with no net effect except all the associated costs. It's viewed as a Bad Thing.

    3. Re:Churn is nothing new by IgnoramusMaximus · · Score: 3, Informative

      That's the dumbest term I've heard since people calling single enemies "mobs" in online games

      That's MOBs for you, not "mobs". It is an ancient MUD game engine acronym which stands for "Mobile OBject". One of those archaic game lingo terms which still survives but the origins of which most of the young whipper-snappers do not have clue about.

      Now about that lawn of mine ...

  22. Re:Maybe I'm being selfish by urcreepyneighbor · · Score: 1

    the people who want to download 8 DVDs a day But, man, I need my Doctor Who fix!

    Hartnell FTW! ;D

    --
    "The fight for freedom has only just begun." - Geert Wilders
  23. FFS by Anonymous Coward · · Score: 1, Insightful

    Don't feed the troll. /thread.

  24. Fight against P2P is McCarthyism by presidenteloco · · Score: 1

    This isn't about companies saving money on provisioning.

    This is about a deep fear in some circles of people
    getting together in egalitarian groups to do mysterious
    and no doubt evil things.

    This is about preventing people from having the power
    of independent thought and action.

    This is about spying to identify those who try to
    move out of their assigned channel.

    Clearly, a cold war is going to be needed here, and
    the key weapon is going to be steganography.

    --

    Where are we going and why are we in a handbasket?
  25. Ironic example... by noric · · Score: 1
    From TFA:

    > If you look at that underlying transmission protocol[TCP], when you send a flow of packets â" if they're getting through â" they get bigger until you get congestion, then the packets get smaller. The idea of flow control in the internet has been a tenet of it since day one.

    I find it funny he chose to reference TCP flow control as some sort of ancestor of deep packet inspection. Part of TCP control flow's purpose is to enforce fair usage, ie 'net neutrality'.

  26. Re:Maybe I'm being selfish by the+eric+conspiracy · · Score: 4, Insightful

    Read your contract - the ISP may say unlimited; but the DON'T guarantee a bandwidth. All unlimited means is that they don't cut you off or charge you more if you exceed a certain data volume.

    Let's get real here. If an ISP was really selling you a guaranteed dedicated bandwidth you would be paying a much higher price than you do now. Why do you think T1 is hundreds of dollars per month at 1.5 Mb/s? Because of the service guarantee, that is why.

    Packet switching works economically because it is shared bandwidth relying on a statistical distribution of traffic on the network. During peak loads traffic will be slower than at off peak times unless the network is extremely over-provisioned.

    There is another technology out there that gives a guaranteed bandwidth for every customer - which is rapidly being displaced because of its inefficiency - it is called circuit switched, and it is what the phone companies use to carry analog voice. Every call gets it's own dedicated bandwidth. All I can say is that you would not want an internet based on this network model. It is slow, inefficient and inflexible.

    Now ISPs have a problem with users that run applications that present a high constant load because they don't fit the statistical model. High volume P2P is the primary offender right now. If people are using these sorts of applications when the network is heavily loaded it seems to me quite reasonable that traffic based on interactive applications (VOIP, video, HTTP) should receive priority. ANY good computing system should favor interactive applications over non-interactive applications. It is a basic system design principle.

    Sorry to inform you, but to do this you need to monitor.

    A lot of people whine that this breaks the idea of network neutrality. I disagree; network neutrality must not allow one type of communications stream or application to seriously degrade the performance or usability of all of the other applications. If that occurs you do not have a neutral network. You have a network that is dedicated to that one application. That is NOT what I as an end user want.

  27. yes seriously by Anonymous Coward · · Score: 0

    Yea... this whole argument is nonsense. The 10-30+ mbps he is talking about isn't something you'll see all that often in the US, maybe with FiOs, and I dunno how good their service is.

    But we pay for 7 mbps down from cox, and the only time I ever see anything near that number is in a speed test. Most normal web surfing, file downloads, etc, 1-2 mbps down is the highest we're gonna see.

    So these RST packets, or anything else they do that keep us from consuming our full bandwidth potential... are just a kick in the nuts. We already don't get the service we pay for, not even close. We do sleep and go to work. Sometimes I think my old Speakeasy 768k sdsl was better than what COX sees fit to deliver, and I can't say that I know anyone in the US who doesn't have slow internet at times, internet dropping (far more often than would be acceptable for telephony dropping)... the notion of further interrupting this traffic flow that is clearly crap is silly.

  28. Re:Maybe I'm being selfish by Anonymous Coward · · Score: 0

    The people who agree with traffic shaping don't have the solution, but the people who demand full speed all the way aren't right either. The internet is a "best effort" network. The only guarantee is that your local link performs as advertised. The network beyond that link is not guaranteed to transport your packets at the same rate.

    It is technologically impossible to provide Mbps connections all across the globe to every subscriber at the same time. It is certainly a good ISP if you never feel that technical limitation, but they can't do magic. Every economically viable network configuration relies on "overselling", simply because the network would not see reasonable utilization percentages otherwise. You get more for your money if you can use a high bandwidth 90% of the time and the rest of the time you get the bandwidth that you would get without overselling.

    The question is what should the ISP do in case of network overload. This is where network neutrality enters the scene. The operator can "punish" certain protocols in favor of protocols which the casual users need, or he can randomly throw away a percentage of all packages, or he can ask server operators for money and throttle the traffic to the servers whose owners didn't pay up. There are many traffic shaping schemes and many business models on top of them. This is the problem which needs to be solved: What to do when the network is overloaded? It is not as easy as it seems, because the bottleneck can be anywhere in the whole network. It does not have to be within the network of the last mile provider, where the bandwidth of all subscribers could simply be lowered by the same percentage until the total traffic is lower than the bottleneck's capacity. If the bottleneck is somewhere else, who does the throttling and what is fair?

    You can all take your 100kbps connections if you want. I'll take a connection which is 100 times as fast most of the time and not slower than yours for a couple of hours a day, thank you very much.

  29. Ethics more needed than monitoring by redelm · · Score: 2, Insightful
    It rather bothers me when vendors and other strong advocates push their points (whatever those might be) without the slightest consideration of objections, as if there were none possible. The technique of the BigLie.

    Of course a netadmin has to monitor traffic. How else to assure good service? But what information is necessary and how it should be used ought to be carefully governed by ethics. Unfortunately, these ethics are not well known, and frequently violated by the concept of "owner privilige" (often might makes right). Essentially ignoring any notion of customer rights and treating employees as serfs. Both have been known to rebel for cause.

    It is the deplorable state of IT ethics that is the root cause of many of these controversial actions.

  30. maybe you're just trolling from sandvine? by poetmatt · · Score: 1

    Nobody on slashdot is stupid enough to believe that we shouldn't get what we pay for and that the alternative is to get even less of what we already pay for.

    The fact that an ANON makes this post is very telling of itself.

    Maybe with that philosophy we should all go back to dialup for 40$/month. yeah, that'll slide real smooth.

    Meanwhile, how about undersell instead of oversell! WHAT AN IDEA! Maybe that might allow people to actually you know, expand like any smart business and not end up backtracking nonstop like comcast has been doing for the past few years of this crap?

  31. Re:The louder the CEO, the smaller the dick. by Anonymous Coward · · Score: 0

    nobody has a smaller dick than Dave Caputo.

  32. What a fucking jerk by SauroNlord · · Score: 1, Interesting

    His first sentence is that he thinks looking at everyones digital-internal communications is the most difficult, and therefore he wanted to do it because of it being the most difficult problem to solve.

    From the article:

    "CBCNews.ca: During the panel discussion, you sounded more like a technologist than a business executive, where you're more in tune with what you're actually making as opposed to selling it. What do you consider yourself? Caputo: I'm very passionate about our technology and I'm pretty passionate about the concept with which Sandvine was founded on, and that was to improve the quality of the experience on the internet. When we first set down that path, the idea of looking at every packet⦠we said this is the most difficult problem that we could possibly imagine. The internet is so big, so vast, so continuous. And then we said that's "cool." We're going to attack a problem where we can't imagine there's a more difficult problem. I take nothing away from rocket scientists or biologists who are trying to cure cancer, but in our domain we really couldn't think of a more difficult problem, and that really excited us."

    What the hell is that about? Did anyone jump when they read the first part of the article and saw that?

    1. Re:What a fucking jerk by base3 · · Score: 1

      Awesome the way he backhandedly compared people building a throttling and surveillance infrastructure into major ISPs with those working on a cure for cancer. I wonder if he'd be making such a comparison if he had cancer. Tool.

      --
      One CPU cycle wasted on digital restrictions management is ONE TOO MANY.
  33. That's it, enough lies already by Yvan256 · · Score: 1

    Stop with the damn caps and the unknown variables. I want to see an ISP with a basic monthly fee and pay-as-you-transfer rates.

    Exemple: you pay 10$/month for your connection if you do less than 10 GiB of transfers, and you pay 1$ per additionnal 10 GiB.

    You make less than 10 GiB download+upload during the month, you pay 10$. You upload+download for 100 GiB, you pay 19$. Not expensive enough? I have no idea. Change the price per GiB as needed, I have no idea how much ISPs are paying for their bandwidth.

  34. slighty wrong... by Khyber · · Score: 1

    "Read your contract - the ISP may say unlimited; but the DON'T guarantee a bandwidth."

    Actually, most ISPs I've ever used, from Bellsouth to TW to Verizon to Comcast, guarantee you the bandwidth rate *TO THEIR SERVERS AND ROUTERS* and from there they can't guarantee jack shit. To their routers and servers and to other computers inside of their network, I've almost always obtained maximum data throughput. Get outside of that network and my average speed drops to about 3mbit.

    --
    Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
  35. Re:The louder the CEO, the smaller the dick. by mrsteveman1 · · Score: 1

    "As part of my job, I've seen the penises of a number of these men"

    Hmmm, what job entails genital examination of your superiors?

  36. Re:Maybe I'm being selfish by whoever57 · · Score: 1

    Why do you think T1 is hundreds of dollars per month at 1.5 Mb/s? Because of the service guarantee, that is why.
    Since one can get the same level of service for a much lower price with alternative technologies, what I infer is that one is really paying the incumbent monopoly for the use of their wires to connect you to the local POP.
    --
    The real "Libtards" are the Libertarians!
  37. Necessary? We better get on it then! by commodoresloat · · Score: 1

    Here's my whole wallet right now!!!!!!

  38. Re:The louder the CEO, the smaller the dick. by billcopc · · Score: 0, Offtopic

    You ask:

    Hmmm, what job entails genital examination of your superiors? And the answer:

    I've been a professional executive secretary for 16 years now. *SLURP* Now, how bout that raise ?
    --
    -Billco, Fnarg.com
  39. Dave Caputo = pump and dump by billcopc · · Score: 1

    I strongly suspect the CEO is hoping to do another PixStream... sell out to a big player and walk away with a small fortune as the former company gets ripped to shreds by the new owners. He cares not about the words coming out of his mouth, he's a sales guy. He sells businesses, takes his golden handshake and moves on to the next target.

    The funny thing is a lot of Sandvine employees were former PixStream employees, so either the perks are fantastic, or these people are easily duped.

    --
    -Billco, Fnarg.com
    1. Re:Dave Caputo = pump and dump by Anonymous Coward · · Score: 0

      easily duped and now that the stock has bottomed out, very disgruntled. there is no love loss for Caputo not the other early pump & dumpers while the rest of the company was forbidden from selling stock on the first lame IPO. Caputo couldn't wait to get his hands on the cash...

  40. Anybody? by Derosian · · Score: 1

    Anybody have this guys E-mail Address, home address, phone numbers? Just curious.... No reason.

  41. Full of $*&$% by EdIII · · Score: 2, Insightful

    I think the beauty of it is the net neutrality debate is something that is going to be solved in our lifetime and, like I said before, I think it's going to be laughable in the next two or three years that people used to say all packets should be treated equally.

    All packets MUST be treated equally. That is the first mistake. When an ISP says that they will deliver "unlimited" Internet to you, they must actually do this. "Unlimited" is not vague or ambiguous in the context in which they have used it. They must give me unlimited service, or a service without limitations, boundaries, restrictions, or controls. I did not come up with the unlimited part, they did.

    I was sold a 6 Mb/s connection from Embarq, which means that with unlimited service I should be able to transfer 6Mb/s * 60 seconds * 60 minutes * 24 hours * 30 days, which is right around 2 TB of data transfer per month.

    My neighbor was also sold this same package. We pay the same price. How can you determine which of our packets get priority? Can our packets be anything but equal?

    This is why the "bandwidth hog" argument is so ludicrous. I cannot "hog" the bandwidth, nor can my neighbors. We all paid for a service, we all have equal rights to it.

    Do you see dedicated connections ever becoming the norm for residential users?

    Caputo: It's absolutely mainstream in the business environment. That's the way CBC or Sandvine buys its bandwidth. In residential, no, because what do people want? They want 10 megabits, 30 megabits, 100 megabits. Because that's going up, there's no way you can afford to ever provide that in the network. (emphasis mine)
    .
    .
    They need people not using the internet for it to work at $40 a month. (emphasis mine)

    This SHITHEAD just said it right here in plain English. Their business model is based on not actually delivering what they sold you. The "more" they don't deliver the more profitable they are. No wonder the ISP's have such an interest in figuring out the "problem". He is even more of an ass with his cavalier attitude about it. "Well that is just the way it has always been and it's okay". That attitude is why nobody trusts their ISP and these companies. It is so clearly greed that drives them.

    The subscribers that use large amounts of bandwidth are the leading adopters of what everyone is going to be doing on the internet. They're the first people on YouTube or Facebook. We can learn a lot [from them] and we certainly love consumption kings as they're very good for Sandvine's business.

    What an ass. If you read between the lines here, he is basically saying that the fact ISP's are trying to figure out how to more effectively deny us the service we have been sold leads to greater business opportunities for his company. I'm shocked.

    I hate to be somebody that just complains about a problem without offering solutions. Well the solution to this is very simple. Stop selling unlimited Internet. START being honest with your customers.

    It does not take a rocket scientist to figure out that 10 homes in a neighborhood each with a 10 Mb/s connection require a 100 Mb/s pipe connected to all of them to deliver the bandwidth. Telling each one of them that they have unlimited use of those 10 Mb/s connections is a flat out lie. There is no way that could work without raising the price by 10 times.

    If the reality is that there is only 20 Mb/s coming into the neighborhood then they should sell it with a 2 Mb/s floor and a 10 Mb/s ceiling. They will guarantee that you can at least get 2 Mb/s dedicated just for you, but be able to burst up to 10 Mb/s "depending on conditions". That would be honest at least. You would know that if your neighbors are not using the connection, you might be able to get some pretty good porn 5 times faster than normal, but the worst

    1. Re:Full of $*&$% by Chirs · · Score: 1

      All packets MUST be treated equally.

      I was sold a 6 Mb/s connection from Embarq, which means that with unlimited service I should be able to transfer 6Mb/s * 60 seconds * 60 minutes * 24 hours * 30 days, which is right around 2 TB of data transfer per month.

      For your first part, I agree with you that they shouldn't mess with the packets.

      For the second, how would you see that working since they're not going to change their profit margin? Assuming a 10:1 oversell currently, would you prefer that they change their advertising to guarantee you an unlimited 600Kbps account (which would only happen if all their competitors were forced to do the same), or that they charge you 10x as much so that you can use the full 6Mbps?

    2. Re:Full of $*&$% by EdIII · · Score: 1

      For your first part, I agree with you that they shouldn't mess with the packets.

      For the second, how would you see that working since they're not going to change their profit margin? Assuming a 10:1 oversell currently, would you prefer that they change their advertising to guarantee you an unlimited 600Kbps account (which would only happen if all their competitors were forced to do the same), or that they charge you 10x as much so that you can use the full 6Mbps?

      I would prefer that they be honest, and that they charge me what is necessary for the "full" 6 Mb/s.

      Like I said, unlimited is impossible. It is impossible since from my house the size of the pipe would need to increase to the point that the major backbones would be the diameter of Saturn or Jupiter. I exaggerate a little of course, but actually delivering a dedicated 2-way 6Mb/s is not possible in residential settings without a commensurate increase in cost that is just not viable for most people.

      Now I did say "most people". The fact is the reason why bandwidth "hogs" exist in the first place is that they are actually using a product to 95%+ of its potential. That was never intended to be the case with the 10:1 oversell in place. Or more accurately, they hoped that only 1 or 2 customers out of 10 might actually use more than 50% of their bandwidth. That is rapidly not turning out to be the case.

      This situation will only get worse. Their plan apparently is to start to use some pretty distasteful tactics to "manage their bandwidth to effect a more enjoyable internet experience". Translating their market-speak bullshit into plain English will get you, "pro actively research and implement technologies with catastrophic consequences for privacy in a continuing effort to screw the consumer out of a service we marketed in bad faith, with poorly chosen terms, to protect profit margins that were gained through illegal behaviors".

      This cannot go on. The sooner that everybody realizes that unlimited is not possible and that we actually have to pay for bandwidth the better of we all are. You just cannot transfer a sustained 5+ Mb/s per month for $40. You can't even do it for $100.

      I know that some people might be upset about that. However, the silver lining is that people could be charged fairly and that with actual competition the rates could be reasonable. Like my examples in the last post, people could actually get the Internet that they NEED. If you sell a burstable connection with the provision that you will be throttled once you approach your given transfer limit, it creates an open, transparent environment in which people can pay for what they actually use and understand what their options are.

      To answer your question again, YES I want to be charged 10x for the full 6 Mb/s. On a residential level, I would never choose to do that. I would have a 2Mb/s burstable to 10 Mb/s and I would manage my own traffic to ensure that I would only have a sustained traffic under that 2 Mb/s. That might be around $100 dollars per month, which I would gladly pay. Additionally, there should be no reason that the ISP could not email people when they are about to leave one transfer tier and approach another. I could also see adding a header on the top of web pages that would only disappear once the customer acknowledges the change. I think there should be a lot more communication between the ISP and the customer personally. It is not that hard.

      If this type of environment existed, along with some nifty QoS, you would not need the technologies being developed in this escalating bandwidth war. People could have their privacy, all packets could be "equal" and ISP's would not have to resort to such evil tactics. My biggest problem with packets not being equal is what policies are used to determine which packets get priority over another. Clearly that policy cannot be based on how much you have transferred when you have an unlimited connection, or be based on policies de

    3. Re:Full of $*&$% by cdrguru · · Score: 1

      Problem is, the ISPs do not believe they can sell the truth. The truth is, they are at more like 30-40x overcommitted. Maybe more in suburban areas. They are still gaining market share of non-users and dial-up users at $15 a month DSL plans. Do you really believe they can get anyone at all to pay what businesses are paying?

      I suspect Verizon FIOS is similarly overcommitted. You can't wire a neighborhood for 20Mb traffic to every house without a node that can handle the 200 homes at 20Mb each. Such connections exist, but they aren't cheap. Certainly nobody is going to pay for it today.

      The reality is that the geographic considerations of the US suburban landscape are such that it isn't feasible to provide homes with dedicated bandwidth that might possibly be used by a fraction of the population. It is, unfortunately, next to impossible to explain a burstable connection to Grandma or Joe Sixpack. So they haven't tried to explain the details. Is this wrong? Possibly.

      How do we get out of this situation? For a start, with the current gasoline prices and the natual resource mismanagement that is coming, we can close the suburbs. Pack a modern suburb of people into a group of 70-storey buildings and you can wire it all with Cat 6 cable. If everyone in the US lived like the Japanese, we'd have bandwidth like the Japanese.

      While the people in the US live like it is 1950, they are going to have 1950's style communication for the most part.

    4. Re:Full of $*&$% by call-me-kenneth · · Score: 2, Informative
      Look, it's really very simple. If you really want *unlimited* bandwidth, - well, you don't, you probably want to top out at 8Mbps or whatever the headline number is, and be able to run that flat out both ways 24/7. Here's a little exercise for you. (1) calculate your 95th percentile usage rate. (2) research the cost of transit or backhaul to a proper NSP (rather than a retail ISP). I think you might get a rather unpleasant surprise. THAT is the market rate for what you are demanding.

      Now divide that number by whatever you're prepared to pay for it, say $360 pa. Divide your market rate transit bandwidth by the same figure. That's the amount of bandwidth you'd get if your $30/month was actually buying you the right to run your connection flat out 24/7. Oh look, it'd be a pretty poor speed for dial-up. Oh noes, the internet is exploding!!!! Gawrsh, if only there was some way to make use of the fact that most people don't actually want to run their connections flat out 24/7, and charge them a cheap rate for short bursts of high-speed data, multiplex thousands of similar users into one aggregated traffic flow... oh look, you've just re-invented the retail ISP market. Congratulations.

    5. Re:Full of $*&$% by EdIII · · Score: 2, Interesting

      Problem is, the ISPs do not believe they can sell the truth .

      I really liked what you said, and I agree with your insight into the situation and especially why Japan has better Internet. I have always disagreed with the comparisons between Japan, South Korea, and the US.

      That being said, your very first sentence explains the problem quite succinctly.

      How the HELL did we get to the point in this country where you can sell anything but the truth?

      I don't even think it is up for debate. You have to sell the truth. All the time. No exceptions. Serious consequences when you don't.

      I have always been completely amazed that you can oversell something in this country and not tell the truth when marketing. It is pandemic in our corporate culture in my opinion and has caused me to be disillusioned and pessimistic about our society, culture, and potential to evolve into something better.

      I know that may sound like hyperbole to some people, and I might be playing a drama queen, but seriously... how did it get this bad?

      Why do we even have billboards for Cricket advertising "real" unlimited? Clearly we all have reached a point that we cannot believe anything coming out of the mouths of these corporations and a new skill set for survival in the future will be translating market-speak bullshit into plain English.

      I don't care how hard it is to explain something to Ma and Pa, or "Joe Sixpack". I don't really agree that it is that hard in the first place. Since when is understanding your Internet contract a prerequisite to signing it and paying for it? I would bet that 5% or less actually read the whole contract or even have more then a basic understanding.

      It should be a matter of law, and last time I checked it really is, that you have to market the truth. Now maybe there is some room to fudge it here a little for the ISP, but it is grounds for a class action lawsuit. Deliberately interfering with packets and injecting other packets designed to deny a customer their paid for service is criminal. I do mean criminal too. As in fraudulent to the point that a district attorney should be filing charges.

      The way out is simple. Tell the truth. Will it be hard at first? Will there be a tumultuous transition? Most likely. What we will end up with will be worth it.

      I suspect Verizon FIOS is similarly overcommitted. You can't wire a neighborhood for 20Mb traffic to every house without a node that can handle the 200 homes at 20Mb each. Such connections exist, but they aren't cheap. Certainly nobody is going to pay for it today.

      Actually you can wire a neighborhood for 20 Mb/s traffic. Even more than that. You could wire them for 1 Gb/s traffic. How?

      Real simple:

      1) Give everybody a big fat pipe. The same size as the pipe coming into the whole neighborhood. I know, I know, let me further explain... :)

      2) Set them up on a few bandwidth tiers. Obviously you cannot have the floors of all these connections be more than the whole pipe coming into the neighborhood. Stick to that rule, and you will have no problems at all.

      3) Set them up on some transfer tiers. Let them know by telling them where they are during the month and give them options to self-throttle when they reach their set limit. This way nobody goes over $100,$200, or whatever their limit is.

      If you did this, then people would get their floor guaranteed. There is the truth. They would get their super fast transfers whenever it was possible and during off-peak hours. There is the possibility they are paying for. The transfer limits would make them pay progressively higher costs the more data they end up transferring. There is the bandwidth hogs subsidizing the rest of the users.

      I strongly believe that it is possible to do this. It is being done in major data centers. No reason why you cannot put in residential settings.

    6. Re:Full of $*&$% by EdIII · · Score: 1

      I'm confused. Are you agreeing with me, disagreeing with me, or what? I'm trying to walk through your comment, which is seemingly steeped in acerbic sarcasm, and I can't figure it out.

      Look, it's really very simple. If you really want *unlimited* bandwidth, - well, you don't, you probably want to top out at 8Mbps or whatever the headline number is, and be able to run that flat out both ways 24/7.

      I never said I wanted unlimited bandwidth. I want to be able to hit 50 Mb/s for very short bursts to get files very quickly. My whole point was that using your connection 24/7 at 80%+ is just not possible. I guess we are in agreement about that.

      As for your calculations about what that bandwidth would cost, I agree with you. I may not have explained that, but a dedicated 2-way connection running 24/7 would be cost prohibitive. That is why you just can't have your internet connection running 24/7 maxed out along with everybody else and have the whole system work.

      Gawrsh, if only there was some way to make use of the fact that most people don't actually want to run their connections flat out 24/7, and charge them a cheap rate for short bursts of high-speed data, multiplex thousands of similar users into one aggregated traffic flow... oh look, you've just re-invented the retail ISP market. Congratulations.

      That is the problem though. Whether or not people know it or not, they ARE using their connections flat out, both ways, 24/7. It's called file sharing and bittorrent. There is a culture of instant self-gratification in this country and just about everybody I know has nothing less than 50 torrents in various states of queued, seeding, or downloading. If it is a crappy file sharing program then it is even worse. The larger their library becomes the higher the probability that their upstream connection is maxed out 24/7/365.

      I do want a cheap rate for short bursts of high-speed data. You said i just re-invented the retail ISP market. I never said it was my invention, I merely expressed what is already happening in the "retail ISP market".

      It is funny that you mention the retail ISP market. I stick to my original point. If you charged people the way that I am being charged in a few data centers right now, you would have some sanity, decency, and honesty brought back to the whole residential ISP business.

      I think where you misunderstood my post and what I was trying to say was when I mentioned right off the bat that I am entitled to unlimited service.

      Your absolutely right about unlimited being a fairy tale. That is why you need to start charging people who use their connections 24/7 the actual rate that it costs. That would put a stop to it INSTANTLY. No need for DPI, or any other controversial tactics to get people to stop using bittorrent and file sharing like little pigs.

      People would continue to use such programs, but be far more selective about which torrents they choose to download and seed. When they realize that transferring a 5 gigabyte torrent will cost them a fixed amount of money it allows them to give it proper value.

      When it is unlimited people cannot assign any meaningful value to what they download. A 100 gigabyte file is the same as a 100Kb file. Everybody in the retail ISP market, along with every single networking engineer in the world knows that the number of gigabytes that can be transferred through those pipes is a known quantity. It is not a mystery. That knowledge gives them the ability to determine its proper value. The only thing the consumer understands is 5 Mb/s "unlimited". Another word for that is infinite. How on earth then could the consumers give proper value to their connection?

      Exactly. Who is fooling and messing around with who here? Do you blame the 2 year old for not being able to understand that a hot pot is dangerous, or the parent who clearly has such knowledge? It is wholly the ISP's fault for creating this situation, and th

  42. Re:Maybe I'm being selfish by the+eric+conspiracy · · Score: 1

    What monopoly? T1 service is available from many carriers in most locations.

  43. Testing your ability to think critically by Duncan+Blackthorne · · Score: 1

    If the CEO of a company tells you that the world needs things that serve the purpose that his companys products can provide and you don't find something wrong with that, then you get a big fat "FAIL" tattooed across your forehead.

  44. Re:Maybe I'm being selfish by dfaulken · · Score: 1

    The question is not so much about network neutrality or throttling as much as it is about modifying packets en-route--Comcast et al. now sens (falsified) RST packets, which is almost like a man-in-the-middle attack against peer-to-peer networking--if there's genuinely not enough bandwidth, why not just drop excess packets from P2P streams?

  45. Re:Maybe I'm being selfish by hardburn · · Score: 1

    Let's get real here. If an ISP was really selling you a guaranteed dedicated bandwidth you would be paying a much higher price than you do now.

    I do pay the higher price. I have a business-class cable modem exactly because I don't want to be subject to the malarkey that residential service has. And it's a lot cheaper than a T1 for the same downstream bandwidth (and acceptable upstream).

    If people are using these sorts of applications when the network is heavily loaded it seems to me quite reasonable that traffic based on interactive applications (VOIP, video, HTTP) should receive priority. ANY good computing system should favor interactive applications over non-interactive applications. It is a basic system design principle.

    The problem is that I don't trust my ISP to do that. I trust me to do that by setting up QoS on my own equipment, if I so choose.

    The telecom industry should have had most of the urban US on 10Mb connections years ago. Instead, they've spent most of their efforts reconsolidating themselves back into MaBell. With the kind of infrastructure upgrades that taxpayers have already paid for, there'd be no need for the entire network neutrality debate.

    --
    Not a typewriter
  46. The consumer has lost by Anonymous Coward · · Score: 0

    Seriously... Sandvine, Phorm, NebuAd? We as the consumer have totally lost. In-network-spyware. Get the hell off my internets.

  47. Sandvine is not the problem by Anonymous Coward · · Score: 0

    Kind of funny, reading the previous posts I'm reminded of a lot of the bad press that Fydor received when he created nmap. Sandvine simply created a tool. It's the ISP's that chooses to use it for good or abuse it.
    Over subscription has been a standard ISP business model since we've had ISPs. In the old days we simply let the streams normalize themselves because data is data and TCP is extremely robust.
    The problem you have today is ISP's selling VoIP. VoIP is far more suseptable to data latency than DNS, HTTP, etc. Rather than just "the Internet feeling slow" you experience dropped calls, echo, sounding like you are talking into a tin can, etc. For the typical end user they are far more likely to recognize this as abnormal than their browser taking 10 seconds to load a site. This means they are far more likely to call a support person to complain. More calls to support means you need more staff. More staff means less $$$ on the bottom line.
    So the problem is not so much Sandvine as it is the ISP's themselves. They are trying to use the same resale models while failing to take into account that they are now offering services that will not function within those models.

    Correction: TCP/IP packets do not get "bigger" as the quoted article states and Vint never would have made such a comment. If there is no congestion TCP/IP will permit more packet transmissions (of the same size) without requiring a pause in transmission (read up on TCP window size and scaling for more info). Don't know if Sandvine or the reporter borked this concept.

  48. The best way to convince them otherwise by ksd1337 · · Score: 1

    Just tell their ISP to censor their own Internet connections with the same software they develop. We'll see what they'll be saying after that.

  49. Re:Maybe I'm being selfish by whoever57 · · Score: 1

    What monopoly? T1 service is available from many carriers in most locations.
    Yes, but if it is true T1, whose wires connect your location to the POP? The incumbent phone company, who have a monopoly on the wires in the ground. Just because you don't directly contract with the phone company does not mean that the phone company is uninvolved.
    --
    The real "Libtards" are the Libertarians!
  50. You could buy a dedicated p2p router, OR... by algae · · Score: 1

    CBCNews.ca: So theoretically an internet service provider could sell customers a dedicated peer-to-peer YouTube/Myspace/ESPN router, that runs passably well for corporate sites, and like shit for the self-published web?

    Caputo: Conceivably. The beauty is to let the market figure it out, and it will.

    There - FTFY

    --
    Causation can cause correlation
  51. Re:Maybe I'm being selfish by jonaskoelker · · Score: 1

    Let's go over what you said:

    Now ISPs have a problem with users that run applications that present a high constant load because they don't fit the statistical model. High volume P2P is the primary offender right now. Agreed, although I think the description of P2P with the term "offender" comes off as biased against yet another valid traffic patterns.

    If people are using these sorts of applications when the network is heavily loaded it seems to me quite reasonable that traffic based on interactive applications (VOIP, video, HTTP) should receive priority. I disagree. I think each user should be given an equal share of the bandwidth, and be able to decide on their own how best to distribute that share among their desired applications.

    ANY good computing system should favor interactive applications over non-interactive applications. It is a basic system design principle. This can be done by the user's system. There's no need for the ISP to second-guess the user.

    Since this is the case, I would say that it's more important that the user is in control, so he can choose the behavior that's right for him, than to have a default behavior that works for most people.

    Consider this analogy: would you prefer a benevolent dictatorship to a democracy? Why not? Does it have to do with your influence on the governance?

    You have a network that is dedicated to that one application. That is NOT what I as an end user want. Well, if you leave it to the ISPs to choose per-application network performance, you end up with an internet dedicated to the applications the ISP likes. Expect that to not include any services that competes with their offerings (say, cable tv).
  52. Could I write an illegal email to myself? by Anonymous Coward · · Score: 0

    Would it be illegal to send by email a threat, or an extortion, or some other nasty content to oneself? Would it be a conspiracy if I planned out a crime via email with myself? Stupid, yes, especially if the Feds gets involved, but illegal?

  53. Re:Maybe I'm being selfish by BitZtream · · Score: 1

    A REAL T1 is expensive because the goverment requires certain service level requirements to be met related to reliablity, uptime and repair. All of this is related to the telephone infrastructure, not bandwidth. The bandwidth guarantee you refer is only from you to the central office, and has nothing to do with the internet. Again, this all was decided long before the Internet mattered and was for digital telephone services.

    You refer to circuit switched like its somehow different and specific to 'analog phone calls' but this is simply misleading. There haven't been any analog phone calls made in years. As soon as it hits the CO its digitized. T1s are expensive because of this, because the goverment, by law, requires them to actually function the way the are supposed to.

    Ironically you call it slow, inefficient, and inflexible. But, it works the exact same as the internet. I can take my number with me to my new physical address, my calls work unless the network is congested with too many calls, and I can hear a pin drop across the span of the US (assuming of course I'm not using some shitty VoIP system with a crappy codec (read as all of them)).

    A T1 worth of bandwidth is cheap really, as long as you buy it as something other than a 'T1', even with guaranteed bandwidth the termination point. Guarantees for bandwidth are ALWAYS only to the termination point as they can't control the Internet.

    You do not need to monitor, its worthless. Monitor and prioritize interactive sessions... except, as soon as this is common practice, every app will have a way to make it appear and flag itself as an interactive session to get priority. Trusting user controlled data to prioritize is retarded and shows you have no concept of network security. As an ISP you sell your customers a product you can produce for them.

    My ISP can not sell me unlimited bandwidth at 7MB/s for $50/month. No one can. But thats not my problem, its theirs. They have plenty of money to pay for more bandwidth to fix the 'problem' of just not upgrading infrastructure when needed. Why do many of them have the same upstream bandwidth they had when they had half the customers? So now you're craming 1.5 million customers into the same bandwidth as when you had 750 thousand? Let me give you a hint as to why you're having bandwidth issues.

    I love the fact that they are limiting people and 'managing' their network because they don't have the upstream to support it, while at the same time they are running commercials about the free bump from 5 to 7 megs for standard customers and 7 to 10 for 'turbo' customers.

    Please don't come here and sing the hardship of managing a ISP sized network. Some of us have done it. We know the costs. We know the profit margins, they're public companies.

    We call bullshit.

    --
    Persistent Volume manager for Kubernetes - https://github.com/dwimsey/openshift-pvmanager
  54. Re:Maybe I'm being selfish by the+eric+conspiracy · · Score: 1

    There are a lot of people who have been buying up dark fibre and reselling it. And the cable TV guys also own physical plant.

    http://www.4connections.net/?gclid=CKiguaWOiJQCFQoDGgodcXFCVg
    http://www.fiberring.com/products/299/
    http://www.optimumlightpath.com/ourNetwork.shtml

  55. The real "necessity" is ... by jc42 · · Score: 1

    As the security folks have been telling us from the start: What's "necessary" is end-to-end encryption for all traffic.

    Yes, this costs a bit of extra cpu time on both ends. But any other "solution" is bogus. Any unencrypted packet allows your ISP, and anyone else along the path between two sites, to examine your traffic and "manage" it.

    To encourage this, we should be teaching everyone to always use https:// at the start of all URLs.

    Maybe we could encourage the apache people to make port 443 the default, rather than 80. Or, as a stopgap, make it listen on both ports by default, with occasional helpful hints that port 80 will soon be deprecated.

    --
    Those who do study history are doomed to stand helplessly by while everyone else repeats it.
  56. Re:Maybe I'm being selfish by 99BottlesOfBeerInMyF · · Score: 1

    If people are using these sorts of applications when the network is heavily loaded it seems to me quite reasonable that traffic based on interactive applications (VOIP, video, HTTP) should receive priority. I disagree. I think each user should be given an equal share of the bandwidth, and be able to decide on their own how best to distribute that share among their desired applications.

    There is more to traffic shaping than bandwidth, for example latency. There are good, existing tools for prioritizing traffic and they work. Personally, while I see false advertising as an issue, I have no problem with network operators selling access to a service where bandwidth at a given point is not guaranteed, but traffic is well prioritized, especially since such a service can be a lot cheaper. As for network neutrality, that is a concept to prevent monopoly abuse and for that it needs to prevent traffic from being prioritized based upon sender and receiver. It does not need to guarantee prioritization based upon traffic type, just so long as everyone using a given protocol is given the same priority.

  57. Re:Maybe I'm being selfish by whoever57 · · Score: 1

    There are a lot of people who have been buying up dark fibre and reselling it. And the cable TV guys also own physical plant.
    Yes, but, please read my posting.

    The Dark Fiber referred to is used for long haul connections. Not from an office to the POP, but from the POP onwards.

    You also referenced people offering metro Ethernet and fiber to the premises, but no-one offers T1 over these -- only T1-like (and greater) speeds.

    --
    The real "Libtards" are the Libertarians!
  58. Re:Maybe I'm being selfish by the+eric+conspiracy · · Score: 1

    If there are competitive services that provide the same service levels any reasonable person would conclude that there is no monopoly regardless if they are T1 technology based or not.

    Bandwidth is clearly a fungible commodity.

  59. Re:Maybe I'm being selfish by whoever57 · · Score: 1

    And, if you care to read all the parent posts, you will see that I commented already that there are many cheaper alternatives to a real T1 and the only reason that real T1 is more expensive is the cost of renting the wires from the incumbent monopoly telephone company.

    I did not claim that there is a monopoly in bandwidth services.

    The original claim that I was refuting was that bandwidth is expensive based on T1 charges. I was pointing out that T1 costs had little to do with bandwidth charges.

    --
    The real "Libtards" are the Libertarians!