Slashdot Mirror


Panama Decrees Block To Kill VoIP Service

An anonymous reader writes "In an apparent attempt to stem telephone company revenue losses due to Internet telephony, the government of Panama has decreed that 46 UDP ports be blocked by all Internet service providers. The ports include ones that are commonly used for voice over IP as well as some that are used for other purposes, apparently with the idea that these, too, could be used to circumvent the POTS (plain old telephone system, a term of art) in making telephone calls."

225 of 453 comments (clear)

  1. Different Ports by hoagieslapper · · Score: 5, Insightful

    How difficult could it be to write some software to use VoIP on port 80 or some other commonly used port?

    1. Re:Different Ports by rusty0101 · · Score: 5, Interesting

      port 80 as used for http is a tcp port, not a udp port.

      Some of the protocols that will eventually have to be blocked as a result include tftp, whois++, bootp/dhcp, ntp, udp portions of netbios, snmp (ISPs and large businesses, including the phone company, will love that one.) hsrp, (another favorite of large businesses) quake, traceroute, both MySQL and Postgres, and a few others that may not have tcp vairents, or who's tcp varients are too expensive in network bandwidth to use politely.

      Additionally, there is nothing preventing users from building a ppp, ssh, httptunnel or other tunnel over tcp and completely bypassing the UDP blocks from their workstation. It may even become a part of the software for DialPad or other platforms.

      -Rusty

      --
      You never know...
    2. Re:Different Ports by agentZ · · Score: 5, Insightful

      Additionally, there is nothing preventing users from building a ppp, ssh, httptunnel or other tunnel over tcp and completely bypassing the UDP blocks from their workstation. It may even become a part of the software for DialPad or other platforms.

      It could, but there's a reason why they avoided TCP in the first place. For phone calls, it doesn't matter if the data gets there two seconds after it was sent (ie. the reliable communication offered by TCP.) The data needs to get there now, or not at all. It's okay to have a quarter-second drop in a phone call.

      I also worry that the computational overhead of these protocols, especially ssh, could be problematic for a real-time communication. But hey, processors are getting better all the time...

    3. Re:Different Ports by Mister+Transistor · · Score: 5, Interesting

      It's already been done. The VoIP software "Fobbit Fone" is public domain or shareware, I can't remember which - freely available, anyway... It works with the Creative VoIP blaster and one of the configuration settings is to use TCP only and you pick the port. It uses port 80 (normal HTTP) for initial access, then goes to the same port as it normally would but uses TCP instead of UDP if configured that way. I'm using it sucessfully TCP only because I'm lazy and only wanted to turn on one port in my firewall :) Seriously, it does make it easier to connect through a firewall when using TCP only. In fact that software is the only choice if you are behind a firewall, as the stock Creative Labs driver and UI software doesn't work at all thru the firewall.

      --
      -- You are in a maze of little, twisty passages, all different... --
    4. Re:Different Ports by oh · · Score: 2, Informative
      It could, but there's a reason why they avoided TCP in the first place. For phone calls, it doesn't matter if the data gets there two seconds after it was sent (ie. the reliable communication offered by TCP.) The data needs to get there now, or not at all. It's okay to have a quarter-second drop in a phone call.


      Just because the data has a TCP header doesn't mean that the stack on either end has to handle it as TCP.

      UDP Packet
      [-- IP Header --|-- UDP Header --|-- Data --]

      Now I don't have a protocol chart handy, but the IP header would stay the same, and you would have to insert a valid TCP header.

      [-- IP Header --|-- Fake TCP Header --|-- UDP Header --|-- Data --]

      Of course the servers at either end would have to know to strip out the fake TCP header, but that wouldn't be too hard. You would have to use raw sockets to make sure the OS didn't try and handle the TCP session, but it's do-able.

      The other option is to use an ICMP packet, but that would look a little fake. Or pick a diferent protocol (ie not TCP or UDP). I can't remember you large that feild is, but its at least 6 bit (0-63). Most routers don't have ACLs limiting them to ICMP/TCP/UDP.

      In short, there are hundreds of things people could do to get around this, but these measures are going to make things hard for the non-nerd to use his VOIP.
      --
      Democracy isn't about no one telling you what to do. It's about everyone telling you what to do.
    5. Re:Different Ports by shamilton · · Score: 2, Insightful

      This guy hasn't got a clue what he's talking about. The receiving OS would throw this packet away and send an ICMP error back, raw sockets or none.

      sh

      --
      "[A] high IQ is like a Jeep; you will still get stuck, just farther from help!" --Just d' FAQs, c.g.a
    6. Re:Different Ports by Ron+Bennett · · Score: 3, Insightful

      With more ISP restrictions, filters, etc on various ports, we seem to be moving towards a one port internet where most everything is sent over HTTP via port 80 (also https 443).

      HTTP works great for webpages, but using it for everything in the longrun is bad for everyone for numerous reasons.

      What happens when VoIP is widely done via port 80 - what are they going do then?...block port 80...I don't think so!

      Ron Bennett

    7. Re:Different Ports by VC · · Score: 2, Informative

      The internet detects cencorship as a network failure and automatically routes around it. --Vint Cerf

      The panamainan government obviously doesnt understand this. Besides the only reason their doing this is because the phone company is owned by El Presidantes, cousin or somthing.

    8. Re:Different Ports by oh · · Score: 2, Interesting
      The receiving OS would throw this packet away and send an ICMP error back

      I didn't say it would be easy. You would have to access the raw TCP packet, before the OS has done anything with it. You could technically get the packet after the IP header ahd been processed, but before the OS had looked at the TCP header. To do that would involve re-writing part of the OSs TCP stack, making the task harder then it needs to be.

      You'd be better off grabbing the raw Ethernet frame before the OS sees it, and rely on a firewall rule to drop the packet. If you wanted to you could use tcpdump and a shell script to grab the data, but I don't know any shell utilities that would let you send an arbitrary UDP packet with fake source information.

      Trust me, I do know what I'm talking about. Something like this would probably be implemented as a gateway, rather then from the end system itself, but it is do-able. Not trivial, but do-able.
      --
      Democracy isn't about no one telling you what to do. It's about everyone telling you what to do.
    9. Re:Different Ports by shamilton · · Score: 2, Insightful

      *shrug* I took your "but that wouldn't be too hard" as being the whole process, not just the stripping out the tcp header, which is sufficiently trivial to not require a statement like that.

      Your post came off as being rather pretentious, a convoluted approach to something which could be much more easily solved by changing only the port, to 53.

      sh

      --
      "[A] high IQ is like a Jeep; you will still get stuck, just farther from help!" --Just d' FAQs, c.g.a
    10. Re:Different Ports by schon · · Score: 2

      Re-invent the wheel much?

      I didn't say it would be easy. You would have to access the raw TCP packet, before the OS has done anything with it.

      So what you're saying is that you'd just have to re-write the entire TCP stack? And what happens when an regular application tries to connect on TCP/80?

      Why not just use GRE or ESP? You know, something that was designed to do what you're talking about? (Or even create a new protocol.)

      I do know what I'm talking about.

      I would find it easier to 'trust you' about that if you showed some knowledge of other protocols, not just TCP. As it is, I'd concur with the previous poster - you have enough knowledge to be dangerous.

    11. Re:Different Ports by Zocalo · · Score: 3, Interesting
      port 80 as used for http is a tcp port, not a udp port

      True. But there is no reason why you couldn't run your VoIP system on UDP:80. A better bet though would be to choose UDP:53, provided that the remote end wasn't also running DNS of course. They'd have a fun time if they tried to firewall off *that* particular UDP port on their "great fireall of Panama". ;)

      --
      UNIX? They're not even circumcised! Savages!
    12. Re:Different Ports by GooberToo · · Score: 2

      For phone calls, it doesn't matter if the data gets there two seconds after it was sent (ie. the reliable communication offered by TCP.) The data needs to get there now, or not at all.

      This has nothing to do with it. TCP does not make for timely delivery. In fact, it's the exact opposite. TCP is sure to deliver the data while UDP is not. The point being, if a packet is dropped via TCP, it will delay the delivery of every following packet to the application until the missing packet it delivered. The result is garbeled and stalled conversations which research has proved is very annoying if not unusable. Conversely, UDP is quiet happy to drop packets and never care about it. If a small packet is dropped from a conversation, your brain fills in the blank just as it does when listening to a distant AM radio station. Best part, the dropped packet does not delay delivery of data to the application in any way. Thus, it results only in a small burp -- if that.

      Then, of course, there is the difference in overhead. UDP requires slightly less overhead from a raw packet perspective not to mention the saved overhead in various control and reliability aspects when compared to TCP.

      In short, there are many reasons why UDP is used for VoIP. If people expect to tunnel VoIP UDP over a TCP connection and see the same results, they're more than likely going to have a rude awakening.

    13. Re:Different Ports by GooberToo · · Score: 3, Insightful

      What you're calling a fake TCP header is really a real TCP header. Furthermore, you've achieved nothing. All that you have done is add lots of overhead and causes every hop between the end-points to treat it as TCP (because it is). What you've really created isn't a fake TCP header, it's a REAL TCP packet with UDP being tunneled. The end result is that all of the problems that people specifically hoped to avoid by using UDP is suddenly realized. The net result is exactly the same tunneling UDP over a TCPIP connection.

      In short, way too much effort for zero return, especially in sight of the fact that existing tunnel packages exist that will yield equally crappy results.

    14. Re:Different Ports by |<amikaze · · Score: 2

      A better bet though would be to choose UDP:53, provided that the remote end wasn't also running DNS of course. They'd have a fun time if they tried to firewall off *that* particular UDP port on their "great fireall of Panama". ;)

      Except the ISPs could block UDP on their outside routers, and force you to use their DNS servers/caches. Sure, it sucks for people like me who run their OWN dns caches, but they obviously don't care about what the users want anyways.

    15. Re:Different Ports by ReelOddeeo · · Score: 2

      If I open a TCP connection to you and send 100 packets, and then packet 50 gets lost, you may have packets 51-99 sitting in buffers on your end, but your receiving application does not see them until packet 50 is finally received, and then given to the application first. (How's that for a run on sentence!) Packets 51-99 are delayed. The entire audio stream of packets 51-99 was delayed by however much time it took to get packet 50 reliably delivered.

      That's the problem. That is why good audio/video streaming protocols use UDP. It is much more important that the packet get their now rather than that it is guaranteed to get there. Dropping packet 50 out of of those 100 packets doesn't delay packets 51-99, and you just a minor brief silence in the audio. Barely perceptible. (How many milliseconds of sound is 1500 bytes anyway?)

      --

      Those who would give up liberty in exchange for security and DRM should switch to Microsoft Palladium!
    16. Re:Different Ports by Ronin+SpoilSpot · · Score: 2

      The difference between UDP and TCP is not how the packets are routed, but how they are treated at the endpoints. The routing is handled by the IP header which is common to UDP and TCP.

      The fake TCP header might look like a real TCP header, but if the endpoints don't exchange SYNs and ACKs, doesn't wait for redeliverey of lost packets and doesn't preserve ordering, then it isn't TCP. It's just a completely third protocol which is only understood by the end points and is tunneling UDP.

      In short, the idea could work... but would probably interfere with real TCP packets. /RS

    17. Re:Different Ports by oh · · Score: 2
      By the reaction I received, and the moderation totals (up and down again) I would say I phrased the post badly. It wasn't my intention to re-write the network stack, merely to suggest bypassing it in specific cases.

      I didn't want to say this was the desirable way of doing this, only that there were many options. From my original post

      In short, there are hundreds of things people could do to get around this, but these measures [installing ACLs on border routers in Panama] are going to make things hard for the non-nerd to use his VOIP.

      Using a different UDP port has already been discussed. People were already saying that because of the "reliable" nature of TCP it would not be possible to tunnel VOIP through a TCP connection. While their arguments were correct, it should be possible to make it look like TCP traffic to most routers. I never intended to say that this is the best way of doing it, or in fact this is at all a desirable way of doing it, only that the proposed firewall rules could be bypassed in this manner.

      On a side note, using port TCP/80 would be bad, as some ISPs use transparent proxies. They use a Layer 4 switch to intercept all port 80 traffic and re-direct it to their own proxy. This works for HTTP1.0 and above because the full server name is specified in the request. If you want to use non-http on port 80 you are count to receive a HTTP error message back from the proxy.
      --
      Democracy isn't about no one telling you what to do. It's about everyone telling you what to do.
    18. Re:Different Ports by BitterOak · · Score: 2
      Additionally, there is nothing preventing users from building a ppp, ssh, httptunnel or other tunnel over tcp and completely bypassing the UDP blocks from their workstation.

      These tunnels are terrific if you have a shell account on a remote system that you can tunnel to. Many Panamanians who want to save on long distance will probably not have such an account. As someone who has a shell account at a university, I can tell you that I really take for granted the ability to tunnel from practically anywhere to avoid firewalls, sniffers, etc., but I realize that most people aren't so lucky.

      Yes, you can buy shell accounts, but they tend to be expensive, so if your goal is to save money by using VoIP, it doesn't seem like a good solution.

      --
      If I can be modded down for being a troll, can I be modded up for being an orc, or a balrog?
    19. Re:Different Ports by kasperd · · Score: 2

      The receiving OS would throw this packet away and send an ICMP error back

      Not if it was programmed not to do so.

      --

      Do you care about the security of your wireless mouse?
    20. Re:Different Ports by GooberToo · · Score: 2

      Sounds like you're the one that has no idea what you are talking about. Please, go learn something of the topic before you reply.

      This has ZERO to do with windowing. If a packet was not delivered, how can it be delivered to the application?????? It can't. Therefore, IT MUST DELAY DELIVERY UNTIL THE MISSING PACKET IS RECEIVED. Period. Until such a time, the stack must buffer and hold the series of packets until the outstanding packet is delivered. Again, this has NOTHING to do with windowing. End of conversation.

  2. This is ridiculous by SargeZT · · Score: 3, Funny

    Banning VoIP? Whats next? Possibly banning email to help the USPS?

    --
    And why did you staple the trout to the RAM?
    1. Re:This is ridiculous by The+Original+Yama · · Score: 2, Funny

      ...and in related news tonight, the government of Panama has decided to block the Panama Canal. Apparently, they are 'concerned' about contact with the outside world, and they want to stop this threat to their national sovereignty immediately.

    2. Re:This is ridiculous by sql*kitten · · Score: 3, Funny

      Banning VoIP? Whats next? Possibly banning email to help the USPS?

      Yes, what's next, steel tariffs or something? Nah, that'll never happen.

  3. They will need to also block every other port. by Nicopa · · Score: 5, Insightful

    There are 65534 other ports wich can be used for VoIP, they must block them too!

    1. Re:They will need to also block every other port. by atrus · · Score: 5, Funny

      In other news, Panama is back to using ip addresses to look at websites since DNS is now blocked in that country.

    2. Re:They will need to also block every other port. by sam_handelman · · Score: 3, Funny

      There are 65534 other ports wich can be used for VoIP, they must block them too!

      The idea is that only the most skilled, black hat hacker can open the preferences for his VoIP software and change the port number.

      --
      The good and new comes from no quarter where it is looked for, and is always something different from what is expected.
    3. Re:They will need to also block every other port. by The+Original+Yama · · Score: 5, Funny

      Soon they'll also be blocking shipping ports, including the Panama Canal. I've never heard of a country blockading itself before.

    4. Re:They will need to also block every other port. by John+Hasler · · Score: 2

      > How critical is Panama, anyway; and how easy is
      > it to route around Panama?

      There's lots of dark fiber across North America.
      I should think that a few threats from organizations such as AT&T and WorldCom to take their business elsewhere (including voice) would cause them to back down.

      --
      Warning: this article may contain humor, sarcasm, parody, and perhaps even irony. Read at your own risk.
    5. Re:They will need to also block every other port. by Docrates · · Score: 3, Informative

      Look, I live in Panama and I wish I had some insightful way to rationalize what these guys are doing, but unfortunately, it's as stupid as it sounds. Even those who marginally benefit from this are scratching their heads (Except for Cable & Wireless which holds the legal telecom monopoly until 1/1/2003)

      For once I wish this article was confusing the country of Panama with Panama, FL., but it isn't...

      --

      There are two kinds of people in the world: Those with good memory.
    6. Re:They will need to also block every other port. by juliao · · Score: 2
      The idea is that only the most skilled, black hat hacker can open the preferences for his VoIP software and change the port number.

      Wow, really? I guess the rest of the world will just have to go script-kiddio and download the "VoIP Panama Hacker" tool or something, to make it work again...

      </irony>

    7. Re:They will need to also block every other port. by Alsee · · Score: 2

      In other news, Panama is back to using ip addresses to look at websites since DNS is now blocked in that country.

      Good joke, except that with all ports blocked they are still going to be staring at a blank page.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    8. Re:They will need to also block every other port. by Alsee · · Score: 2

      If they want to close all of the ports they are going to have to close ALL of the ports.

      If they close all IP ports I'll just adapt RFC 1149 to function over cargo ships though sea ports. If they close the sea ports I'll just adapt it to use passenger jets through the airports.

      P.S.
      the ping times involved are a bit of an annoyance on live voice data though.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    9. Re:They will need to also block every other port. by antirename · · Score: 2

      I lived there for several years and I loved it. Please ignore all of the "third world", "you mean they have computers", etc. posts that are bound to pop up. Beautiful country... I want to retire there.

    10. Re:They will need to also block every other port. by GooberToo · · Score: 2

      I'm guessing phone service is metered versus a flat rate there?

  4. Suggestion to Panama by j1mmy · · Score: 4, Funny

    Please adapt.

    1. Re:Suggestion to Panama by Multics · · Score: 5, Funny
      Or alternately, "Aren't you third-world-ish enough already without this kind of crap?"

      -- Multics

    2. Re:Suggestion to Panama by mr_z_beeblebrox · · Score: 2

      Or alternately, "Aren't you third-world-ish enough already without this kind of crap?"

      Right now the world is experimenting with VoIP because POTS is too expensive. What happens to Panama when the experiment is over and the US etc...have fancy servers converting VoIP to POTS signals to talk to these people (while levying huge surcharges)?

    3. Re:Suggestion to Panama by back_pages · · Score: 2

      Third world means independent from both American and Soviet dominance, just FYI. It is perfectly acceptable for the richest country in the world to be a third world nation. Switzerland, in fact, with its strict policy of neutrality, may be a third world nation.

    4. Re:Suggestion to Panama by Marc2k · · Score: 2, Informative

      "THIRD WORLD -- the economically underdeveloped countries of Asia, Africa, Oceania, and Latin America, considered as an entity with common characteristics, such as poverty, high birthrates, and economic dependence on the advanced countries. The French demographer Alfred Sauvy coined the expression ("tiers monde" in French) in 1952 by analogy with the "third estate," the commoners of France before and during the French Revolution-as opposed to priests and nobles, comprising the first and second estates respectively. Like the third estate, wrote Sauvy, the third world is nothing, and it "wants to be something." The term therefore implies that the third world is exploited, much as the third estate was exploited, and that, like the third estate its destiny is a revolutionary one. It conveys as well a second idea, also discussed by Sauvy, that of non-alignment, for the third world belongs neither to the industrialized capitalist world nor to the industrialized Communist bloc. The expression third world was used at the 1955 conference of Afro-Asian countries held in Bandung, Indonesia. In 1956 a group of social scientists associated with Sauvy's National Institute of Demographic Studies, in Paris, published a book called Le Tiers-Monde. Three years later, the French economist Francois Perroux launched a new journal, on problems of underdevelopment, with the same title. By the end of the 1950's the term was frequently employed in the French media to refer to the underdeveloped countries of Asia, Africa, Oceania, and Latin America."

      Source: http://www.thirdworldtraveler.com/General/ThirdWor ld_def.html

      See also:
      http://www.infoplease.com/askeds/11-27-01askeds.ht ml

      http://pages.prodigy.net/aesir/oncwg.htm (slightly different take on the term)

      --
      --- What
    5. Re:Suggestion to Panama by back_pages · · Score: 2
      The dictionary says, "1. a group of nations especially in Africa and Asia not aligned with either the Communist or the non-Communist blocs", with definition 3 using the term "underdeveloped nation".

      This site about the Fourth World says, "The states not aligned with either bloc of geopolitical power [Euro-American vs. communist-socialist states] were regarded as the 'Third World.'".

      To be honest, I was unaware that the "underdeveloped nation" definition was correct in any way.

    6. Re:Suggestion to Panama by back_pages · · Score: 2
      The dictionary says, "1. a group of nations especially in Africa and Asia not aligned with either the Communist or the non-Communist blocs", with definition 3 using the term "underdeveloped nation".

      This site about the Fourth World says, "The states not aligned with either bloc of geopolitical power [Euro-American vs. communist-socialist states] were regarded as the 'Third World.'".

      To be honest, I was unaware that the "underdeveloped nation" definition was correct in any way.

  5. Another good example of fear of progress by XJoshX · · Score: 5, Insightful


    People have tried to fight progressive technological evolution for ages and it has yet to ever work once. Any country making laws forcing its citizens to live behind the times is only hurting itself. What if panama had outlawed the original telephone because it hurt the post office? Granted, Voice IP isn't quite as drastic a step, but it is progress and it will succeed on its own merit, laws or no laws.

    1. Re:Another good example of fear of progress by marksilverman · · Score: 2, Insightful


      I don't think it's about fighting evolution -- it's just about delaying it for as long as possible. They have an existing monopoly and every day they stretch it out the money continues to pour in.

      Another example: the record companies know that every year they can delay the widespread adoption of file-sharing technologies is another year they can freely suck the blood out of the american public. They can't stop it in the long run, but they have a huge financial incentive to slow it down.

    2. Re:Another good example of fear of progress by kko · · Score: 2, Informative

      Actually, Panama is not afraid of progress (believe me,I lived there and have family there)...
      Their problem is a monopolistic phone company....
      Cable & Wireless Panama privatized "INTEL", which was the only telco there since the stone age, and has bought many laws to place itself in control of the whole
      comms market.
      In fact, the father of one of my sister's friends is a lawyer that works for a Dominican telco that's trying to set up shop in Panama, and C&WPA has sued the crap out of his company. In fact, most of those suits are not "valid" (don't ask me, IANAL) suits, but are intended to tie the dominican telco's hands so that as long as the suits are not dismissed or won, the telco won't be able to do shit...
      My panamanian family is really pissed at C&WPA's service and abusive pricing too, andt hey're even more pissed at not being able to download the photo album hosted on my own machine because C&WPA apparently blocks a lot of sites.....

      --
      No, seriously, I just come here for the articles.
    3. Re:Another good example of fear of progress by Docrates · · Score: 2

      I'm a Panamanian and also live here. While I agree with your post, there is one thing that needs to be corrected. It was BellSouth that sued the life out of Tricom (it's actually a cellphone replacement using cellphone-like radios. Pretty neat). C&W decided to step aside for PR's sake, but with this new move, they're way over their heads now.

      --

      There are two kinds of people in the world: Those with good memory.
    4. Re:Another good example of fear of progress by Twylite · · Score: 2, Interesting

      All the comments I've seen about this are along the lines "this is bad for progress", "you can't step on my rights", or "there are easy technical workarounds". But noone has actually acknowledged that there is a sound economic reason for this action, which is being contemplated by many governments around the world.

      Governments have a responsibility to provide basic services to their citizens. Communication is considered (by the UN and most governments) to be a basic service. Thus the sector needs regulation to prevent abuse by the providers and the consumers.

      VoIP sounds like a wonderful idea: use more advanced technology to reduce the cost of calls, especially international calls, thereby improving value to the consumer.

      Sadly, this is one side of the equation. Using/allowing VoIP means a select number of consumers who have access to VoIP equipment are able to make international calls at local call cost, while still using some (perhaps less than a conventional call) international bandwidth without really funding it.

      In order to afford the international bandwidth, the telecom company must recoup the cost, and it can do this in one of three ways:

      • Charge more for international calls: This means that the man-in-the-street, who does not have VoIP access, is paying more to make international calls, on account of VoIP users. When one group of users must pay more because of the actions of another group, this is generally considered in business as service abuse.
      • Charge more for international data only: this gives similar resulsts to the above, except the inconvience is more limited. VoIP users are a small subset of data users, but an even smaller subset of all telephone users; so you're asking the data users to fund the VoIP's bandwidth.
      • Charge more for all calls and have local calls subsidise international bandwidth costs: This means higher costs for everyone in the system. Since communications is a basic service, this will be a driver for inflation.

      No matter how you look at it, VoIP is a specialised service with a usage pattern such that non-users are expected to subsidise the cost. This is grossly unfair to those users, which is precisely why telecoms companies are keen to prohibit the use of VoIP on their networks.

      Until such time as ALL international calls can be VoIP (which basically means making all phones VoIP equipment), the ecnonomic concerns are going to be the same.

      --
      i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
    5. Re:Another good example of fear of progress by Alsee · · Score: 2

      No matter how you look at it, VoIP is a specialised service with a usage pattern such that non-users are expected to subsidise the cost.

      No, VOIP is just another piece of data on the internet. Either internet data is unfairly subsidized or it is not.

      *IF* youargument is accurate, it applies equally to all internet data. It means that downloading porn or Windows service packs from overseas also unjustly inflates the cost of everyone else's phone service.

      And *IF* you're right, it would still only means that there is something wrong with the ISP billing structure.

      No, this court ruling is nothing but protectionism attempting to eliminate competition.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    6. Re:Another good example of fear of progress by Twylite · · Score: 2

      Telecoms companies use a wide range of cross-subsidies to cover the costs of their international capacity. Fact: voice calls subsidize data. A telecom can reserve and sell a block of bandwidth for data at a fixed price with a higher return than it can reserve bandwidth for on-demand purposes, such as voice calls which are more common at particular hours of the day. During the rest of the time that bandwidth reservation is not realising its full value.



      The more users move to VoIP, the more the telecom must rebalance the costs of its services, and data bandwidth will become more expensive. So now the ISPs are paying, and you are paying the ISP. But until your ISP starts charging you, specifically, the VoIP user, that price increase gets passed on to all data users.



      A peering agreement is between peers. An ISP has a service agreement with a telco, and a peer agreement with other ISPs. Telcos have peering agreements with each other, sharing the costs of interconnecting equipment and negating some call costs in each direction.



      Go and read up on freeloading, the tragedy of the commons and the Nash equilibrium, and the economics that pertain to it. Anything that can be used to bypass restrictions on a product or service to obtain another product or service which is usually more expensive can be treated as a partial form of freeloading. VoIP is no different.



      --
      i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
    7. Re:Another good example of fear of progress by Twylite · · Score: 2

      Is there another service on offer to provide porn / windows service packs on demand, which cross-subsidises data traffic? No.

      Voice calls subsidize data traffic. Decrease voice calls in favour of data traffic (i.e. VoIP) and you upset the balance; to rebalance the telco must increase the price of BOTH voice AND data traffic (or significantly increase only data traffic and reduce cross-subsidization).

      An increase in the cost of data traffic hurts everyone. It is not just that some people are now using more data traffic than others, it is that the traffic costs more. Even voice users who have nothing to do with data traffic will be paying more.

      You're right -- this ruling is protectionism. It protects the majority of consumers from a few who can abuse the system by getting services at a fraction of the cost, thereby increasing the cost to the majority.

      --
      i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
    8. Re:Another good example of fear of progress by back_pages · · Score: 2
      So how many people in Panama are getting their internet service through their local digital cable providers? It just seems to me that the internet service is most likely coming through the POTS anyway, resold through ISPs or not. This sounds like a prime opportunity for the telephone system to adapt.

      The Panamaniam government can do what it pleases, I suppose, but the further they drift from a market economy the sooner they will be fighting inefficiency and lag behind more competitive economies. What incentive would the phone company have to become more profitable? They fix their competition through legislation anyway. How are the communication needs of Panamanian citizens going to be met by such an organization? Need a phone line run to a new house? Screw off. They can't lose you to a competitor, so they'll take their sweet time waiting until it is least inconvenient for them to meet your needs. That doesn't sound like a golden era of humanitarian progress to me.

    9. Re:Another good example of fear of progress by Blkdeath · · Score: 2
      Is there another service on offer to provide porn / windows service packs on demand, which cross-subsidises data traffic? No.
      No, but we do have video stores, satellite TV, digital cable who are all willing to provide porn to people, and you can order CDs from Microsoft.

      More topically; we have ICQ, AIM, IRC, MSN, Yahoo, and many other messengers who (from personal experience) reduce the number of telephone calls. For example, I have a friend in California with whom I can speak for hours without ever picking up my handset. That's a lot of money not going into the telco's coffers. However, as indicated above, I pay my share for the transit of this information via my monthly ISP bill. My ISP peers with several other national ISPs, who either are themselves, or peer with international ISPs, and everybody gets a buck along the way.

      If the multi-national ISP backbone providers were silly enough to rely on voice calls to subsidize their (by your logic) fledgeling Internet business, we wouldn't have the Internet as we know it today. You don't create one business that directly competes with your mainstay and survive in a capitalist economy. That's known as economic suicide, plain and simple.

      You're right -- this ruling is protectionism. It protects the majority of consumers from a few who can abuse the system by getting services at a fraction of the cost, thereby increasing the cost to the majority.
      This ruling is protectionism alright, but not the way you portray it. This ruling protects a monopoly that won't adapt to the times. If monopolies remain in the past, they find themselves in one of three scenarios;
      1. Lose substantial business to new up-and-comers (the Internet providers)
      2. Seek regulation to force their business model, thus forcing their customers to remain behind the times
      3. Adapt.
      A telcom monopoly is a Good Thing only initially - until a nation has a telecommunication infrastructure in place. Afterwards, the only model that suits the nation (and encourages growth) is to break up that monopoly and let others into the mix. Companies who will compete to keep customers, rather than keep them at bay. Service growth, enhancement of services, quality of service are all things that monopolies tend to forget about while they sit atop their respective dung heaps.

      If the telco is having that much difficulty, perhaps they should invest in some VoIP POTS conversion facilities and start reaping the benefeits of inexpensive international traffic, or provide a VoIP gateway service (with a premium fee for the extra service/bandwidth usage) for their customers.

      --
      BD Phone Home!

      Shameless plug. Like you weren't expecting it.

    10. Re:Another good example of fear of progress by arkanes · · Score: 2

      You seem to be implying that anyone who is able to provide a service at a lesser cost is somehow freeloading - as other posters have said, VoIP is no different than any other internet traffic - by the same token, we should block IM and email, because people use those instead of voice calls. Cross-subsidies and such are an internal telco problem, not mine - perhaps in the future, IP traffic will subsidize the costs of POTS calls. Maybe it already does, I don't know. But artifically repressing a new technology in order to maintain the pricing scheme of a monopoly is stupid, especially when it's done it such a blatantly ridiculous manner.

  6. Port change... by dvk · · Score: 3, Interesting
    I'm not sure what they decided the competition would be...
    If person2person chat programs with voice capabilities, then whoever provides the software (I know Yahoo messenger and ICQ can do that, although it's not VoIP) should be able to make it switch ports easily.
    If companies (such as the one I use to call Russia if/when I ever do :) - then the company can easily change ports on its system too - it's not like anything is using some sort of public infrastructure which is all set to UDP port 46 (like, say, you could actually break mail by blocking port 25, I suppose, because any mail transport depends on gazilion computers listening on 25, and not only sender/reciever pairs).

    Or is my logic flawed somewhere and the port block like that would achieve the desired effect?

    Cheers,
    DVK

    --
    "The right to figure things out for yourself is the only true freedom everyone shares. Go use it"-R.A.Heinlein
    1. Re:Port change... by gl4ss · · Score: 2

      well, if you lacked the capabilities to do so, ie. weren't geeky enough, or if you lacked the capabilities to contact the other person by other means, imagine having to send a fax beforehand everytime you had to make a phone call.

      --
      world was created 5 seconds before this post as it is.
  7. In a Folow Up News Release by Quirk · · Score: 5, Funny

    The Panamania Government has decreed all citizens are to wear tin foil hats to block telepathic circumvention of POTS.

    --
    "Academicians are more likely to share each other's toothbrush than each other's nomenclature."
    Cohen
  8. Logical Conclusion of VoIP by CatWrangler · · Score: 4, Interesting
    Ok. Everybody gets wired up. Everybody learns that it is cheaper to make calls over the internet. What exactly do the phone companies do then? You can't exactly ask them to follow the Linux model.

    The obvious solution is going to be a transmission tax on VoIP calls. Cheaper than the old way, but it will begin to cost you money. Hate them you might, but the phone companies have real expenses in physical property, technical services, and customer service. They need to get paid. It will be less than they are used to, but they won't be giving it away for free much longer.

    --

    ---
    When you come to a fork in the road, take it! --Yogi Berra--

    1. Re:Logical Conclusion of VoIP by ajakk · · Score: 2

      VoIP is just standard IP traffic. The obvious solution is to charge more for Internet access, and more probably charging per amount of volume. If standard voice traffic dies off over time, too bad. The telephone companies are charging for the infrastructure of the net anyways. Let them make their money by charging for that.

    2. Re:Logical Conclusion of VoIP by CatWrangler · · Score: 2
      The fact that the telcos business model may be outdated it not my concern.

      Propose a business model that pays for repairing pipe that will supercede the current model, and we have no argument. We are going to pay for it one way or another, period. Higher telephone, cable bills will be the likely result, but there is no free lunch. Beer is free, but not the beer nuts.

      --

      ---
      When you come to a fork in the road, take it! --Yogi Berra--

    3. Re:Logical Conclusion of VoIP by sammaytg1 · · Score: 4, Insightful

      Your logic seems flawed to me. When you make a call using voip you totally bypass the phone comapny. YOu aren't costing them anything. THis is like saying that it's wrong to listen to indie band because the riia spent money on the latest release. THe phone companies time ma have come. Just because they were the only way to make calls 30 years ago doesn't mean that now. If voip is a beter alternitive for the people(sound quality and realibilty in exchange for cost) then good for them.

      --
      procrastination is a way of life aka i'll think up a sig later
    4. Re:Logical Conclusion of VoIP by Rasta+Prefect · · Score: 2
      Propose a business model that pays for repairing pipe that will supercede the current model, and we have no argument. We are going to pay for it one way or another, period. Higher telephone, cable bills will be the likely result, but there is no free lunch. Beer is free, but not the beer nuts.

      Hmmm...Lets see..Oh yeah, I have one - paying for internet service. I pay ISP, ISP maintains their pipes or pays telco to do it.

      --
      Why?
    5. Re:Logical Conclusion of VoIP by rodgerd · · Score: 2

      Volume charging, most likely. This is the norm in most of the world.

    6. Re:Logical Conclusion of VoIP by oGMo · · Score: 2
      The obvious solution is going to be a transmission tax on VoIP calls.

      This is about the dumbest thing I've heard in a few days. No. The solution is for POTS to die. Telcos can switch their services over to simply providing everyone with highspeed wired internet.

      They need to get paid.

      They can get paid for doing something worthwhile. Not charging for bits to a particular port because their old business model won't support them. Who comes up with this crap? There's no "right to profit" in the Constitution or any other law. Why do you think the dot-com bust happened? If one business model becomes unsustainable, you move or get trampled.

      --

      Don't think of it as a flame---it's more like an argument that does 3d6 fire damage

    7. Re:Logical Conclusion of VoIP by rodgerd · · Score: 2

      Like it wasn't your concern when Qwest went broke? I presume you were fortunate enough not to use any Internet resources impacted when they switched the routers off.

      If telcos does tits up your last mile either dissapears or becomes a monopoly. So you either have nowt. Or pay whatever your local monopoly feels like having you pay.

    8. Re:Logical Conclusion of VoIP by Spy+Hunter · · Score: 4, Insightful
      What are you talking about? You pay for internet access. If the phone companies can't make enough money off of providing Internet access to pay for the access itself, then *that* is the problem. Internet access costs should go up. Specifically charging for VoIP is the Wrong Thing to do.

      I fear that in the future the Internet will actually move this way. You want to use Kazaa? Pay a per-hour fee for the privilege. You want to use VoIP? Pay per call. This would kill innovation in Internet services. Would P2P have ever developed if this kind of infrastructure was already in place? No, nobody would have been able to use it because of limits on what they could send over the Internet. The whole point of the Internet is that it is this great 2-way communication medium with nearly infinite possibilities and no limits on what kind of information can travel on it. When you limit what can be transmitted to a few well-known protocols you kill that. Firewalls have already done enough damage to innovation on the Internet. I don't want to be using HTTP to browse HTML webpages served by media conglomerates and POP3 to read the same old e-mail 10 years from now just because ISPs have become complacent and not allowed anything new to develop. I want to be using Freenet and Jabber and other protocols that haven't even been invented yet.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
    9. Re:Logical Conclusion of VoIP by WolfWithoutAClause · · Score: 2
      They get into ADSL and other broadband (monopoly or near monopoly) solutions. That way they still get money from their customers for the broadband connection.

      Truth is; long distance is now very cheap anyway, and getting cheaper all the time- the fiber systems have seen to that. Besides; voice traffic is already in the minority for of traffic worldwide as a percentage of bits carried, soon it will be basically an irrelevancy cost wise.

      --

      -WolfWithoutAClause

      "Gravity is only a theory, not a fact!"
    10. Re:Logical Conclusion of VoIP by Sycraft-fu · · Score: 2

      What are you talking about? I get the distinct impression that you don't understand what VoIP is. Voice over IP is nothing more than taking a normal voice signal and encapsulating it so it can go over TCP/IP. The advantage is that you can use a packet switched network (like the Internet) to tranfer the data instead of the circut switched technology that the phone system uses.

      Some companies, like Cox, are working on offering VoIP to the home. YOu'll pay them instead of your phone company or voice service, and it'll come over on your cable line.

      The phone companies also make use of VoIP. A good deal of international traffic uses VoIP since it's more efficient, and they are even starting to use it domestically.

      The whole reason for VoIP is efficieny. For example: I work for a university. If we want to set up a remote site (not on the campus cable plan), currently we have to install enough T-1s to cover their data and their phones. That means they need a T-1 line for every 24 phones, regardless of how often those phones are in use. The only alternative is to install an expensive PBX in every building.

      Now with VoIP technology, we could just install one data circut, which can be anything (DSL, T-1, wireless, whatever) and all it needs is sufficient bandwidth to handle peak voice traffic. The cost is far less because we need less lines to the building, and less infastructer (the Cisco VoIP phone plug into eithernet jacks, just like computers).

      It's not like VoIP is some magical technology that rips off the phone company. It's just a different kind of phone circut, just like a cell phone. If you want VoIP at some place you still need the IP part, access to the internet in otherwords. You have to pay someone for that.

      It's not like the telephone companies have some sacrad right to keep doing bussiness like they always have done. I'm betting that in 30 years just about everything (phone, data, cable TV and so on) will be IP traffic, it's just more efficient. When you do that, you only need one single link to supply all your different needs.

    11. Re:Logical Conclusion of VoIP by RestiffBard · · Score: 2

      how do you bypass the phone company if the phone company is the one providing you the ability to connect to the internet?

      unlike japan and the usa and a few other countries not too many places are getting net connections from high speed cable. hell I live in the usa and I don't get my net from cable.

      the phone companies at some point always figure in your ability to communicate with anyone over wire. they do have shit to pay for.

      their business model really needs to change as one poster suggested to providing high speed net access but that doesn't mean that right now they aren't concerned about lost revenue to VoIP.

      as for your simile it really doesn't hold up. the RIAA doesn't provide the infrastrcuture for me to listen to indie bands. the phone company does, however, provide the infrastructure for me to respond to your post. between me and you there is a telco.

      --
      - /* dead coders leave no comments */
    12. Re:Logical Conclusion of VoIP by bgeer · · Score: 2, Informative
      The problem is that a clever person can easily disguise the fact that they're using VoIP. If it is enough of a problem that the POTS is collapsing, there must be a big financial incentive for panamanians to use VoIP. Enough to develop and use circumvention measures, probably.

      Tools like stunnel are readily available over the net. If crypto is illegal down there, it would be pretty easy to make a steganographic wrapper that would make the connection appear to a casual observer to be an ftp session, say. More sophisticated methods could be used to make it hard to detect the fact that there is a connection at all.

      The only real solution thus is to drop LD prices and/or raise internet access prices. Or to sharply limit uploading speed/latency to a level where VoIP would be unacceptably bad.

    13. Re:Logical Conclusion of VoIP by chevybowtie · · Score: 2, Interesting
      If a new phone company came into town, placed it's own cables, gave away phones, sold service at 25% of the incumbet telco's price, it certainly would hurt the incumbent phone company. If you allow competition, the end result is supposed to be lower cost and new services available to the consumer. Monopolies prop up prices and stiffle innovation. So what if this "VoIP" phone company didn't have to place cables!

      Look at it this way: The Pony Express had real expenses in physical property, livestock and employees. If you haven't noticed, it's not available anymore. If it was, would you wait days for your message to be delivered?

      Don't prop up outdated, inferior models. Embrace progress!

    14. Re:Logical Conclusion of VoIP by phunhippy · · Score: 2

      Beer is free, but not the beer nuts.

      Ya know, thats really funny.. I've been going to the wrong bar for years now i guess since at my favorite bars i gotta pay for the beers and they give me all the beer nuts i can munch on for free.

      I'd like to try the bar were you get free beer! and i'd gladly pay for the crappy beer nuts!

    15. Re:Logical Conclusion of VoIP by Alsee · · Score: 2

      What exactly do the phone companies do then? ...They need to get paid... they won't be giving it away for free much longer.

      There are three possibilities.

      (1) The ISP you use is not the phone company. In this case the phone company is losing customers and revenue to a competitor. They have absolutely no right to impose a "transmission tax on VoIP calls" on their competitors.

      They aren't "giving it away for free" because I'm getting it from someone else.

      (2) The phone company is your ISP, and they run a profitable ISP bussiness.

      They aren't "giving it away for free" because I'm paying them for it, and they are making a profit.

      (3) The phone company is your ISP, and they sell ISP service at a loss.

      In this case they are "giving it away for free" (below cost to be accurate), but they should get the hell out of the ISP bussiness.

      In any case, VOIP is nothing more than another piece of data on the internet, no different from websurfing or installing Windows service packs. Either it is all profitable, or it all should be "taxed" equally.

      The only "special" thing about VOIP is that some companies are complaining that they are losing customers to a competitor with lower prices. (Even if the "competitor" is another division of the same company.)

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    16. Re:Logical Conclusion of VoIP by srmalloy · · Score: 2
      They can get paid for doing something worthwhile. Not charging for bits to a particular port because their old business model won't support them. Who comes up with this crap? There's no "right to profit" in the Constitution or any other law. Why do you think the dot-com bust happened? If one business model becomes unsustainable, you move or get trampled.

      "There has grown up in the minds of certain groups in this country the notion that because a man or corporation has made a profit out of the public for a number of years, the government and the courts are charged with the duty of guaranteeing such profit in the future, even in the face of changing circumstances and contrary public interest."
      -- Robert A. Heinlein
    17. Re:Logical Conclusion of VoIP by Spy+Hunter · · Score: 2

      I wouldn't mind an arrangement like that. It's only fair to pay in proportion to what you use, as long as the fees aren't unfairly high. I only hope ISPs are smart enough to see that this is the way to go.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  9. Re:Revolt! by wotevah · · Score: 2

    really ? explain DMCA :)

  10. Censorship = Damage? by agentZ · · Score: 2

    The old adage says that the Internet interprets censorship as damage and routes around it. While we may not be able to call into Panama using VoIP, will transnational calls that used to go through there be routed around?

    1. Re:Censorship = Damage? by xean · · Score: 5, Interesting

      What this article really demonstrates - and it's something that has been demonstrated before on countless occasions - and that is that most governments of the world believe the internet is something tangible and easilly controllable.

      This has been demonstrated here in Australia with the federal goverments push to sensor content and make ISP's liable for content that is served up from their service.

      It's been demonstrated by the Chineese government with their sensorship and blocking of sites like google.

      It has been shown by the USA's government in their restriction of encryption technology export.

      All of these things are easilly worked around by even the most non techsavvy user.

      Those of us who understand what the internet is and how it works understand that this sort of filtering will not work. These type sof things just show that until governments actually gain an understanding of the things they are trying to control they will continue to make fools of themselves. (btw: I'm surprised they dont want to block tcp ports 25, 110 & 143 (smtp,pop,imap) as people might send electronic mail rather than using the snail mail service).

  11. Block _all_ UDP? by Megane · · Score: 2
    In the decree, the Panamanian government requires "that within 5 days of publication, all ISPs will block the 46 UDP ports used for VoIP and any other that could be used in the future (which could end up being all UDP ports)," according to a reporter and computer consultant there, and that "the ISPs will block in their firewall or main router and in all their Border routers that connect with other autonomous systems."

    After this kind of crap, I don't think I'd have any problem with them blocking UDP 53.

    --
    #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
  12. I think this is "Just Cause" for... by SuperMario666 · · Score: 2, Funny

    ...some banana republic adventurism!

    Heck, maybe it'll tide us over until Iraq War II debuts in January.

  13. Not hard at all... by Da+VinMan · · Score: 5, Interesting

    In fact, I think it would be a piece of cake to cobble together a proxy server that did just that. The clients wouldn't even have to change their software other than to point to the intermediate proxy server.

    The problem here though comes in talking to the rest of the world. The above-mentioned servers have to direct the traffic to the destination servers at some point. Those servers are completely outside the control of the subversives to be. Those servers have to know that the traffic being received is actually VoIP and deal with it appropriately.

    It can be done, but it will require servers outside of Panama to cooperate with the scheme.

    Of course, once the Panama government locates those sites (shouldn't be hard) they'll start gopher whacking them with a variety of tactics: legal shutdowns through warrants, DOS attacks, etc. Vendors from outside of Panama will also rush to fill the void, and that software will also subsequently be outlawed.

    The bottom line though is that the government will not be able to control the VoIP "problem" entirely without just pulling the plug on all Internet activity. That would be a steep price and they will face economic pressure to not do it.

    Oh well, they'll learn this one the hard way I guess.

    --
    Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
    1. Re:Not hard at all... by LarsG · · Score: 5, Insightful

      The bottom line though is that the government will not be able to control the VoIP "problem" entirely without just pulling the plug on all Internet activity.

      Too true.

      I'm actually more worried about collateral damage here - if the news report is correct then any traffic passing _through_ Panama would be subject to the filters - stopping any application that just happens to use one of the ports mentioned.

      --
      If J.K.R wrote Windows: Puteulanus fenestra mortalis!
    2. Re:Not hard at all... by rodgerd · · Score: 5, Insightful

      You've kind of missed the key point, though: once it starts becoming harder and requiring more knowledge to do it, the phone company will be safe again. The danger comes from pervasive, easy to use VoIP services which anyone can use. If the decree can drive it back to the point where only a few geeks are doing VoIP it's all a success for the telco.

    3. Re:Not hard at all... by Anonymous Coward · · Score: 3, Informative

      corkscrew allready provides a tunnel over port 80, all you need to do is configure gnomeeting to use port 80, then you have secure VOIP over the mostly web port.

      The only way for them to stop VOIP, is to shut down EVERY PORT!

      --Benjamin McFree is one cool dude

    4. Re:Not hard at all... by bigsteve@dstc · · Score: 4, Insightful
      The bottom line though is that the government will not be able to control the VoIP "problem" entirely without just pulling the plug on all Internet activity. That would be a steep price and they will face economic pressure to not do it.

      If the Panamanian government gets serious about this, they could put a stop to VoIP by making it illegal to use VoIP in Panama. Many countries have done this kind of thing in the past. In the UK 20 or so years ago, it was not possible to set up a public internet because of government rules.

    5. Re:Not hard at all... by Anonymous Coward · · Score: 2, Funny


      Just use UDP port 53. I'd like to see Panama try to block that one.

    6. Re:Not hard at all... by lostchicken · · Score: 4, Funny

      If TCP became a problem, I'd be happy to sell them a raft of these to take care of all their problems...

      --
      -twb
    7. Re:Not hard at all... by dknj · · Score: 3, Informative

      RFC 1035

      The Internet supports name server access using TCP [RFC-793] on server port 53 (decimal) as well as datagram access using UDP [RFC-768] on UDP port 53 (decimal).

      -dk

    8. Re:Not hard at all... by F.Prefect · · Score: 5, Insightful
      any traffic passing _through_ Panama would be subject to the filters

      Although realistically this is unlikely to be a problem for any significant percentage of Net traffic. Topologically, Panama is most probably a spur on the Internet, rather than a hub. Most of the western hemisphere's traffic passes through the US west coast on its way to anywhere. By the time a given packet hits Panama, I'd lay good odds its actually bound for an endpoint in Panama.

      --
      --Ford Prefect
    9. Re:Not hard at all... by Electrum · · Score: 2

      The Internet supports name server access using TCP [RFC-793] on server port 53 (decimal) as well as datagram access using UDP [RFC-768] on UDP port 53 (decimal).

      Wrong. DNS is done using UDP queries. Authoritative name servers are only required to respond to UDP queries. TCP is used as a fallback method if a response will not fit in 512 bytes. This is almost never needed (since servers control what data they publish) and as a result, TCP service is not used by many sites. Blocking UDP port 53 will completely break DNS:

      http://cr.yp.to/djbdns/tcp.html

    10. Re:Not hard at all... by jelle · · Score: 2

      That's only a problem of there is any TCP/IP-level processing (routing, switching) going on on those undersea cables. I suspect it is probably some sort of WAN framing (ATM, HDLC, etc) what they use on the undersea cables, with TCP/IP just layered on top of that (for those bandwidth customers that want that). So then the 'switching stations' in panama, if any, only need to do the lower level frame processing and never decode the TCP/IP packets or headers, or even know or care about it.

      --
      --- Hindsight is 20/20, but walking backwards is not the answer.
    11. Re:Not hard at all... by Da+VinMan · · Score: 2

      I frankly don't know enough about the situation to get really specific, but my idea was that they would proxy within the network before they got to the ISP that's doing the filtering. Now, if by "ISP" we mean before the traffic leaves Panama, that could be a proxy server several hops up from the client and the software would only need to be installed there. If by "ISP", we mean the direct ISP for the user, then that might be a proxy "server" that runs locally on the client's workstation and the client is configured to proxy to itself on port 8080 or something like that.

      More clear?

      --
      Please mod this post only if you think others should/n't read this. I have enough ego^H^H^Hkarma. Thanks!
    12. Re:Not hard at all... by Krellis · · Score: 2

      But that doesn't matter - in theory, they could just say the law still applies, and force those providers to START going up to that level, or pay fines or simply be removed from the country.

    13. Re:Not hard at all... by jelle · · Score: 2

      Sure, they could, but that would probably be outside the intent of the law, because none of that traffic will have endpoints in their country, its all transit (if it were not transit, then there would have been TCP/IP packet decoding already).

      But IANAL, so I might be wrong, or maybe not ;-))

      --
      --- Hindsight is 20/20, but walking backwards is not the answer.
    14. Re:Not hard at all... by onepoint · · Score: 2

      That really does not matter. Using current US law in transportation, forbids the trans-shipment of illegal goods in US ports. So a legal medical treatment in Britain, bound for Canada ( where it's also legal ) can not be routed via a port in the USA ( which many carriers would like to do).

      a Nation can, for all reasons, demand that traffic passing within thier boarders, behave in the manner they deam suitable.

      Also Panama is a huge hub in the scope of the internet ( given it's not as big as miami, but it's huge just the same )

      the big hum for central and south america is Maimi FL. and Houston TX. Miami has pipes directly to Panama, Sau Pualo Brazil, Columbia ( east coast ), Venezuala, Argentina. any carrier that needs links to those coutries from the pacific route needs to route from Hawaii or LA to Panama hub then spoke to the above nations.

      --
      if you see me, smile and say hello.
    15. Re:Not hard at all... by jelle · · Score: 2

      "a Nation can..."

      True, but I doubt that is their intention. They have nothing to gain with that except people moving their business elsewhere. Disabling use of voip for their own residents however effectively keeps the voice telecommunications competition away, protecting the national telephone company (~ies?)

      --
      --- Hindsight is 20/20, but walking backwards is not the answer.
  14. Re:But... But.... by dvk · · Score: 2
    Uhm... while the action is IMHO stupid and pointless, your comment makes no sense at all.

    What *is* 'the spirit of the internet', and what is "internet" you are referring to in the first place? If you are talking about TCP/IP network, then there is no "spirit". There are RFCs, and i don't think you can find one which specs which ports should or should not be blocked.

    "Open and unrestricted"? As in, a bunch of open mail relays avialable to spammers, for example? Thanks, but no thanks :)

    Also, what do you mean "supposed"? By whom?

    As for "especially by companies": as of now, MOST of the internet is owned (as in, lines and networking equipment) by those "companies" you seem to hate so much.

    In short, get off your political horse, and instead of whining go build some program to help use other UDP ports if this action is so against your spirit.

    -DVK.

    --
    "The right to figure things out for yourself is the only true freedom everyone shares. Go use it"-R.A.Heinlein
  15. Next day, several new protocols invented... by Polo · · Score: 5, Funny

    I would assume that there will soon be:

    VODNSOIP
    VOHTTPOIP
    VOICMP

    1. Re:Next day, several new protocols invented... by Istealmymusic · · Score: 2

      Voice Over ICMP. Ingenius. ICMP can be used as a covent data channel, there is a nice article in Phrack, highly recommended.

      --
      "The lesson to be learned is not to take the comments on slashdot too literally." --Vinnie Falco, BearShare
    2. Re:Next day, several new protocols invented... by bovril · · Score: 2, Funny

      A convent data channel? Is that the one the nun's use to talk to god?

      --

      ---
      Yeah, well, that's just, like, your opinion, man.
    3. Re:Next day, several new protocols invented... by Pete+(big-pete) · · Score: 2

      I would assume that there will soon be:

      VODNSOIP
      VOHTTPOIP
      VOICMP

      Also in the news, George W Bush proposes another new protocol:

      VOICBM

      -- Pete.

    4. Re:Next day, several new protocols invented... by Alsee · · Score: 2

      VOemailP*
      VOnews-group-postingsP**

      *Note some people may find the the response rate awkward for live voice chat.

      **Note anyone who does not find the response rate awkward for live voice chat should immediately consult a licenced psychological professional.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  16. I don't see how this is moral or legal.. by Anonymous Coward · · Score: 5, Insightful


    Example: I buy a new tool. It is a clawhammer. For some reason, this deprives the company making nail removers of money, especially considering their old nail removers were overpriced.

    So, the government affiliated nail remover maker goes and makes buying clawhammers illegal.

    This is immoral. You can't just rent-a-law because your overpriced technology is being smashed by a preferrable alternative.

    I mean, just because you can buy laws (ie: riaa), doesn't mean it should be allowed to happen..

    1. Re:I don't see how this is moral or legal.. by jonr · · Score: 2

      Well, it's more like if the government would make it mandatory for hardware stores to remove the claw of the clawhammers... pretty silly. O

    2. Re:I don't see how this is moral or legal.. by PerryMason · · Score: 5, Insightful

      Yes it immoral, but thats just the way that capitalism 'works'. The same story is being played out all over the world in nations of varying technological advancement. Big business has developed a hold over government to the extent that in many many cases, the outdated or inferior technology becomes government sanctioned and the opposition becomes if not outlawed, then at least severely hampered in its development.

      This is a situation which, IMHO, will only increase as we see massive values for companies being created overnight (in business terms) for IT related products which are _bound_ to become outdated in a matter of a few years. For the lucky few like MS, they were able to get the wealth early, buy the politicians and can now sit back and reap the rewards. For anyone in competition, the barrier to entry just got a whole lot higher. Not only do you need a better product, but you need a spare billion dollars to throw at Capital Hill.

      Gotta love that combination of capitalism and 'democracy'.

      --
      "I'm tired of all this 'Aren't humanity great' bullshit. We're a virus with shoes" - Bill Hicks
    3. Re:I don't see how this is moral or legal.. by FatRatBastard · · Score: 2, Insightful

      Which is why us nutty Libertarians like to yell and scream about having a smaller gov't, one that has a limited scope and can't change laws for the highest bidder willy nilly. Corperate welfare has brough us such niceities as inflated sugar and corn prices, farm subsidies that keep third world nation's firmly entrenched in the third world (due to lack of access to markets), ever expanding copyright lengths, and a whole other mess o' problems. It ain't capitalism's fault, its the (corporate)welfare states'.

      Then again, we Libertarians are a bunch of heartless bastards who use poor folks as a cheaper substitute for furniture, so what do we know.

    4. Re:I don't see how this is moral or legal.. by GigsVT · · Score: 2, Insightful

      This is a case of the government interfering with capitalism. A corrupt government will ruin any economic system, including your apparent preference, socialism.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    5. Re:I don't see how this is moral or legal.. by L.+J.+Beauregard · · Score: 2
      You can't just rent-a-law because your overpriced technology is being smashed by a preferrable alternative.

      Seems to work for These guys.

      --
      Ooh, moderator points! Five more idjits go to Minus One Hell!
      Delendae sunt RIAA, MPAA et Windoze
    6. Re:I don't see how this is moral or legal.. by mosch · · Score: 2
      You can't just rent-a-law because your overpriced technology is being smashed by a preferrable alternative.
      All available evidence seems to contradict your assertion, and not just in Panama.
    7. Re:I don't see how this is moral or legal.. by shnarez · · Score: 3, Insightful
      Yes it immoral, but thats just the way that capitalism 'works'.

      This is not called capitalism. It's called corruption.

    8. Re:I don't see how this is moral or legal.. by aiken_d · · Score: 3, Insightful

      Er, Ok, I'll take you up on this.

      Say I'm your government affiliated nail remover company, and I employ 25% of the domestic population. Your foreign clawhammer company is coming in and creating unemployment, destroying jobs, and generally upsetting my (admittedly backwards) economy. I go to outlaw clawhammers so my populace can remain employed (and pay taxes). Should that "not be allowed to happen"?

      Say I'm a large automaker with higher overhead than my foreign competition because of worker safety laws and my contractual obligations to the various unions I work with. I'm damned well going to lobby the government to add tariffs to foreign cars to level the playing field. Should that "not be allowed to happen"?

      Say I'm a large US distributor of alcohol and I want to spend some money to make sure that my main competitor, marijuana, remains illegal. Should that "not be allowed to happen"?

      Finally, if you're still supporting the implied-passive-voice "should not be allowed to happen", how about we take it out of passive voice. *By Who*?

      You think the UN, or maybe the US, should invade countries because they have different economic ideas than us?

      It's not immoral. It is economically unsound. And there's no force in the world with the moral authority to tell Panama (or anyone else) that they have to see things our way.

      You imply that this kind of thing "should not be allowed to happen" -- I say the free market "will not allow this to happen." There's no moral judgement to be made here. The free (or relatively free) market will speak, and that's that. No sense getting your panties in a twist. And you know what? The manner in which it does happen may just be educational to all of us.

      Cheers
      -b

      --
      If I wanted a sig I would have filled in that stupid box.
    9. Re:I don't see how this is moral or legal.. by Docrates · · Score: 2

      As a panamanian, I by no means agree with what these nutcases did. It's absurd and I'm hoping they'll realize this in time. On the other hand, there is a rationale behind all this that you are not aware of:

      C&W, the local telco, was awarded a legal monopoly for several years that ends on 1/1/2003. This monopoly gives them control over all voice communications from/to panama that interconnect with the PSTN anywhere in the world. Since services like Net2Phone allow you to do just this using the Internet, they've been trying to find a way to control this for a while. True, when the law was written, VoIP wasn't on the map and using it DOES contradict the regulations, but this has to be the stupidest way of enforcing it.

      --

      There are two kinds of people in the world: Those with good memory.
    10. Re:I don't see how this is moral or legal.. by Aapje · · Score: 2

      Say I'm your government affiliated nail remover company, and I employ 25% of the domestic population. Your foreign clawhammer company is coming in and creating unemployment, destroying jobs, and generally upsetting my (admittedly backwards) economy. I go to outlaw clawhammers so my populace can remain employed (and pay taxes). Should that "not be allowed to happen"?

      If you support this, you cannot blame foreigners for doing the same. The EU might block your fantastic screwdrivers. The result is a lack of international trade. US citizens have to buy shoddy, overpriced nail remover, while EU citizens only have access to bad screwdrivers. The increase in local sales is usually more than offset by a lack of exports. In the end, everyone is worse off.

      Say I'm a large automaker with higher overhead than my foreign competition because of worker safety laws and my contractual obligations to the various unions I work with. I'm damned well going to lobby the government to add tariffs to foreign cars to level the playing field. Should that "not be allowed to happen"?

      You can use your influence to force countries to comply to certain rules, but if you go to far, they will simply stop trading with you. So you must find a balance by allowing other countries (and the US itself) to compete in their own way without leeching (too much). Don't forget that there are things the US does that aren't considered fair by some other countries (subsidizing steel & farmers, allowing monopolies, having few holidays and long working hours).

      Say I'm a large US distributor of alcohol and I want to spend some money to make sure that my main competitor, marijuana, remains illegal. Should that "not be allowed to happen"?

      No. You shouldn't be allowed to bribe the politicians for your cause IMHO. In a democracy every man is supposed to have a vote, not every dollar. If the populace decides that marihuana should be legal, then it should be legal.

      Finally, if you're still supporting the implied-passive-voice "should not be allowed to happen", how about we take it out of passive voice. *By Who*?

      You think the UN, or maybe the US, should invade countries because they have different economic ideas than us?


      Geez, international politics does not have to include violence. I have already explained one mechanism by which a country can (be) punish(ed). The western world is powerful enough that we can force treaties like WIPO and TRIP upon the third world. All without invasions. Of course, citizens may also object to not having access to clawhammers (and not being able to freely sell their goods abroad). Hopefully many will be smarter than you.

      It's not immoral. It is economically unsound. And there's no force in the world with the moral authority to tell Panama (or anyone else) that they have to see things our way.

      The question whether something is moral or not is for an individual to make. You cannot decide for me what I or anyone else should consider (im)moral. If a country disagrees with something they can always stop trading with that country (South-Africa during Apartheid, Irak). That is economically unsound, we could probably sell a lot of weapons to Saddam. Of course, money isn't everything.

      You imply that this kind of thing "should not be allowed to happen" -- I say the free market "will not allow this to happen." There's no moral judgement to be made here. The free (or relatively free) market will speak, and that's that. No sense getting your panties in a twist. And you know what? The manner in which it does happen may just be educational to all of us.

      That's quite optimistic. How many people could benefit from medicinal marihuana, but aren't allowed to use it (instead having to resort to 'innocent' drugs such as opium)? Demand will indeed cause criminals to seize the opportunity, but a there are a lot of costs:
      - higher barriers
      - higher costs
      - more crime

      Blocked ports can of course be circumvented without resorting to crimes (you still have higher barriers and higher costs), but there is no reason why Panama can't outlaw VOIP. It might be the next step. What do the citizens of Panama do then?

      --

      The Drowned and the Saved - Primo Levi
    11. Re:I don't see how this is moral or legal.. by jridley · · Score: 3, Interesting

      thats just the way that capitalism 'works'

      No, this is an example of goverment interference in a capatalistic society. Perhaps it is correct to say that this is how elected (some might say corrupt) government (such as the US has) works.

      The capatalist thing to do is to let companies that cannot respond to new technologies and markets die a natural death while new companies take their place.

      Unfortunately this means that people will be displaced from jobs, and they must be willing to learn new things in order to be employable at new positions. People don't like this, they want to just stay doing the same old thing forever, so they get their elected officials to try to maintain the status quo.

      In the end it will result in stifling of new technologies and that country will ultimately pay a price.

    12. Re:I don't see how this is moral or legal.. by Alan+Shutko · · Score: 2

      It's simply pure capitalism. The government is just another service industry providing services to those who can afford it.

    13. Re:I don't see how this is moral or legal.. by banzai51 · · Score: 2, Insightful

      Except that a smaller government is more easily bought out and/or overwhelmed by much bigger businesses.

    14. Re:I don't see how this is moral or legal.. by FatRatBastard · · Score: 2

      I disagree. Large gov't leaves lots of areas to hide behind / lots of accountability to shirk. Who can hide malfeasence better, something the size of Enron or something the size of my company (6 people)?

      Odd (but I think somewhat applicable) analogy: A large, complex, ill-defined system has will have more security issues than a small, simple, well defined one.

      Anyway, if small gov't = ease of bribery then the Supreme Court would have been wearing Wal-Mart robes a long, long time ago.

  17. Re:But... But.... by DAldredge · · Score: 2, Funny

    I have sent an email to Al Gore. I will post the response from the creator as soon as I receive it. Then we all shall know the "true spirit of the internet".

  18. Unbelievable by Citizen+of+Earth · · Score: 2, Troll

    the government of Panama has decreed that 46 UDP ports be blocked by all Internet service providers.

    That's unbelievable!... that it happened in Panama before America.

    1. Re:Unbelievable by CrazyDuke · · Score: 2

      It's only because corps there have fewer polititions to bribe in order to buy a law.

      --
      Any sufficiently advanced influence is indistinguishable from control.
    2. Re:Unbelievable by PhxBlue · · Score: 2

      How is this a troll? With many of the same Congresscreatures that passed the DMCA, the COPA, and several other Internet-ignorant, Constitution-unfriendly laws, I too am surprised that our own nation's government didn't beat Panama to the punch, here.

      I'm sure it'll be snuck into one of next year's bills, though - as something totally unrelated, at that.

      --
      !#@%*)anks for hanging up the phone, dear.
  19. This isn't really all that different from what... by 3-State+Bit · · Score: 5, Interesting

    the U.S., as well as many other countries, already do, albeit in a different industry. When the U.S. says: "You, as a citizen, are not allowed to circumvent insuring your automobile, say by having infinity cash [sic] that you're willing to use to pay for any damages that you might inflict, but must go through a PRIVATE, government regulated insurance agency in order to use the public roads..."
    Except for satellite and other wireless communications, ALL VoIP in Panama (as elsewhere) goes through wires that sit on the Government's land (that would be everything). If I can't use a public road except by playing by the rules of regulated private companies, (even if I know of a cheaper alternative), why should Panamians be allowed to use data lines going through public land, except by playing by the rules of a regulated private company?

    Okay, that's the most contrived example I could think of. I don't think there's a closer equivalent -- some candidates were Edison (the electric company) - run public schools (look it up -- but you're not required to go to one, since you can homeschool) and private appraisals mandated in certain cases by the government.

    Anyway, uh, yeah, HOW DARE THEY.

  20. 1034-1035? by TheSHAD0W · · Score: 2

    1034, 1035, 2090, 2091 and 5000 -- aren't those all in the dynamic address range? Wouldn't blocking those ports cause sporadic communications failures in programs such as web browsers?

  21. What it will also kill.. by sakusha · · Score: 3, Interesting

    On the positive side, this should kill the Windows Messenger popup spams, which propagate over UDP ports.
    On the negative side, it will kill Quicktime, which needs UDP ports for negotiating a connection.

    1. Re:What it will also kill.. by sakusha · · Score: 2

      Oops, I misspoke. It will not kill QuickTime, it will kill QuickTime Streaming, which requires UDP ports to establish a connection. I currently use the Open Source Darwin Streaming Server, for streaming videos from my personal website. For you Apple bashers who whine that this isn't a bad thing, how would YOU feel if your favorite Open Source project was threatened by the political moves of a monopolistic foreign telco?

  22. In case site gets /.'ed by tim0thy · · Score: 5, Informative

    In an apparent attempt to stem telephone company revenue losses due to Internet telephony, the government of Panama has decreed that 46 UDP ports be blocked by all Internet service providers.

    The ports include ones that are commonly used for voice over IP as well as some that are used for other purposes, apparently with the idea that these, too, could be used to circumvent the POTS (plain old telephone system, a term of art) in making telephone calls.

    In the decree, the Panamanian government requires "that within 5 days of publication, all ISPs will block the 46 UDP ports used for VoIP and any other that could be used in the future (which could end up being all UDP ports)," according to a reporter and computer consultant there, and that "the ISPs will block in their firewall or main router and in all their Border routers that connect with other autonomous systems."

    This "unequivocally decrees that all routers, including those not carrying traffic from Panama, but that might be traversing Panama, have the 46 UDP ports blocked."

    The significance of the government action affects areas far beyond that nation. Due to its geographical location, numerous undersea cables connect in the country, making it a substantial hub for international IP traffic.

    Among the services that are to be disrupted are NetMeeting, Dialpad, and Net2phone, which labels itself "communication without borders," a claim which apparently will no longer be true if one of those borders is Panamanian or communication is between two countries whose IP traffic passes through Panama.

    The decree is apparently rooted in complaints by Cable & Wireless Panama (Motto: "If you're worried about your data, voice, or Internet service provider, we're here to help"), which says it is losing money due to users employing the Internet to make otherwise expensive internetional telephone calls -- calls that would otherwise be listed on Cable & Wireless bills.

    The UDP ports involved include: 1034, 1035, 2090, 2091, 5000, 6801, 6802, 6803, 9900, 9901, 12080, 12120, 12122, 22555, 26133, 30582, 35061, 38000, 38100, 38200, 47563, 48310, 51200, and 51201.

    The decree was published October 25.

    Among the services that employ some of those ports are "nlockmgr," the NFS lock manager responsible for rpc.statd and rpc.lockd, which in turn are responsible for crash recovery functions for locked files and for processing file locking requests, respectively; telnet; and numerous VoIP services.

    In addition to those who wish to save on their phone bills, the government order blocks the perfectly lawful use of those ports by businesses that have legitimate VoIP applications allowed in the country.

    There were reports late Sunday that Panamanian ISPs were planning a demonstration aimed at exhibiting their displeasure with the government action.

    1. Re:In case site gets /.'ed by Rich0 · · Score: 2

      Among the services that employ some of those ports are "nlockmgr," the NFS lock manager responsible for rpc.statd and rpc.lockd, which in turn are responsible for crash recovery functions for locked files and for processing file locking requests, respectively; telnet; and numerous VoIP services.

      How exactly does telnet use UDP? IANA-Engineer, but my understanding telnet was a TCP-only protocol (unless you count resolving the domain name).

  23. Possible reasons for this move? by uncleFester · · Score: 5, Interesting

    Out of simple curiosity, I plugged 'panama phone company' into Google.. after all, what could this little pissant country have in the way of phone companines? And what are the first two links to pop up?

    Privatization - Phone Company: and A Case of Privatization Gone Wrong: Panama's Wires Crossed. Perhaps this is the start of some revenue-generating stunt to pull some dumbass decision-maker's ass out of a fire somewhere?

    -fester (capt. conspiracy?)

    ps.. I'm sure Panamanians by and large dislike this as well.. the 'pissant' is directed at the governmental representation of Panama, which right now looks suspiciously like a boil on someone's ass.

    --
    -'fester
  24. Re:damn mexicans by Alex+Belits · · Score: 2

    The company that requested it is C&W Panama, a subsidiary of C&W, based in UK. Isn't UK the US' best friend?

    --
    Contrary to the popular belief, there indeed is no God.
  25. Re:It's ok - Panama sucks by rodgerd · · Score: 3, Insightful

    In the long run, violent overthrow of the government worked OK for the French, English, and the United States. It's more of a last resort, though.

  26. I got a better solution by bogie · · Score: 5, Insightful

    Adapt or die. There is no rule that states established businesses get to do business "the old" forever. If a better cheaper way of doing things comes along, oh well, tough cookies. There were once a lot of blacksmiths as well. So to the phone companies I say, Adapt or Die, better yet just die.

    --
    If you wanna get rich, you know that payback is a bitch
  27. Re:This isn't really all that different from what. by rc-flyer · · Score: 4, Informative

    Actually, you're wrong. If you have enough cash and can prove it (by posting a bond for example), in many states you can avoid purchasing insurance. Essentially, you are self-insuring yourself. Whether that is a smart thing to do is another question entirely.

    --
    -- Error: Cannot find file REALITY.SYS - Universe halted, please reboot!
  28. This is crazy. by fearincontrol · · Score: 2, Insightful

    This ranks up with the CBDTPA as the most absurd legislation of the twentieth century. There are so many loopholes around this law it's stupid, not to mention the fact that banning a port to try and stop any certain service is stupid -- as has been pointed out, it's not exactly amazingly difficult to change the port used by the program. *clap clap* I think Panama secretly elected GWB. This is exactly the kind of ignorant decision he's famous for.

  29. Panama assists security developers everywhere. by anto · · Score: 4, Informative

    People have been saying for years we need transparent encryption of internet connections (OK mabee I've been saying it) Once 'important' countries like Panama start playing routing games like this it becomes even more important.

    Such heavy handed actions might be just what projects like FreeSwan need to get more universal acceptance. That all being said does anyone honestly belive that panama will be able to block *all* UDP traffic, while they are at it is might be a good idea to block ICMP and TCP - both of which could potentially carry voice data as well.

    1. Re:Panama assists security developers everywhere. by GigsVT · · Score: 2, Interesting

      I say fuck em. Just drop all packets from panama netblocks. Once the people realize their Internet is shrinking fast, they will pressure their government to quit being such asses.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
  30. Another good example of corporatism by Anonymous Coward · · Score: 3, Insightful

    There is no money to be made in telecommunication in the long run if technology runs its course. Or at least it is going to gross millions instead of billions. In that situation even the remnants of the industry remaining today would largely have to collapse.

    The industry is too big and too rich to go down without a fight, in Panama this results in naively blatant intervention. In the US the telecom industry will probably pair up with the content industry to outlaw private private peer to peer broadband communication sooner or later, under the guise of security and copyright protection. Only a monopoly or a price fixed ogliopoly will be able to squeeze money out of people on the same scale as today for communications in the future ... with Bush's soft stance on monopolies the time is ripe to bring the US a couple of steps closer to corporatism, and after that the WTO and globalization can take it on a world tour, and the combined bribing power of the content and the telecommunication industry might just be the force which can accomplish it.

  31. Cable & Wireless of "Panama" by Augusto · · Score: 5, Interesting

    This is very embarassing, but not a surprise.

    This is yet another example of our British friends at Cable & Wireless adapting to the local culture of the country which they're sucking the blood out of. They obviously have quickly learned the Panamenian way of politics and have paid off all the necessary politicians, which can often be bought very cheap.

    Cable & Wireless is privatization gone totally wrong. The previous phone company was a government owned company called INTEL, and Cable & Wireless beat US GTE and took over the phone system of Panama. The results have been horrible.

    Local calls in Panama used to be like in the US, you paid your minimal fee and could talk all the minutes you wanted. Cable & Wireless brought the wonderful European model of paying for each minute for local calls.

    If that wasn't enough, they also charge you per minute (I think) for calls from a land line phone in your house to a cell phone. That is, you pay for calling a cell phone and the person on the cell phone pays too. I had to find this the hard way after making a few calls to some friends from my grandmothers house.

    So, people are fed up with them, and the internet savy are using Voice over IP a lot. I used to receive a lot of calls from a cousing over dialpad.com (when it was free). This was the ideal system to make a call to the US, dialpad was for US calls only, but the funny thing is that this worked great if you lived in another country.

    Here's a good article on the whole mess Cable & Wireless is creating;

    A Case of Privatization Gone Wrong -
    Panama's Wires Crossed

    --

    - sigs are for wimps.
    1. Re:Cable & Wireless of "Panama" by bastion_xx · · Score: 5, Interesting

      Cable & Worthless has done this in other portions of the Caribbean too. Basically they will land fiber of put up the satellite up/downlink infrastructure, but in turn, require a monopoly on all international communications (assuming there is a local telco provider). Normally, savvy governments will get a percentage of the profits. Or even more "esoteric" monetary "arrangements" like the Cayman government had in place a few years back.

      The good news is that the move towards packet based services (i.e., the Internet) has thrown a kink in their business model.

      In Bermuda, a local ISP started offering VoIP back in 2000 on a DS3 provisioned into the US. Per minute charges via C&W: $1.10/minute. VoIP: $0.40/minute. Quality? A fuckload better on average than C&W. Now that the ISP has enabled SS7 for true 1+ dialing, the other traditional carriers have had to reduce prices.

      Once the service was made available to the public, they were then threatened with termination of the DS3 by the submarine cable provider (not C&W, although they were in on trying to regulate out the use of VoIP except by the international carriers).

      It was even worse when C&W mandated no other fiber systems could be brought into a country. They could set pricing on voice and data cicuits to milk the subscribers. Back in 96' a DS1 (T1) from Bermuda to NYC ran $85K... a month. Now it's down to a reasonable $17-22K/month (rack rate).

      Sorry for the rant, but I had a bad week with C&W. Dropped a production frame circuit and when calling the Bermuda NOC I was told that it was a US problem and to call them (altough I contract and pay the Bermuda office). US had dropped our email addresses (all 5 of them) from the announcement emails they send out. Some good service for over $100K per year in circuits.

      Grrrrrrr.

    2. Re:Cable & Wireless of "Panama" by Megane · · Score: 2
      Cable & Worthless has done this in other portions of the Caribbean too.

      I think you misspelled "Clueless & Witless". Hope this helps!

      --
      #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
    3. Re:Cable & Wireless of "Panama" by Technician · · Score: 3, Interesting

      I lived in the Cayman Islands for 3 years and had to get used to the meter is running feeling on the phone. The Cayman Islands brags about being advanced and has the highest Fax machines per capita of any nation. It's the sad reality that voice mail hell and getting on hold is just a waste of money, so they just fax everything instead. The other thing not mentioned is 800 service is blocked also. A free call has a terrible long distance fee tacked on for the caller. Anything I bought with free phone support, wasn't.
      Unfortunately I lived there when Windows 95 came out. I got a copy in Miami (legal) and installed it on my machine. At the install, it couldn't find the CD drive or sound card after the first reboot. The 800 number was just too expensive at about 1.50 US per minute. I went back to Win 3.1 for the duration of my stay and installed 95 2 years later when I moved back and got real support. It would have been much more than the price of the software to spend a couple hours on a free 800 number on hold for tech support.

      --
      The truth shall set you free!
    4. Re:Cable & Wireless of "Panama" by Tim+C · · Score: 2

      What I'm wondering about is if C&W is going through this in the UK as well (several friends of mine have complained about the cost of calls there)

      [Disclaimer: I work for a wholly owned subsidiary of Cable and Wireless (a software house, nothing telco-related).]

      I doubt that your friends are customers of Cable and Wireless, unless they're running businesses, and even then it's fairly unlikely. C&W got out of the residential 'phone service (and cable TV) business about 2 years ago, selling its stake to NTL for a huge sum of money (I forget how much, but it was billions).

    5. Re:Cable & Wireless of "Panama" by radish · · Score: 2

      Why would an 800 number be free? You're not in the US. You know, if I buy an american product and try to call the 1-800 from the UK it's not free here either! Bastards!

      You know, you could have contacted the company in question and asked if they had any provision for customers in your locale.

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    6. Re:Cable & Wireless of "Panama" by radish · · Score: 2

      C & W really don't have a business in the UK. They used to, but NTL bought them out.

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    7. Re:Cable & Wireless of "Panama" by Augusto · · Score: 2

      Not sure about the degree of cell use in Panama, though it sounds like it is an option, though one C&W controls as well. >:(

      I don't know what the numbers are, but from my last visit to Panama (2000) one thing that got my attention was the amount of cell phones all over the place. So it seems to me from simple observation that cell phone usage is very high. Also, there's services to "rent" a cell phone while you are there, which is convenient if you are traveling.

      Why the local phone company even offers phone cards at the rates they charge these days is beyond me.

      Cable & Wireless spent a lot of money on fancy looking telephone boots in Panama, which where very neglected in the past. They also spent a lot of money on phone cards for these phones, they're actually useful. Not sure if they are much more expensive than before.

      --

      - sigs are for wimps.
    8. Re:Cable & Wireless of "Panama" by Augusto · · Score: 2

      > Why would an 800 number be free? You're not in the US. You know, if I buy an american product and try to call the 1-800 from the UK it's not free here either! Bastards!

      That's true, however he is correct that Cable & Wireless makes it so that you have to pay for local calls on a per minute basis. This is not how it used to be in Panama with INTEL and it's not a great model to suddenly implement in a country like Panama.

      > You know, you could have contacted the company in question and asked if they had any provision for customers in your locale.

      And they would have told him to go to hell, because since Cable & Wireless forces itself into a monopoly, they have no incentive to accomodate your needs.

      Why do you think the Panamenian government is blocking Voice over IP? Because they feel it's "unfair" to C&W or becase C&W is paying off the necessary people?

      --

      - sigs are for wimps.
    9. Re:Cable & Wireless of "Panama" by radish · · Score: 2

      The original post (and mine) were about the Caymans, not Panama. I agree, the actions of the Panama government seem suspect at best, and mad at worst.

      Oh and when I said "contact the company in question" I meant the company selling the product and providing the 800 service. Whilst 1-800 isn't free in the UK (as it's a US number) we have our own free phone numbers (actually 0800) so when a company sells something over here they provide UK based support on a UK number. I was merely pointing out that if said company sold their product in the Caymans they may have such an arrangement there, and if not, blame them not the telco.

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

  32. The more things change... by Doktor+Memory · · Score: 5, Informative

    ...the more they stay the same. The third-world telco monopolies have been fighting a similar battle against long distance "callback" companies for over five years now, and for the most part they've been losing badly. They've known for a while that VoIP services were the next big threat, but it doesn't look like they have any better idea how to deal with them.

    One detail that usually gets left out of these articles, though: the "local third world telco monopoly" is not in any way a homegrown Panamanian entity. No, the citizens of Panama, like most of their neighbors in the carribean, are getting royally screwed by our dear friends at Cable and Wireless.

    --

    News for Nerds. Stuff that Matters? Like hell.

  33. How much did the phone companies pay the gov? by eyefish · · Score: 2

    I bet this is really just an elaborate plan by the phone companies in panama. They probably brived a few lawmakers into passing the law, as is often the case in third world countries. However this is so exagerated that I wouln't be surprised if this doesn't last too long. I personally see this as a big disrespect to freedom, privacy, civil rights, common sense, innvation, and everything else good that can be fit in between.

    1. Re:How much did the phone companies pay the gov? by eyefish · · Score: 2

      Hey,

      I live in a third-world country, and I never said this doesn't happen in a country like the U.S.

      It happens in *every* country, but it happens much more often (and it is much easier to do) in a third-world country lika Panama.

  34. In other news... by Bytal · · Score: 3, Funny

    The government of the United States passed a new law prohibiting the manufacturing of internal combustion engines in order to protect the extensive investments of the horse-and-buggy industry against the encroachment of "automobiles". A new 50% tax increase is also planned on the steel and rubber industries as the products of these industries are used extensively in the manufacturing of "automobiles"

    1. Re:In other news... by g4dget · · Score: 5, Insightful

      The US did something worse: they subsidized inefficient transportation in the form of the personal automobile and the required infrastructure to support it. Politicians that must be considered corrupt dismantled public transportation around the country. The result have been urban sprawl and the breakdown of social networks, some of the longest commute times in the world, poor air quality, an unnecessary dependence on foreign oil, and enormous expenses for oil and cars.

  35. What next? by Multics · · Score: 2
    For an encore, I'll bet they decide that PI is just 3.14 because no one needs those pesky other digits...

    Indiana tried this 105 years ago... That will put Panama about the right technological place in time.

    -- Multics

  36. I'd like to think by Monkelectric · · Score: 2

    I'd like to think this couldn't happen here (in the USA)... but, I really think it could with p2p.

    --

    Religion is a gateway psychosis. -- Dave Foley

  37. Oh yeah, and the irony is... by Doktor+Memory · · Score: 3, Interesting

    ...that's the same Cable and Wireless, aka Exodus, where Slashdot currently hosts all of its servers.

    --

    News for Nerds. Stuff that Matters? Like hell.

    1. Re:Oh yeah, and the irony is... by bastion_xx · · Score: 2

      Yup, the exact same ones. Hereis a link to an example of C&W's actions in St. Kitts and Nevis (Caribbean).

      C&W still seems to have that old-school British colonial attitude towards the jurisdictions and business they get involved with. Sad part is they have made some good tech purchases, Exodus and the old MCI Internet being a couple examples.

  38. Age-Old Dilemma by limekiller4 · · Score: 2

    Ah. A technical solution to a social problem. I swear, the politicians never learn and never will.

    --
    My .02,
    Limekiller
  39. POTS? by Col.+Panic · · Score: 2

    So everyone will just blue box. Problem solved :/

  40. The IPSEC era draws ever-closer. by rayd75 · · Score: 2, Insightful

    This is exactly the sort of thing that I expect to push the adoption of IPSEC or another transport level encryption scheme; not the desire to prevent loss of personal information or financial data. Rather than the elimination of eavesdropping, the increased resistance to targeted filtering will be the "killer app" that encourages widespread use of on-by-default encryption by Joe User.

  41. innovate, or regulate? by Nmonic · · Score: 2, Interesting

    I've wondered this for some time now, and with such developments as VoIP and G3, why don't telco's increase audio fidelity?

    I think that if a telephone call could have the same bandwidth as (for example) a 22khz 16bit wav file, then people would feel better about using such archaic technology as the telephone. If 3G phones used more bandwidth for audio, rather than using some crappy lossy compression scheme, more people would think "hey, cool, my new cell phone sounds much better than my landline"

    in short, if you can't compete with the same ol' bag of tricks, improve your service so it's at least on par with the competition.

    Handicapping competing technologies is a silly way to innovate.

  42. New protocol by Skapare · · Score: 2

    So if a new protocol does the initial negotiation via TCP port 80, using HTTP to carry out that negotiation, which then switches to the agreed random UDP port, they'd have to block TCP port 80, or require all ISPs to proxy filter HTTP (assuming it was easy to detect inside HTTP), or block all of UDP (if they leave 53 open, use that).

    --
    now we need to go OSS in diesel cars
  43. Why does this surprise anybody? by Newer+Guy · · Score: 2

    I'm sure that the leader of Panama is either:

    1. Paid off by the phone company to do this.
    2. Owns the phone company either overtly or covertly.
    2. Is being paid off by some U.S. company.

    Poltics always gets in the way of progress.

  44. Almost true... by Jetson · · Score: 3, Insightful
    A new 50% tax increase is also planned on the steel and rubber industries as the products of these industries are used extensively in the manufacturing of "automobiles"

    As funny as you thought that was, it's painfully close to the truth. The U.S. government recently enacted a 38% duty on all soft-wood lumber imports from Canada in order to protect its own lumber industry. Now they expect Canada to supply raw logs for processing south of the border (not to mention cheap electricity with which to process it).

  45. Typical of Panama in general. by PrimeNumber · · Score: 5, Interesting

    I lived in the country in the Mid-90s (after Manuel).

    And it once again sounds like the corrupt workings of their ruling junta.

    Typical situations:

    Transito (traffic cops) targetting rich foreigners for some BS violation, so they could receive bribe money. It was so common, that my friends always planned on taking extra cash to pay corrupt traffic cops.

    The railroad system turned over by the US (at the time already "turned over" to the Panamanian govt) which in a few years had became totally non-operational due to local inept management.

    Many reliable stories of gov't for hire (much like the US) where the politicos where bought off, not by campaign contributions, but people bought by large amounts of cash for personal gain.

    All in all the ordinary people of Panama were friendly and had the attitude: oh well it happens, might as well be happy. (Papas e chulatas) Potatoes and bacon. oh well.

    Personally I am surprised the Canal still operates. But one thing most Americans don't realize is that a provision in the treaty stipulates the US can reclaim it if it becomes non-operational. That in my opinion, is the reason the canal hasn't followed the fate of everything else "turned over" and ruined by its corrupt govt.

    1. Re:Typical of Panama in general. by sabinm · · Score: 2

      Personally I am surprised the Canal still operates
      You've just summed up ten years of US ingorance in one statement. The canal has been under shared control since late eighties when US engineers, began training Panamanians in canal operations. Since 1995, the canal has been run by Panamanians in about 95% of the operations barring a little US oversight. The canal has run well without a hitch for over 6 yrs and there are still people who say "oh boy, i can't wait until panama sic 'those stupid uneducated panamanians' screw it up." What a joke! Panamanians are some of the most technologically adept people I know. It is not uncommon to walk out into the middle of the backwoods country and see someone with a P3 with a gig of ram running off of several car batteries. That's in a hut about 4x the size of your standard construction port-a-potty and the bathroom in a hole on the outside and a spigot for a kitchen. One reason for this is that panama has a DUTY FREE canal zone. That's right, no tarrifs, no taxes, no nada, if you know the right people to talk to. One of the shameless moves is that this is a false arguement there. Panama has about 3.5 million people, and about 2.5 of those live *outside* the city in provinces and out in the country. Most of those in the city are so poor that they don't have clean water, and those on the outside fare little better for living in the country. The one thing that they do have is semi reliable POTS because of the heavy investment of the US govt during it's military stint there. You have *maybe* 300,000 panamanians who have access to computers and out of those on a good estimate one third that can afford to purchase the equipment nessecary for a computer (say 250-300) for a 2-3 yr old computer and another 25-50 for the voip technology. so either the lines are very nastily set up, and C&W does not want to invest in more pipe, or there is an inordinate amount of businesses in Panama City using VOIP for the majority of the phone transactions. The problem is that *businesses are their major customers* and they do *not* want to alienate them--so they took a US approach to business--namely "we don't want to alienate our customers, so we must legislate and put the burden on the govt to enforce non-compliance of controversial company policies" this is *not* an instance of Junta govt in a far off jungle-land as most would like to believe, but simple politics as usual from a country that has learned a bit too much from the US govt. Don't believe me, take a look at the RIAA, that has criminalized the *facilitation* of recording music and not the recording of music itself or the software company that can sue you out of business because even though you paid for the right to use the software as you see fit with no implied warranty or use for any specific purpose, you don't have the right to sell a computer with that software on it without compensating said company. anyway, end rant. there are always more sides to an argument than most are willing to admit, but that kind of ignorance about the state of affairs in other countries just gets my goat

      --
      http://cincyboys.blogspot.com/ Everything Cincinnati. Including the word 'Finnih'
  46. Re:This isn't really all that different from what. by cornice · · Score: 2

    This is simply because there are too many people in the state of Ohio with 25 or more junkers in their lawn who also refuse to pay for auto insurance...

  47. Yay for enlightenmenned Panamanian democracy by fortinbras47 · · Score: 2
    It's nice when governments put the interests of their citizens on top.

    On a more economics note, efforts like these are generally doomed to failure, or to be very very expensive. If there is an economic inefficiency, there are ALWAYS financial incentives for some parties to remove or bypass the inefficiency. This is why monopolies eventually fall, smuggling of drugs is so costly to stop, and blocking a few UDP ports will be at best temporarily effective in blocking VOIP.

  48. Re:Your solution sucks by DavidTC · · Score: 2, Insightful
    That is completely idiotic. If everyone is using the phone company for internet access, how would the phone company go out of business?

    If everyone switched to VoIP, they'd just be using one phone connection, either DSL or analog modem, instead of two...which the phone company managed to survive on for decades. They may not like everyone switching back to one phone line, but I fail to see how it will kill them.

    VoIP affects long distance companies, not local companies. Local companies provide the last mile just fine. And long distance companies can just up and die, as far as I care. If they want to run the fiber, they can run the fiber, but that's all we need them for.

    Frankly, it's a much saner business model, everyone selling bandwidth to each other, instead of the wackass 'long distance' charges we pay to half a dozen different parties that don't have anything to do with the actual wires.

    --
    If corporations are people, aren't stockholders guilty of slavery?
  49. small picky point by zogger · · Score: 4, Informative

    --side issue here. You CAN do an indemnity personal bond for car insurance, just most people don't and it's little known about. It's also expensive, goes by state minimum liabilites, and you'd of course want more than those minimums any more with the cost of cars and people in the hospital, etc, but if you got it you can do it and keep your wealth unless it's needed by your proven negligence.

    Got a neighbor periodically goes to panama for his oil business stuff, he sez the government there is roughly equivalent to say chicago in corruption levels, ie, total top to bottom. I imagine them mucking with the internet only applies to peons, that if you are at least a semi connected fatcat and pay the correct bribes you can do whatever you want, but at that level you could afford long distance so the point is moot. Most (not al, generally speaking here of course) civil laws in regards to anything but fraud in it's various forms more or less exist to protect the already wealthy's status quo. No different here than in panama, not really.

    I'll give you an example I am running into locally here where I live. I'm in the market for a small piece of property to have a home on. My income level for this would be in the uber cheap range. Anywho, this county a few years ago decided on a minimun acreage size for new homes, 1.5 acres. Well, ok, fine and dandy..... trouble is, for the decades preceding this, they "allowed" smaller than that to be deeded up as lots and now exist in undeveloped abundance by the hundreds or thousands really, like 1.1 acre, etc. These lots are now useless except for growing weeds and trees, people are stuck with them now, no one wants to buy them, you can't do anything with them, but they are still taxed. This benefits the more recent richer arrivals who took the county over(lotta cash under the table money gets spread into country government is the popular notion) and don't want it to be farming/light manufacturing, they want it to be yet another yuppie retirement/second home vacation place.

    Poorer people are untermenschen here, you can WORK here, but they would rather you to live over real far away some other place and commute, please go home at quitting time, no riff raff. It sucks but that's another example of a civil statute enforced by their bureaucrats and hired badged mercenaries to benefit the more wealthy.

  50. IPSEC is the right choice for tunneling it. by billstewart · · Score: 5, Informative
    There are *lots* of things wrong with H.323, including its relationship to a bunch of baroque badly designed ISDN signalling protocols which don't look much like Internet approaches to problem-solving. (SIP is rather better-behaved.) One of the most critical problems is the lack of encryption, leaving the whole system open to eavesdroppers, with or without warrants. In this case, the obvious right choice is to use ipsec to tunnel the VOIP traffic, which takes care of C&W's anti-competitiveness as well as taking care of most wiretappers. (You can't stop all the wiretappers, because the telco side of the interface is still tappable, but it reduces many of the opportunities.)


    It's not perfect - Compressed RTP does a CSLIP-like elimination of most of the IP, UDP, and rTP overhead, but doesn't work over IPSEC or most other tunneling protocols.) That means bandwidth is pretty tight over 28.8-upstream dialup modems (especially if you don't always get full speed), but I'm not aware of any better tunneling solutions.
    It'd be nice to have some tradeoffs like putting more than one voice sample per IP packet, which is not so hot for quality but cuts the packet overhead in half, and the protocols *ought* to have encryption as a standard feature, so you don't need tunneling for the general case, but it's a good start.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  51. Hmmmm by sconeu · · Score: 2


    s/Panama/USA/g
    s/VoIP/P2P/g
    s/C&WPA/{MP,RI}AA/ g

    --
    General Relativity: Space-time tells matter where to go; Matter tells space-time what shape to be.
  52. parent post exhibits absurd & simplistic analy by fortinbras47 · · Score: 2
    Roads are generally referred to as a public good. They are expensive to build, and once built, it is very difficult to keep them clear of freeloaders. Therefore private interests are not likely to build roads (toll roads have not been financially viable), and road construction has become a responsibility of the state.

    It may be economically beneficial to build a road from point A to point B, but no private interest will do it because once the road is built, everyone can just skip around the tollboothes and the building company will never get paid.

    Historically speaking, when turnpikes first became more common in the early 18th century, they were mostly financed by private and local interests, despite the fact that road making companies nearly always had horrible returns on investment. The reason was that the economic benefits of the roads were so great that associations of merchants and individuals would band together and form road companies. Some joined for civic minded reasons, others out of self interest because roads would bring the town and themselves greater business. The infastructure of roads was gradually taken over by states, and with the advent of the personal automobile, began to become competitive with rail.

    Automobiles and trucks have vast advantages over rail for most uses. You can leave whenever you want and you can go wherever you want. The creation of the interstate highway system has broughten vast economic benefits. States can subsidize economically inefficient interests (eg. farm subsidies), but saying that road construction and the personal automobile is inefficient is just pure baloney.

    Governments as of late have thrown massive subsidies towards alternative energy sources, public transportation, electric cars, and the like. Saying that road construction is inefficient and subsidies are the only reason for the current dominance of the automobile is rather absurd.

  53. But this GPL'd internet phone isn't blocked.. by nadaou · · Score: 2, Informative

    Just a little plug for the GPL'd Free internet phone, Speak-Freely.

    It uses UDP ports 2074 - 2076. From the article these are not blocked.

    Works quite well (I've had better trans-pacific quality with it versus the expensive telephone connection [talking both connections to same party at the same time]). Loads of features, including VOX and PGP encryption. Very good help section.

    There's both a basic UNIX cli version (use the xspeakfree tcl/tk frontend in CONTRIB or sflaunch) & a fully developed windows version.

    http://speakfreely.org/

    (I'm just Happy User)

    It's in Debian as speak-freely, but the .deb is rather old.

    --
    ~.~
    I'm a peripheral visionary.
  54. Re:No UDP/TCP specific ports by cameldrv · · Score: 3, Informative

    You are incorrect. There is no port number in an IP header. TCP and UDP both have their source and destination ports as the first 4 bytes after the IP header, but ICMP, for example, does not have ports at all. Thus, the concept of a port is defined by the upper layer protocol and has no meaning at the IP level.

  55. Moore's Law for Beer and Telecoms by billstewart · · Score: 4, Interesting
    Two decades ago, our 1 MIPS Vax11/780 cost about $400K. Right now, the cost of a BogoMIPS is about a quarter, if you're buying PC-flavored motherboards. If you're buying DSPs, it's a lot cheaper than that. In the PC world, the market adapted somewhat by using MSBloatware and Gamez so that people need machines that are twice as fast every year or two, but you Evil Linux Weenies Attempting To Gain Total World Domination are busting the curve by letting people use their old machines for several years longer, and by encouraging people to use GNU/Emacs or at most HTML editors instead of Word2004. The business model for buggy whips looks pretty bad too.


    A decade or so ago, when Joe Nacchio was working for AT&T before he started Qwest, he gave us a talk at Bell Labs where he drew a curve on the screen that showed the market price of long-distance voice telephone minutes. It took a steep dive, settling down asymptotically toward zero; given the prices of the time, he was showing it going from a quarter to a dime to a nickel to a penny. What could we do about it? Well, the choices were adapt or die. Use technology to cut costs, and use lower prices (plus advertising) to get people to make more phone calls.

    Many countries' PTTs were abusing their monopoly positions by charging excessively non-cost-based prices for their service, ripping off their customers and damaging their overall economies by interfering with international communications and therefore international trade. In the past couple of years, they've been taken down not only by callback companies, but by wholesalers using VOIP technology to keep their costs much lower than the PTTs costs. Everybody wins from that, except the greedier PTTs, and most of them were using excess international prices to cross-subsidize local calling.

    What's the next step? What happens if VOIP drops costs to the equivalent of $0.001 per minute? The most likely big impact turns out not to be the costs, but the fact that you no longer need a gigantic expensive #4ESS telephone switch to route large numbers of calls - internet routing technology works quite well for that, with something DNS-like to help with end-user location. Unlike those of you who aren't in the telephony business, yes, we do care that our last several business models have gotten the chairs kicked out from under them, but the problem of proposing new business models for telcos is ours, not that of the people who are trying to make us obsolete.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  56. Panama vs Verizon Wireless by Veovis · · Score: 2, Funny



    As it was:

    Can you hear me now? Good!

    As it will be:

    Can you hear me now? Hello? Can you hear me? Hello?!?!

  57. Re:parent post exhibits absurd & simplistic an by Mac+Degger · · Score: 2

    For one, look at France; tollbooths do work, period.

    Secondly, you contradict yourself: you state that private concerns won't build roadsbecause there's no return on investment, then finish off by saying that road construction is efficient...

    All of which doesn't change the fact that personal transit is wastefull, inefficient and poluting. And it literally stinks.

    --
    -- Waht? Tehr's a preveiw buottn?
  58. Voice on Cable Modems by billstewart · · Score: 4, Insightful
    Most of the voice-over-cable-modem deployment isn't VOIP - it's analog 4kHz connections pulled off the analog side of the signal space, before anything digital gets done. These get connected to a traditional 5ESS or Nortel DMS phone switch, which was much easier organizationally for the telcos to implement quickly and scalably, without having to reinvent things like billing. It's theoretically possible to use the digital signalling on digital cable, but that's really the Mos Eisley of the telecom standards world - you'll never see a more wretched hive of scum, villainy, and creeping featurism. VOIP over the cable modem space will probably win out eventually - we'll see if the competitive impact of the AT&T Broadband sale to Comcast breaks some of the organizational barriers (plus a couple extra years of VOIP technology development and Moore's Law.)

    Two of the problems of VOIP over cable are service reliability and reliability during power failures. The easiest way to fix the latter is to integrate some cheap cellphones into the equipment. Service reliability's a bit harder - the economics of the cable TV business assume that you need enough technicians and trucks to take care of most failures, so customers are happy and you don't need to rebate their bills for downtime very often, but that fundamentally it's just television, and if it goes down for the weekend in bad weather, your customers can read a book or go watch videotapes until you can get it fixed.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  59. Re:No UDP/TCP specific ports by rusty0101 · · Score: 2, Informative

    Ah, so you are saying that the IP stack completely ignores bits 72-29, specified as "Protocol" and identifying the content that follows as any of TCP, UDP, icmp, sip, rfc1700, etc.

    While port 80 may be handling http traffic in either tcp or udp, you may have completely different applications using those same two ports. Apache may be using port 80 at the same time as tftp is using that port. As noted in another reply to you, IP itself does not care one bit about what port is going to get the data. It cares that there is a protocol stack that understands what IP hands it.

    Likewise filtering on firewalls and in access lists on routers specifies the protocol as well as the port being handled.

    If whomever you learned networking from told you that the protocol field of the IP header was unimportant and that all traffic to a port had to be of whatever type the application which opened that port to the IP stack expected, I would recomend you ask for your money back.

    -Rusty

    --
    You never know...
  60. You know what I'd do?!? by Kaz+Riprock · · Score: 2


    I'd call somebody up with my computer and complain!

    Oh....wait...

    --
    Mordor...a magical, mythical land where women are more rare than dragons--but where every man would rather find a dragon
  61. Capitalism vs. Free Markets by billstewart · · Score: 2
    Unfortunately, that's correct. Some capitalists really *are* the pure-hearted self-reliant free marketers of Randian fiction, but many other capitalists out there figure it's cheaper to buy politicians than new hardware.

    In the telephony business, we invented the concepts of "natural monopolies" and "universal service" as the hook to let TPC get monopolies over local telecom service, and instead of buying politicians with cold cash, we bought them with the concept that they were "doing good", and "encouraging development", and giving them the ability to hire their friends as telecom regulators. Well, that was a fun game for almost a hundred years, but technological change has made it easier for other people to get in the game, and as the computer industry and telecom industry have gotten closer together, the costs of doing business have come way down.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
    1. Re:Capitalism vs. Free Markets by SEE · · Score: 2

      but many other capitalists out there figure it's cheaper to buy politicians than new hardware.

      Did you ever read this "Randian fiction"? Buisnessmen manipulating governments for their own advantage are the primary bad guys in the first section of Atlas Shrugged, which is the only one of her books that deals with the character of capitalists.

    2. Re:Capitalism vs. Free Markets by Rich0 · · Score: 2

      I agree completely. Of course, the system which is rewarding questionable activity in this case is not capitalism - it is democracy. After all, those politicians are not in power because they sell laws - they are in power because idiots vote for whoever spends the most campaign money...

      Of course, I am not going to just spout out political theory - I'm going to offer you a concrete solution. Appoint me as benevolent dictator of the world, and I will promise to end all corruption. I will not be accountable to voters, and so I will have no incentive to accept campaign contributions as bribes. Besides, I'm a really nice guy - you should get to know me. And I promise that I won't reward questionable activity...

      Was there an alternative system you were thinking of which does not reward questionable activity? After all, we know that there are lots of utopian places to live out there with governments which experience zero corruption...

  62. Re:But... But.... by billstewart · · Score: 2
    The spirit of the telephone racket, on the other hand, thinks forbidding competition is the routine way of doing business, and "natural monopoly" theories were developed to justify and encourage that sort of misbehaviour.


    [ObLiteraryReference:] Everybody hates The Phone Company.

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  63. Re:parent post exhibits absurd & simplistic an by fortinbras47 · · Score: 2
    You don't understand.

    Let's say building a lighthouse off a rocky point stops ten ships from running aground on the shore each year, saving $1 million per incident for a total of $10 million. Let's say building the lighthouse costs $5 million. It's easy to see that building the lighthouse is a good idea. Unfortunately the lighthouse won't be built by a single private company because whoever builds it will NEVER get paid (and with these prices its cheaper for each individual shipper to let his/her ships run aground than build the lighthouse himself). Why? because there's no way to charge people for a good which they can just get for free. Once the lighthouse is built, no one can stop other boats from seeing the light. This is called a "non-excludable" good. You can't "exclude" other people from consuming it. Once it's built, you can't STOP other people (non-subscribers) from using it.

    The only way to build the lighthouse is if all the shippers band together and agree to jointly build the lighthouse. This is completely analogous to voters getting together and voting for canidates who are for road construction.

    Backing up my previous point, roads are also fairly non-excludable, in the early eighteenth century of America, federal law mandated that tollboothes for roads be a certain MINIMUM distance apart (around 30 miles). Whole companies /groups developped which made small bypasses around tollboothes. Tollboothes couldn't collect tolls on local residents moving short distances from one side of the toll to the other.

    Furthermore, there's NO WAY to put toll boothes on local roads. (You have a booth at the end of each driveway??)

    Your point is somewhat correct in that tolls sort of work on some large French highways (and they most definately work on bridges, where it's really easy to control the entrances and exits). I'm not really sure a French model where you have to stop every few miles and pay a toll is a really great thing though. It might be better to have everyone pay a little bit more in gas tax and not have tolls on freeways.

    I'm not saying that personal transportation doesn't pollute. I'm merely saying that personal transportation is NOT economically inefficient.

  64. Re:parent post exhibits absurd & simplistic an by g4dget · · Score: 2

    Roads are generally referred to as a public good.

    But they are not a "public good", they are something that only drivers want and need, yet everybody effectively has to pay for roads and other driving related costs. If we wanted to, it would be easy to make only drivers pay for driving-related costs: pay for large chunks of road construction, health care, military, and the legal system out of gasoline taxes.

    Automobiles and trucks have vast advantages over rail for most uses.

    Sadly, a lot of areas of the US are built in a way that you can't do without a car anymore. I cannot afford to live an area where I can walk to the post office or to a store. But that's not an "advantage".

    You can leave whenever you want

    Too bad that you can't arrive whenever you want, however, since travel times by car have become unpredictable in many places.

    and you can go wherever you want.

    Not really. There are plenty of places I can't easily go by car because there is no parking. And what's the point anyway? I spend 45 minutes in the car to go from one parking lot to another. I'd much rather have the goods and services I need around locally and spend less time in the car.

    The creation of the interstate highway system has broughten vast economic benefits.

    The same is true for public transportation: it creates jobs and makes the movement of goods and services more efficient.

    Governments as of late have thrown massive subsidies towards alternative energy sources, public transportation, electric cars, and the like.


    "Massive" relative to what? Compared to the automobile, all those subsidies are negligible. Hell, just the indirect health costs resulting from use of the automobile probably dwarf everything we spend on all those alternatives combined.

    Saying that road construction is inefficient
    and subsidies are the only reason for the current dominance of the automobile is rather absurd.

    I didn't say it was "the only reason". But without massive subsidies, direct and indirect, the personal automobile wouldn't have become widespread. Furthermore, people have no choice anymore: many parts of the country have been built and set up that people can't do without a car anymore. And people are forced to bear a lot of the costs of driving whether they own a car themselves or not. It's not surprising that everybody has a car under those conditions. I do as well--I could not afford not to. But you are fooling yourself if you think that that is a good way to live or economically efficient.
  65. Pretty effective I bet by Joe5678 · · Score: 2, Informative

    Sure there's dozens of ways to get around their port blocking, but I have a feeling it will have the effect they desire. Only a handful of people will have the knowledge and resources to circumvent their port blocking. In fact, the number is probably small enough that the government won't have to put in any more effort.

    Sad... but probably true.

  66. Re:Inefficient Transportation? by g4dget · · Score: 5, Interesting

    Then how do you suggest people that live in small towns get to work and shop if they do not have a personal automobile/roads? Mass transist does not work in a small town.

    I don't know whether you have lived in a small town. I have, in Europe. It took three minutes to walk to the supermarket, five minutes to walk to work, and three minutes to walk to the train station (which would take me directly to the airport and pretty much anywhere else). For short distance trips, I'd use a bicycle or the bus (fast and on-time).

    The quality of life there was unmatched by anything I have found in the Bay Area (where I live now), even though I made a fraction then of what I make now. The sad thing is that most Americans don't realize how poor the quality of life in America actually is. (In case you are wondering why I didn't stay there--it's because my friends, family, and job are here.)

    And some of those 'corrupt' politicians dismantled public transportation because it was/is a very large sinkhole for tax dollars.

    Cars are a much bigger "sinkhole" for tax dollars than public transportation. Even disregarding all the infrastructure costs, health costs and lost productivity from cars alone are enormous and dwarf anything spent on public transportation.

  67. Re:This isn't really all that different from what. by nomadic · · Score: 2

    say by having infinity cash [sic]

    Uhh...erk...

    You found a grammatical error in your own sentence, but rather than correct it you add a [sic]?

  68. Re:This isn't really all that different from what. by 3-State+Bit · · Score: 2

    You might be paying less /on average/ but bad scenarios are a lot worse. The reason we pay insurance companies more money than they give out is for the guarantee that we will never have to individually pay more than the average that each person puts in, (minus the surcharge).
    It's like the state lottery: sure, on average I'd rather keep my dollar than get 40 cents for it, but a dollar a week doesn't make any difference to me one way or another, whereas whoever wins the lottery gets a big increase in lifestyle, and that person COULD be me. I'm willing to pay 60 cents for the CHANCE to pool my 40 cents with the 40 cents of everyone else who plays.
    Likewise, if a business is about to fail miserably, it can try something really risky, that either will make it go bankrupt a few months earlier, or end up keeping it afloat.
    Risk management FREQUENTLY deals with worst-case scenarios as well as "expected return", ie, what you call average. That's why I'd rather walk 15 minutes and arrive exactly on time to an appointment than take the bus, for which I have to wait, and arrive on average 6 minutes earlier. (Because buses come every n minutes, but I don't know when the last one came.)

    Fun stuff.

  69. Sounds Like a Senator Richard Alston plan to me... by vandan · · Score: 2

    Are you sure this wasn't in Australia? The plan smacks of the intelligence and wisdom of our local minister for The Arts and Technology (he knows nothing of either).
    Why do governemnts protect dying, inefficient industries and hold back the growing, efficient ones? Is it always because of monetary 'incentives' from the old boys' club? I hope not, but I assume so.
    Panama, I congratulate you! You are idiots.

  70. I have a very long term solution by mark-t · · Score: 5, Interesting
    We can take this to its natural conclusion today...

    They want to block UDP ports that *can* be used for VOIP? Why not *make* 'em block all UDP and let them find out how screwed that actually leaves them? Wanna see a government backtrack on a previous decision really quick?

    Unless Panama wants to block all web browsing...

    Bear with me while I explain

    UDP is used for VOIP because TCP is a streaming protocol and as such isn't particularly useful for real-time data transmission -- as said by another poster elsewhere, it's preferable to just simply lose a packet every now and then rather than to have the connection pause suddenly while TCP handles congestion control.

    So... what I imagine is this: a system running VOIP listens to a randomly chosen UDP port rather than a specifically chosen one. The exact port to try to connect to is found by connecting to the system via the TCP port 80, and the VOIP system responds to the connection request letting the caller know which UDP port to actually use, and then the TCP connection is closed. The caller can then use the UDP port it was informed about. Since the system can be listening on ANY UDP port, possibly even one that would normally be used for some other well-known service, the government would have no choice but to create a ruling that would unilaterally block all UDP.

    Seriously... I think it would be close to hilarious to see what they would come up with to try to stop that.

    1. Re:I have a very long term solution by kcbrown · · Score: 2
      Seriously... I think it would be close to hilarious to see what they would come up with to try to stop that.

      What they would come up with is probably close to what many "ISP"s (that are owned by the media corps) in the U.S. would like to do to their individual ("peon") customers: block all inbound TCP connections and all inbound UDP packets, and only allow outbound TCP connections -- which will of course go through a transparent proxy.

      If you want to actually sit there and listen on a port, you have to buy the premium "server" service -- at a factor of 5 price increase.

      You can bet this is exactly what will happen in the U.S. when sufficient consolidation amongst the broadband providers occurs. I'm frankly somewhat surprised it hasn't happened already.

      --
      Use 'slashdot stuff' in the subject line in any email you send me if you want to get past the spam filter.
    2. Re:I have a very long term solution by Electrum · · Score: 2

      Take for example, SSH--port forwarding is possible both from the "server" and the "client" sides. All the client has to do is accept inbound connections across the SSH tunnel. This can even be configured so the "server" accepts incoming connections from third hosts, which are then forwarded to the client.

      Yes, but where are you going to tunnel to? The proxy server in the middle has to handle all the bandwidth of both connections. So now you must pay for both your local connection and your remote connection. And since the remote connection is likely on more expensive bandwidth than a typical home broadband connection, you might as well just ahead and pay "five times as much" for a broadband connection.

      Eventually, you have to pay for the bandwidth. You are correct about proxies. In order to allow any secure connections, all secure connections must be allowed. But that still doesn't solve the bandwidth issue. Who pays for the other end of the connection?

  71. Re:This isn't really all that different from what. by 3-State+Bit · · Score: 2

    No, I just like the sound of it. It's playful. My eleven year old brother said to me the sentence "This cheat gives you INFINITY LIFE!!!" I liked it. He said: "OOOOH! It evoluted!!" haha, because he thought that was the term, since the game said "evolution".
    I correct him, of course, but I like how playful some "wrong" things sound. I'm a human bean, after all, [sic :)], and not some grammatical machine.
    I'll call something non-sequiturial, if I think it doesn't follow, and use strong verbs with an -ed suffix, although I can't think of one that I tend to do with just now...
    I say that I like Boston enough to want to live in it for keeps, or that "You know what they say: there are only two ways to skin a cat: head to tail and tail to head", before adding, "But you know what? That's more than one way!", in a context where a normal person would just say "there's more than one way to skin a cat."
    Sometimes I go the other way, and use the original form of an expression that has come down to us differnetly, for example saying, "The proof of the pudding is in the eating" (rather than "the proof is in the pudding", taking pudding to mean desert, or the end), and when whereas a normal person might say "The best laid plans...", signifying the idiom "the best laid plans of mice and men", I'll quote the full phrase:
    "You know what they say:
    The best laid schemes o' mice an' men gang oft a-gley."
    With a heavy bobby burnsy accent.
    Same for shakespearean quotes common in the language, and, especially, Alexander Pope.
    Other times, I'll put a twist on it. If I don't want to talk about religion any more, I'll say:
    "Silly mortal! Don't question Gods's plan,
    The proper study of mankind is MAN."
    If someone tells me they like Chevre (goat's cheese), I will say,
    "You know the reason we even are able to milk cows at all today is because we have the practice from back when we were goatherds. It's like airplanes -- you couldn't have them if it weren't for the pioneers in dirigibles."
    But of course Pope put it more succinctly with:
    True ease in milking comes from milking goats,
    As he flies best who also ably floats.

    Anyway, that's all.
    The only reason I use [sic] when misquoting or misdeclining or misspelling purposefully is to stave off the hordes of ravenous pedants who lurk around slashdot and other places, much like yourself, actually.

    Sometimes I'll be tricky, and say something that the pedants find objectionable but really makes sense:
    "Hopefully, I say, we should be finished by tomorrow."
    (Because some old schoolers don't use hopefully except as an adverb; not as a sentence-modifyer.)

    Anyway, toodles.

  72. has happened elsewhere. by rplacd · · Score: 3, Informative

    Panama is, unfortunately, not the only country to try this. Pakistan, for example, has one telco company handling all outgoing internet traffic (telco monopoly until dec 31 2002). They blocked various VoIP sites *and* MSN voice chat last month.
    This was done unilaterally, with support from the supposedly independent telco regulation authority.
    People complained, ISPs took out ads in papers and made press releases about it, and it's now looking like the sites will be unblocked by the end of the week. Hopefully.

  73. Speak Freely lets you choose the port by MichaelCrawford · · Score: 2, Interesting
    Speak Freely lets you configure the port, I'm pretty sure. It has lots of other advantages over competing products such as choice of protocol and encoding scheme, and you can also use hard encryption.

    It used to be public domain. I think it's GPL now.

    A while back Captain Crunch made a little bit of history by placing his first VOIP call with Speak Freely - from India, where VOIP has long been illegal and I'm pretty sure the ports are supposed to be blocked.

    The way people can find what port to use for you is that you can have your name and IP address listed on a webserver. When people look you up they'll see your port. You'll have to instruct people you talk to to set the port, not just the IP address.

    --
    Request your free CD of my piano music.
  74. Re:This isn't really all that different from what. by 3-State+Bit · · Score: 2

    That's the long and short of it, yes.

  75. Re:parent post exhibits absurd & simplistic an by w3woody · · Score: 2

    But they are not a "public good", they are something that only drivers want and need, yet everybody effectively has to pay for roads and other driving related costs. If we wanted to, it would be easy to make only drivers pay for driving-related costs: pay for large chunks of road construction, health care, military, and the legal system out of gasoline taxes.

    A "public good" is not something which every stinking last citizen of that country needs, wants or uses. Libraries are also a public good dispite the fact that they are only useful to people who can read, who are able to travel there, and who want to use them.

    No, a "public good" is a thing which benefits the general economy but which is impossible to finance through normal capitalist means because the cost/reward linkage is not a direct one. In the same way, mass transit is a "public good" dispite the fact that the only people who can use mass transit are people who live near the stations. (Meaning the Federal dollars subsidizing the Amtrak raillines in New York--something which my tax dollars help to support--are unusable to me as I live in California.)

    Sadly, a lot of areas of the US are built in a way that you can't do without a car anymore. I cannot afford to live an area where I can walk to the post office or to a store. But that's not an "advantage".

    There has been a tremendous amount of research done into creating civic projects which minimize the need for transportation, or attempt to create transportation corridors which allow the use of mass transit in a more efficient manner.

    The problem is twofold. First, there are a lot of people, and by and large most of them don't want to live in a cramped little apartment building in a 200 floor skyrise for the sake of minimizing the horizontal distance they need to travel to work. Most people would rather live in houses and housing developments--and unfortunately, no matter how hard you try, when you get more than a few thousand houses together, you have a transportation problem that cannot be easily solved by busing or rail.

    Second, when you get more than a few thousand people in the same town, the combinatorial problem of N people (where N is large--such as Los Angeles, where you're pushing tens of millions), and M places they need to go (such as work, grocery store, etc), and you have a severe transportation problem. Los Angeles is trying to fight the problem by creating time and economic incentives for people to move to transportation hubs--that is, they're trying to fight the problem by severely re-engineering the way people live in Los Angeles. But as I said before, people don't want to live in high rises, they want to live in houses--to the point where they'd rather spend three hours a day in a car to go to work every day so they can have their house.

    Transportation is a bitch of a problem. Assuming that poeple rely on cars because of some sort of Detroit conspiracy is extremely simple minded.

    Too bad that you can't arrive whenever you want, however, since travel times by car have become unpredictable in many places.

    Actually, even in the most severe places, you can arrive by when you want if you just pay attention to the traffic reports and leave early enough. While "I'm sorry I'm late; bad traffic" is occassionally true, more often than not it's the grown up version of "my dog ate my homework."

    Not really. There are plenty of places I can't easily go by car because there is no parking. And what's the point anyway? I spend 45 minutes in the car to go from one parking lot to another. I'd much rather have the goods and services I need around locally and spend less time in the car.

    People's transportation uses tend to break down into three categories. There are personal errands (groceries, shopping), work, and recreational (going out to see a movie, etc.)

    Do not confuse them just to make a hairbrained point. If you are not buying your daily personal errand products and services locally, what are you thinking? Most people do most of their grocery shopping, dry cleaning, post office, etc. erands locally--you're a fool if you are driving an hour and a half each way to the grocery store.

    And work is work--for the most part, businesses are required to provide sufficient parking for their employees, so if you are having a hard time finding a place to park at work, you should takl to your employers, not just assume that there is some sort of conspiracy to make your life difficult. (Life *is* difficult, it doesn't need a conspiracy.)

    It's only the recreational areas where there is a problem with parking. But in general that's because most recreational areas (such as parks, movie theaters, etc) generally are not built with sufficient parking for peak usage, because it winds up being inefficient from a cost analysis standpoint. (Why build a four floor parking garage if 95% of the time, you will never use three of those floors?)

    And in that case, there really is no good solution--except perhaps not going out to see a movie during peak times.

    The same is true for public transportation: it creates jobs and makes the movement of goods and services more efficient.

    No it does not. Mass transportation of products is only efficient when you have a lot of product going from point A to point B. In fact, most of the United State's logistical infrastructure is now organized around that fact. That's why when you send a FedEx package to the next city over, it generally is flown into Memphis--because centralization of transportation corridors is more efficient than solving the O(N**2) problem of moving products directly to their destination.

    But once you get to an endpoint--such as the Port of Los Angeles, or the Ralphs Grocery Distribution Hub in Los Angeles, or whatever other central hub that is serviced by rail--you now must rely on surface street traffic and trucks, not mass transit or public transportation--to move the product to the end store.

    I didn't say it was "the only reason". But without massive subsidies, direct and indirect, the personal automobile wouldn't have become widespread.

    I don't believe so.

    The automobile solved two problems--which accounted for it's massive initial acceptance and for public pressure to create better roads. (Roads significanly predated cars by a few thousand years, by the way--even paved roads with lined beds were built by the Romans.)

    The first problem cars solved was the expense and general hassle of owning a horse. Descriptions of the streets of New York's horse maneur problem, especially during the summer, is rather shocking. New York spent a significant amount of resources just cleaning horse droppings on a daily basis, and the illnesses that arose from horse droppings, as well as the stench was shocking. And while we are now (and rightfully so) concerned with the public health problems of car pollution, horse pollution was a real and rather terrible problem.

    The second problem cars solved was that cars were more reliable and required less maintanance than horses. You didn't need to provide a stable and hay, or extra space. And that, along with Henry Ford's pricing efforts to bring the price of mass produced cars down to a reasonable level, allowed private individuals for the first time access at any form of private transportation whatsoever.

    But you are fooling yourself if you think that that is a good way to live or economically efficient.

    The most "economically efficient" way for people to live is in massive studio apartment highrises clustered in tight little clusters around mass transportation corridors.

    But, with the exception of Manhattan, people don't want to live in tiny little fishbowl cages stacked a hundred floors high. They would rather live in their own house on a 1/4 acre lot in the suburbs--and once you start taking people's desires for space and elbow room into account, transportation goes from being a relatively simple exercise of moving people around from a small number of hubs to an O(n**2) problem of figuring out how to allow a person to efficiently go from just about anywhere in a several hundred square mile area to just about anywhere else in a several hundred square mile area.

    And that's hard.

    People do not want to live in an "economically efficient manner"--taken to the extreme, that would mean that people would wear all the same clothing and eat algae-based paste that wouldn't need to be moved in refrigerated trucks to the grocery store. Instead, people have certain desires (such as a nice house in the suburbs on a quiet street, or unique furnature and decorations, or to go to a movie and a quaint little restaurant in the next town) which makes transportation issues a royal pain in the ass.

    Is it a good way to live? I dunno. But I can't see eliminating choices from people's lives in the name of making something economically efficient--that's absurd. And backwards: the question is not what is the most economically efficient solution, but what is the most economically efficient way to give people what they want--including that house in the suburbs which makes transportation by anything other than some form of powered motorized vehicle impractical.

  76. Artificially Jacked Up Phone Prices by SailorBob · · Score: 2, Interesting
    This all reminds me of the situation here in Israel a few years ago. Prior to '97 Bezeq, a government owned telco, had a monopoly on all communications. Calls to the USA cost $1.50 a minute and we were charged absurdly high local and inter-city call rates. Calling Tel-Aviv from Jerusalem was something like $0.40 per minute. Then the Netanyahu government introduced two new privately held companies in the international calling market. Over night prices for calling the USA dropped to $0.20 a minute. There was a period of about a month when it was cheaper to call the USA than to call inside the country! In addition we now have cheap local and inter-city calls throughout the county ($0.025 during the day and $0.005 at night), since Bezeq is scared shitless of having competition introduced in the local call market as well.

    Just goes to show that a properly regulated free market is best! And of course that a poorly regulated free market, like in Panama and a lot of other places, is worse than a government owned monopoly.

    --

    Woopty Doo Basil, what does it all mean?!

  77. Re:parent post exhibits absurd & simplistic an by g4dget · · Score: 2

    No, a "public good" is a thing which benefits the general economy but which is impossible to finance through normal capitalist means because the cost/reward linkage is not a direct one.

    Indeed, it is. And my point is that roads and other car-related infrastructure do not benefit the general economy relative to other choices that we have, and that it would be possible to finance them through "normal capitalist means". Hence, they aren't a "public good".

    Transportation is a bitch of a problem. Assuming that poeple rely on cars because of some sort of Detroit conspiracy is extremely simple minded.


    I'm not "assuming" anything. I have lived in places where public transportation works. Transportation in the US just sucks in comparison, and it really decreases quality of life greatly.

    Most people do most of their grocery shopping, dry cleaning, post office, etc. erands locally--you're a fool if you are driving an hour and a half each way to the grocery store.

    Who cares about "locally"? The question is: is it walkable or reachable by public transportation, and it isn't. Working in high-tech, there are almost no places in the US where I could move to and walk to work and do shopping on foot.

    people don't want to live in tiny little fishbowl cages stacked a hundred floors high.

    Housing prices in modern cities prove you wrong: the prices of condominiums in Manhattan, San Francisco, and Boston show that those places are highly desirable places to live. The same is true for places like downtown Los Gatos and Palo Alto. People like to live in communities where they can walk places and use public transportation. Also, there is nothing "tiny" about condominiums.

    But I can't see eliminating choices from people's lives in the name of making something economically efficient

    But it's not a choice: in the US, I effectively don't have the choice not to use a car. There is little usable public transportation, schedules suck, and many important places, you can't get to other than by car. And if I gave up my car, I would still be forced to subsidize driving-related costs with more money annually than I spend on my car. Furthermore, many of the direct costs of owning a car are fixed: once you buy it, you might as well use it becaues the incremental cost is small compared to the sunk costs. That is what keeps the automobile around.

    If people paid for the actual cost of driving on a per-use basis, just like they do for public transportation, and if a decent system of public transporation were deployed in the US so that we actually had a choice, few people would use cars on a regular basis because it just doesn't make sense. Give people the choice and they will take it.

    Is it a good way to live? I dunno.

    Well, I do, because I have actually lived in places where public transportation works, and let me tell you, it's great. A good system of public transportation together with good urban planning doesn't mean communism, it doesn't mean that you never drive, it doesn't mean living in tiny boxes, it just means that most people can do most things without being forced to use a car on a regular basis.

  78. Blocking VoIP does have one good side effect by Viol8 · · Score: 2, Insightful

    VoIP uses a LARGE amount of bandwidth. If these and similar sorts of services are disabled then bandwidth will be freed for other uses. Ok , its only a small compensation but nevertheless...

  79. Re:parent post exhibits absurd & simplistic an by sql*kitten · · Score: 2
    But they are not a "public good", they are something that only drivers want and need, yet everybody effectively has to pay for roads and other driving related costs.

    How amusing. I take it you've never bought anything from a store? How do you suppose it got there, hmmm?

    Rail works if you have:
    • large amounts of stuff
    • that you need to move in relatively straight lines
    • between predefined points
    • on a regular schedule
    • without great urgency

    Fortunately, lots of people do have such stuff, or even are such stuff themselves, but over short distances between many points with arbitrary journey start times and routes, mass transit systems are the wrong paradigm.

    Sadly, a lot of areas of the US are built in a way that you can't do without a car anymore. I cannot afford to live an area where I can walk to the post office or to a store. But that's not an "advantage".

    Sure you can - but you can't expect the benefits of big-city living in a small community. There are plenty of small towns in the US, where people say hello to each other in the streets and the waitress in the diner remembers your name.

    But you cannot expect the world to adapt itself to your personal preferences. Either you live in a sprawling metropolis and have access to all it offers, or you live in a small town and adopt the lifestyle. Either way, you make your own choices.
  80. IRC steals AT&T's money! by Anarchofascist · · Score: 2

    Death to IRC, the bane of the long distance service provider! IRC is stealing the money that people would normally have to pay for 24-hour-a-day party-line conversations between twenty or more people! Billyuns of dollars are being lost, and are probably being used to fund terrorism!

    --
    Once more unto the breach, dear friends, once more, Or close the wall up with our American dead!
  81. Email by barry_williams · · Score: 2, Funny

    In response, the Post Office has also decreed that the protocols POP3, SMTP and IMAP should also be banned in an attempt to win back loss revenue.

    1. Re:Email by t_allardyce · · Score: 2

      lol you forget - the telephone stole business from the postal services.

      --
      This comment does not represent the views or opinions of the user.
  82. Wrong approach to a non-problem by z_gringo · · Score: 3, Interesting

    Although John Dvorak was speaking about copyright law when he said this, It still sounds appropriate:

    What's happened, and the point I keep trying to make, is that technology has changed the economics of these industries.

    This is indeed true of teh VOIP scene. What a pathetic lack of understanding of the technology the Panamanian governement has displayed. Many of those ports are just as easily used by many apps that they definately don't want to ban. Exchange Sever is one example, but there are many more.

    --
    -- -- Warning. Do not stare directly at the sun.
  83. um, the story is about Panama ... by cascadingstylesheet · · Score: 2

    Billyuns of dollars are being lost, and are probably being used to fund terrorism!

    Er, the story is about Panama, isn't it? Please try to keep /. reflexive US-bashing in check. Thank you ;)

    1. Re:um, the story is about Panama ... by Anarchofascist · · Score: 2, Insightful

      I said, in part:
      Billyuns of dollars are being lost, and are probably being used to fund terrorism!

      "cascadingstylesheet" reflexively responded:
      Er, the story is about Panama, isn't it? Please try to keep /. reflexive US-bashing in check.

      Er, er, er, indeed. That's some serious crack you're smoking, friend, where can I get some?

      I was not US bashing, I was corporate luddism bashing. Corporate sector losing money due to new technology => solution => buy new laws to outlaw new technology. How to peddle the new laws to the public? The way it's done over here in Europe by the entertainment industry is to put an anti-piracy message at the start of videos saying that piracy funds terrorism.

      Just because you have stupidity in the US, don't assume that someone attacking stupidity is attacking the US.

      --
      Once more unto the breach, dear friends, once more, Or close the wall up with our American dead!
  84. the Bay area? by cascadingstylesheet · · Score: 2

    The quality of life there was unmatched by anything I have found in the Bay Area (where I live now), even though I made a fraction then of what I make now. The sad thing is that most Americans don't realize how poor the quality of life in America actually is. (In case you are wondering why I didn't stay there--it's because my friends, family, and job are here.)

    I just don't know what to say about the intellectual capacity of someone who judges the quality of life in the US by looking at the Bay area.

    If you don't like the Bay area, why don't you check out the other 99.9999% of the country?

    1. Re:the Bay area? by g4dget · · Score: 2
      If you don't like the Bay area, why don't you check out the other 99.9999% of the country?

      I actually have lived and traveled all over the US. I just happen to think that the Bay Area is still one of the nicer places.

      I just don't know what to say about the intellectual capacity of someone who judges the quality of life in the US by looking at the Bay area.

      Perhaps you should just stop jumping to conclusions.

  85. "Fobbit Fone"? Could you provide a link? by Futurepower(R) · · Score: 2

    I could not find "Fobbit Fone". Could you provide a link?

    1. Re:"Fobbit Fone"? Could you provide a link? by Mister+Transistor · · Score: 2

      Their website is www.fobbit.com, but I fear it may be slashdotted... I just tried to link to it and got a timeout - they might be down or just drowning :)

      --
      -- You are in a maze of little, twisty passages, all different... --
  86. The PTTs are their own worst enemies by swb · · Score: 2

    You're assuming that the telcos are part of a very simple market mechanism and that VoIP users are somehow cheating the system.

    Much of the cost of international calls isn't the bandwidth, but the overseas "termination charges" that carriers get to charge each other to terminate calls on their networks.

    Which gets at your most important assumption, that Internet users are "stealing" bandwidth on long-haul links. The internet users have to be self-funded, including out of country bandwidth, otherwise the providers wouldn't be in business.

    The subsidy that's probably happening is that the local phone company is probably funding 75% of its operations based on international termination fees and access to overseas carriers. Panama being Panama, you can imagine that about half the people don't even pay for phone service (steal it, government giveaways, etc), and the half that do pay probably pay some ridiculously cross-subsidized amount.

    What needs to happen is that the Panama PTT needs to right its economics. The local phone network (ie, calls made end-end inside Panama) need to be wholly self-funding, and NOT reliant on international access & settlements. International calling needs to pay for international calling ONLY.

  87. Re:Inefficient Transportation? by DAldredge · · Score: 2

    I currently live in a small ( 75,000 pop towns.

    I rather enjoy my quality of life, what am I missing?

    One last thing, please don't judge the rest of the USA by how CA does things

  88. Re:SSH by Junta · · Score: 2

    Too bad udp ports aren't forwarded by ssh....

    The real solution, of course, would be something like IPSec....

    --
    XML is like violence. If it doesn't solve the problem, use more.
  89. Ha! by mattr · · Score: 2

    Silly Rabbit, Trix are for KIDS!

  90. Re:Inefficient Transportation? by g4dget · · Score: 2

    I currently live in a small ( 75,000 pop towns. I rather enjoy my quality of life, what am I missing?

    Well, there are all different kinds of small towns, and different things make different people happy. Here we were talking about transportation. How much time do you spend in the car? How often do you use your car? How long does it take you to get to the airport?

    Overall, chances are good that you spend much more time driving and traveling and have much less selection in terms of good food, cultural events, and recreational activities in your town than many comparable small towns in Europe.

    One last thing, please don't judge the rest of the USA by how CA does things

    What a silly comment. I'm not an outsider "judging" the US, this is my home. And among the many places in the US I have lived and seen, I think California is one of the nicer places. It's just that I know that many nuisances and problems that others take for granted would be avoidable if we changed our approach to urban planning and transportation.

  91. Re:OH, MY EYEEEES!!!!!!!! by The+Original+Yama · · Score: 2

    Yes, I've had that before. I like double-meanings (especially when they involve pr0n), so I decided to keep it that way :)

  92. Re:Inefficient Transportation? by Alsee · · Score: 2

    It took three minutes to walk to the supermarket

    I checked several google results and the accepted average walking speed is about 3mph or 5kph. That means a 3 minute walk is 0.15 mile or 0.25 Km to the supermarket. In order for that to be true for everyone supermarkets could be separated bu no more than double that distance. That means the supermarkets are 0.3 miles or 0.5 Km apart. Looking at it 2-dimentionally that actually measures the DIAGONAL spacing if they are in a grid. That means the grid spacing is about .2 Mi or .35 km. That's 22 supermarkets per square mile, or 8 supermarkets per square Km. If you try to use a hex grid rather than a square grid the results are 34 per sqare mile or 12 per square Km.

    You also neglect the issue of hauling the supermarket shopping home. I guess the load wouldn't be bad if you're shopping for 1 or 2 people and make a trip every 2 or 3 days, but the load is unmanageable on foot if you're shopping for 3 or 4 people and make 1 trip per week. Making one round trip by car is a lot faster and easier than 3 round trips by foot.

    -

    --
    - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  93. This seems familiar... by olympus_coder · · Score: 2, Insightful

    I know! It is exactly what the RIAA and MPAA are doing:

    1) New technology comes along and obsoletes a buissness model
    2) Old buisness model uses power to by law outlawing new, better technology, rather than adapt

    Seems reasonalbe to me.

    The government of Panama is just a little less capable than the US. The US goverment would have made it illegal to discuss which port any service was on including in research paper. :/

    --
    Spell check? Why bother. That is what grammer/spelling Nazi freaks who waiste band width posting "spell right" are for.
  94. But VOIP from Panama sucks... by coljac · · Score: 2

    Banning VOIP ports is silly, not just because controlling the internet this way is a bad idea, it's because the quality of internet service over there is so bad that VOIP is almost unworkable anyway. Or at least, that's what I've discovered, being called by my father-in-law from Panama using net2phone. "Hello? Hello? Hey, it must be your dad calling, I can't hear anything."

    --
    Everyone knows that damage is done to the soul by bad motion pictures. -Pope Pius XI
  95. Re:This isn't really all that different from what. by schon · · Score: 2

    , as well as many other countries, already do, albeit in a different industry

    No, acutally it's pretty different.

    If you don't insure your car, you're not allowed to drive on public roads. Yes, a third party makes money, but they actually perform a service (and, as others have pointed out, you're wrong in the fact that you can't escape it.)

    Now, if the government mandated which insurance company you had to use, or took a percentage of the profits from other insurance companies and gave it to their preferred one, then there might be some sort of similarity..

    As soon as that happens, come back and post a response.

  96. Re:Inefficient Transportation? by jschrod · · Score: 2, Interesting
    Yes, in the small German town I live in (ca. 8000 inhabitants) there are as many supermarkets.

    But what's much more important: There are butchers with high-quality meat and sausages (self-made, not those that just resell stuff), family-run bakeries that have a wide variety of bread, shops with daily fresh fruits and vegetables from all over Europe, etc. Hope you get it.

    Granted there are European areas where the US mall concept is now prevalent, too - but IMNSHO it's much easier to find a small town with a more-than-decent living standard in Europe than in the US. Of course, it depends on your definition of "living standard."

    E.g., I don't really think it's a big problem that most of our shops (as I've said, family-run) close around 7pm. As long as the bars stay open... I have been to so many small US towns where it was impossible to get a drink after one's dinner - but where one could buy T-shirts 24x7. And all the time, for me, at 11pm it was more important to have a drink with friends than being able to buy T-shirts... ;-)

    --

    Joachim

    People don't write Manifestos any more -- what's going on in this world? [Frank Zappa]

  97. Only 65490 to go.. by Teun · · Score: 2
    Only 65490 to go..

    I repeat myself..

    --
    "The likes of Facebook and WhatsApp are free to those whose privacy is of zero value."
  98. Re:Inefficient Transportation? by g4dget · · Score: 2

    That's 22 supermarkets per square mile, or 8 supermarkets per square Km.

    Well, gosh, some people may have had to walk 10 or 20 minutes or walked to a neighborhood store instead of a supermarket. But, yes, the density of stores in European towns seems, in general, much higher. Unfortunately, large shopping malls and supermarkets have started to creep in.

    You also neglect the issue of hauling the supermarket shopping home. I guess the load wouldn't be bad if you're shopping for 1 or 2 people and make a trip every 2 or 3 days, but the load is unmanageable on foot if you're shopping for 3 or 4 people

    There are several solutions. Yes, one is to go shopping more frequently (you get fresher produce as well). Some people use a folding grocery cart. Some people go by car every now and then for big items but still do most of their shopping on foot. The point is: you aren't forced to use the car--you have options.

  99. Re:This isn't really all that different from what. by BitterOak · · Score: 2
    Actually, you're wrong. If you have enough cash and can prove it (by posting a bond for example), in many states you can avoid purchasing insurance.

    True. In fact, many large cab companies are self-insured. They are distributing the risk over a large fleet of vehicles, so in the long run they come out ahead, even if there are a few nasty accidents.

    --
    If I can be modded down for being a troll, can I be modded up for being an orc, or a balrog?