Slashdot Mirror


Cable Firms Limit Users' Freedoms

Passacaglia writes "An article in the Washington Post reports that a coalition of companies, including Dell, Microsoft, IBM, Sun, and even the BSA, have filed a report with the FCC complaining about how cable providers are placing restrictions on how subscribers use broadband access. This is in the wake of the recent FCC ruling that cable providers need not open their networks to competition from outside ISPs. The restrictions include limits on VPNs, servers, and many things that would make broadband really worth having." Meanwhile, TWC sent nastygrams to people it suspects are using unsecured wireless networks, skimming the info from the public database of wireless access points.

2 of 356 comments (clear)

  1. Text version of letter by Anonymous Coward · · Score: 5, Informative

    Dear xxxxxxxxx;

    We have information indicating that you or omeone using your Road Runner account has been transmitting the Road runner service over a wireless network so that anyone with a wireless network card can tap into our service without authorization from us.

    Use of your account for this purpose violates your subscription agreement and our Acceptable Use Policy in a number of ways, including Paragraph 5(d) of the agreement, which states that subscribers are prohibited from reselling or redistributing the service, or any portion thereof, whether for a fee or otherwise. This activity also violates a number of federal and state laws, including 47 U.S.C. 553, which allows for civil remedies of up to $50,000.

    You should be aware that this is a very serious problem that goes beyond the theft of our services. Individuals utilizing the Road runner system in this manner to carry out criminal activity, would be able to do so in an anonymous manner. In such circumstances, when law enforcement attempted to trace such activity, the trail would end with your account.

    It is not our desire at this time to sue you, and we assume it is not your desire to allow unknown users to anonymously plan criminal acts through your account. However, your wireless broadcast of the Road Runner service must cease and desist.

    If we do not receive written assurances from you within three (3) business days of this letter that your account will not be utilized in this manner, or if the unauthorized use continues, we will suspend your account and we may pursue our legal remedies. Your written confirmation should be sent to:

    Gregory Powell
    Abuse and Security
    Time Warner Cable of New York City
    41-61 Kissena Boulevard
    Flushing, New York 11355
    Internet.security@twcable.com

    Please contact Internet Security directly at either (718) 670-6621 or internet.security@twcable.com if you have any questions.

    Sincerely,
    Gregory Powell
    Abuse & Security, Supervisor
    High Speed Online Services
    Time Warner Cable of NYC

  2. Re:It all comes down to the users by weave · · Score: 5, Informative
    I don't even really want a lot of bandwidth...just to be able to ssh back home and check things

    Create an IPTABLES rule like...

    iptables -A INPUT -p tcp -s x.x.x.x/32 -dport 22 -j ACCEPT
    iptables -A INPUT -p tcp -dport 22 -j reject-with tcp-reset

    They can scan for you all they want. Just sub -s with your CIDR of choice where you want to come with, and anyone else trying to connect to port 22 gets connection reset, making it look like nothing is listening on the port.