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."

453 comments

  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 fwankypoo · · Score: 1

      not very hard at all

      --
      The time of day is 29:33.
    2. 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...
    3. 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...

    4. 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... --
    5. 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.
    6. 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
    7. Re:Different Ports by Anonymous Coward · · Score: 0

      Unfortunatnely, UDP is rarely used over WAN links. most of hte protocols you mentioned (DHCP, NTP, TFTP, NETBIOS, SNMP, HSRP, etc.) are rarely used over long distance links, and if they are, they are done through the use of dedicated circuits, something that this block will do nothing to prevent.

      This block will only affect those people using commercial ISP services in Panama.

    8. 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

    9. 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.

    10. Re:Different Ports by Anonymous Coward · · Score: 0
      Unfortunatnely, UDP is rarely used over WAN links.

      So I guess you've never heard of DNS...

    11. 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.
    12. 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
    13. Re:Different Ports by kraksmoka · · Score: 1

      amen brother! truth.

      --
      "You never want a serious crisis to go to waste." - Rahm Emanuel
    14. Re:Different Ports by pxpt · · Score: 1

      Sigh, I wish ssh would port forward UDP as well as TCP...

    15. Re:Different Ports by Anonymous Coward · · Score: 1, Interesting

      In other news, Panama sees increased use of Linux VPN gateways and WindowsXP's builtin IPSec stack, which uses protocol 50 and 51 and UDP port 500 for standardized encrypted communication, transforming all information about application ports into seemingly random static.

    16. Re:Different Ports by jjackson · · Score: 1

      Blocking UDP would not be a realistic option as DNS runs on port 53/UDP. Blocking this port/proto combination would effectively bring the Internet connectivity to a stand still.

      Even though most resolver clients will attempt to fall back to 53/tcp for DNS, it is usually after a lengthy time-out and not all DNS implementations support the tcp fallback option.

    17. Re:Different Ports by yesod · · Score: 1


      hsrp is a layer-2 protocol - so won't be affected at all.

    18. Re:Different Ports by Anonymous Coward · · Score: 0

      somebody mod parent up, pls. insightful would be good.

      thx.

    19. Re:Different Ports by GrassyKnowl · · Score: 0

      The solution is for the people of Panama to overthrow their government at the next elections.

    20. 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.

    21. 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!
    22. 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.

    23. 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.

    24. Re:Different Ports by Anonymous Coward · · Score: 0

      Your initial reply didn't come off as pretentious to you?

    25. Re:Different Ports by Anonymous Coward · · Score: 0

      That's precisely what the parent said. P'raps you misunderstood. Read it again.

    26. Re:Different Ports by Datoyminaytah · · Score: 1
      > ...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.

      Um, not exactly. Maybe you should review how TCP works. Windowing, etc.

      --
      assert(birth_date<time-86400)
    27. 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.

    28. Re:Different Ports by Anonymous Coward · · Score: 0

      Remember they are blocking UDP, not TCP ports -- changing to TCP port 80 would add way too much overhead for VoIP. Changing to UDP port 80 would work, but this is also easily distinguishable from "legitimate" traffic (HTTP, FTP, etc). That said, however, IANA does list UDP 80 as a valid WWW port, though, so that fact alone could be the rock in the gov'ts shoe.

    29. 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!
    30. 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

    31. 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.
    32. 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?
    33. Re:Different Ports by Anonymous Coward · · Score: 0

      Not likely. Less than 2% of the people in Panama have access to the internet, and even fewer know about or use VoIP programs.

      The rest don't give a damn whether VoIP is blocked.

    34. 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?
    35. Re:Different Ports by NomNet · · Score: 1
      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.)

      Er, yes it does. You can't hold a conversation with "lag" !

      The data needs to get there now, or not at all.

      Precisely. This is a completely opposite viewpoint to the first statement you just made !!!!

      It's okay to have a quarter-second drop in a phone call.

      No it's not ! Imagine two people trying to hold a conversation. Both their voices randomly go silent for 1/4 second periods....

    36. Re:Different Ports by drkmstr · · Score: 1

      It shouldn't be that difficult. But believe me, this is the first time I feel embarrased to admit I'm from Panamá. I can't believe the stupidity of the goverment.

    37. 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 bobdole34 · · Score: 1

      No you didn't read the article.
      Not the USPS, the PPS.

      -s

      6th post.

      --
      "Failure of Windows operating systems is extremely rare. If it happens, it is usually due to operating system file c
    2. Re:This is ridiculous by SargeZT · · Score: 1

      I belive it was a joke, but I could be mistaken. Yes, I understand it is in panama, but if I said PPS, who would understand it?

      --
      And why did you staple the trout to the RAM?
    3. 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.

    4. Re:This is ridiculous by Qender · · Score: 1

      You could have said just "post office" though. Then it would have been both correct and understandable.

    5. Re:This is ridiculous by Anonymous Coward · · Score: 0

      6th asshead

    6. Re:This is ridiculous by bobdole34 · · Score: 1

      Coward in deed.

      --
      "Failure of Windows operating systems is extremely rare. If it happens, it is usually due to operating system file c
    7. Re:This is ridiculous by Anonymous Coward · · Score: 0
      Jennifer Lopez = "JLo" (pron: "Jay-Low"). Bill Gates = "BGa" (pron: "Be-Gay")

      How do you get 'gay' from 'Ga'?????

      Surely it would be pronounced "Be-Jar" (beat 'cha)

    8. 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.

    9. Re:This is ridiculous by Oscar26 · · Score: 1

      Don't forget farm subsidies or the airline bailout.

    10. Re:This is ridiculous by Anonymous Coward · · Score: 0
      How do you get 'gay' from 'Ga'?????
      I don't know, but I bet there are a couple of guys from Georgia setting up a contract on Original Y.'s head.
    11. Re:This is ridiculous by kasperd · · Score: 1

      if I said PPS, who would understand it?

      I would not, btw what is USPS?

      --

      Do you care about the security of your wireless mouse?
  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 SargeZT · · Score: 1

      News Flash, All IP Addresses except for the Panama Canal's Official Website, has been blocked. Users are trying to coordinate a DDOS Attack on the Panamanian Government, but cannot get a ping from the servers, except for the Panamanian Canal.

      --
      And why did you staple the trout to the RAM?
    3. 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.
    4. 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.

    5. Re:They will need to also block every other port. by RuneB · · Score: 1
      Careful now, don't give people ideas. Someone could pay Panama to block all ports commonly used for file sharing, and maybe some TCP ports too!

      Rather troubling that this new decree apparently also applies to any traffic that just happens to go through Panama in the physical world. How critical is Panama, anyway; and how easy is it to route around Panama?

      --
      dtach - A tiny program that emulates the detach feat
    6. Re:They will need to also block every other port. by John+Carmac. · · Score: 1


      I do not support voip port blocking, especially when mandated by the governement. I am a game programmer and a rocket scientist.

      Thank you,
      jc

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

      There's no need to route around Panamá. They could just add some bytes to the beginning of each packet (i.e. an IP over IP tunnel).

    8. 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.
    9. Re:They will need to also block every other port. by Anonymous Coward · · Score: 0, Troll

      There's lots of dark fiber across North America.

      There's no need to be racist about this! Not everyone can be of Northern European descent.

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

      On the serious side though... is there any open source effort for VoIP software? In which case a person could just send an e-mail over saying... ok... start up your VoIP software at port xxxx, and I'll do the same... woohoo! we're connected!

      I don't really see how blocking a *specific* set of ports can serve their purpose.

      --
      "In mathematics, it's not enough to read the words -- you have to hear the music"
    11. 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.
    12. Re:They will need to also block every other port. by Anonymous Coward · · Score: 1, Insightful

      Well... it's pretty hard to go around Panama. Some say you have to go south around South America, but I say you should go north into above Canada.

    13. 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>

    14. Re:They will need to also block every other port. by Anonymous Coward · · Score: 0

      Never heard of North Korea?

    15. Re:They will need to also block every other port. by Anonymous Coward · · Score: 0

      easy:
      deny udp any any

    16. Re:They will need to also block every other port. by Anonymous Coward · · Score: 0

      Hey Mr Carmac. Troll, look, you're famous!

    17. 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.
    18. 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.
    19. 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.

    20. 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. Revolt! by Anonymous Coward · · Score: 0

    I can't believe the citizens will allow crap like this to go on for very long, I coulda swore government was to serve it's people, not protect make sure people have to give up all thier money to big companies. What a bunch of crap!

    1. Re:Revolt! by handybundler · · Score: 0

      Not only is voice blockage bs, the blocking of file transfers is quite lame too.

      --


      a/s/l here. Sorry, adding domain tags to your s
    2. Re:Revolt! by wotevah · · Score: 2

      really ? explain DMCA :)

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

    Please adapt.

    1. Re:Suggestion to Panama by Anonymous Coward · · Score: 1, Funny

      No, I suggest we all just block ALL UDP ports, let's just ban the UDP protocol... hell no, we should ban all TCP and UDP use... and while we're at it, let's just make it illegal to use IP...

      OK? How many in favour? Raise your hand!

    2. 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

    3. Re:Suggestion to Panama by Anonymous Coward · · Score: 0
      OK? How many in favour? Raise your hand!

      Well I wouldn't have thought making it illegal to use the IP would be necessary. But I guess if the government is doing it, they must have out best interests at heart. So OK, count me in.

    4. 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)?

    5. Re:Suggestion to Panama by Anonymous Coward · · Score: 0

      They would be able to adapt if it wasn't for a certain country only feeding them scraps and never letting them realy be independant for so long.

    6. Re:Suggestion to Panama by Anonymous Coward · · Score: 0

      So they're trying to borrow from the "first world", the idea of passing laws for the benefit of large companies...

    7. 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.

    8. Re:Suggestion to Panama by vandy1 · · Score: 1

      Riiiight.... Like Papua New Guinea politicians will ever stop receiving aid^H^H^Hbribes from Australia to continue mining in various areas, etc... Do you honestly think that 3rd world nations are independent from the rest of the world? So just how independent is a nation with a couple of times its GDP in debt?

      Sorry, but this sort of crap really annoys me.

      Michael

    9. 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
    10. 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.

    11. 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. 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 Anonymous Coward · · Score: 0

      Then depends on how you define "work once". I think it's still hard to find a copier in the good old former USSR - they were classified as "printing presses" and therefore subject to state control.

    6. Re:Another good example of fear of progress by smallfries · · Score: 1

      Nicely laid out argument, but wrong.

      When you use VoIP you are already paying for the raw bandwidth via whatever means (eg your ISP bill). They are paying cash to the teleco's to transit traffic over their network (it's called a peering agreement). The telco's are then getting cold hard cash in exchange for their transatlantic (or whatever) fibre.

      Your argument doesn't hold up. The whole concept of an internetwork is that you pay for your section of it (or pay to access a local section of it) and everyone plugs their sections together.

      --
      Slashdot: where don knuth is an idiot because he cant grasp the awesome power of php
    7. 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.
    8. 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
    9. 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
    10. 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.

    11. Re:Another good example of fear of progress by dmarx · · Score: 1

      Yeah, some people can't get VoIP, so, in the name of equality, noone should be able to use it. For that matter, some people are homeless, so, in the name of equality, everyone should be forced to live in cardboard boxes. Can you think of any economies that are currently trying it this way (hint: Cuba)?

      --
      "Do I dare disturb the universe?"
    12. Re:Another good example of fear of progress by dmarx · · Score: 1
      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.

      You're right. And while we're at it, let's "protect the majority of consumers" by outlawing email. After all, it takes business away from the post office. I can send an email for a fraction of the cost of a stamp (considering all the messages I send; YMMV). So, clearly Post Office users are "subsidizing" me! This injustice must be corrected!

      --
      "Do I dare disturb the universe?"
    13. 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.

    14. 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.

    15. Re:Another good example of fear of progress by Anonymous Coward · · Score: 0

      an invasion of armies can be resisted.
      an idea whose time has come, cannot.

      victor hugo

    16. Re:Another good example of fear of progress by Anonymous Coward · · Score: 0

      I live in Panama, and this government is one of the most corrupt we have witnessed since Noriega. Noriega was a chump compared to this people (so you can imagine); shipment of arms to Colombia, deals with Panama Ports (chinese company) results in thousands of millions of dollars being deviated from the national budget and into the hands of this people. There are only 2 political parties to speak of, and what they do is to rob us blind.

      The government owns 49% of Cable & Wireless operation in Panama, and is very adept at receiving all kinds of kickbacks under the table. Right now there 92 newspaper reporters in jail who investigate this kind of shenanigans and had written articles on the subject, they are in prison for "defamation". C&W contract ends next year and already there is a bid of who pays more to the politicians to change the laws. I'm sure they don't realize nor care about the implications these actions will bring to the country. All they want is the money!

  7. Re:damn mexicans by Anonymous Coward · · Score: 0

    Even better, "accidentally" bomb their capital. Everybody knows that American smart bombs constantly get lost and land on Americans therefore everyone will beleive that such a bombing was entirely accidental.

  8. It's ok - Panama sucks by tooley · · Score: 0, Flamebait

    If you're Panamanian and you are reading this, you might want to go and fire or execute a few legislators. You might also consider banning lobbying, which has ruined the USA.

    -Pete-

    1. Re:It's ok - Panama sucks by agentZ · · Score: 1

      'tis not wise to advocate the violent overthrow of any government. Their ways are not subtle, and they are quick to anger.

    2. 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.

  9. But... But.... by David+Walker · · Score: 1

    Isn't blocking off ports against 'the spirit of the internet'? I mean, isn't it supposed to be open and unrestricted? (especially by companies)

    1. 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
    2. 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".

    3. 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
    4. Re:But... But.... by Anonymous Coward · · Score: 0

      All companies? Open? Yea right... why don't you ask Steve Jobs or Apple about that?

      or I suppose you just dont know that Apple Computer blocks ALL outgoing mail (Even through hotmail), forcing you to use their OWN SMPT server, which in fact every byte is read by Apple Security department, because they are so paranoid their employees are sending out "Sensitive information".

      But I suppose few people know this, and it's a non-issue anyway..... :-(

    5. Re:But... But.... by mindstrm · · Score: 1

      The internet is not supposed to be anything; it's just the result we get when we all use approximately the same set of protocols and adhere to roughly the same standards; we've ended up with a bunch of networks hooked together that can more or less talk to each other freely.

      Nothing forces anyone to follow any standards other than the desire to communicate and gain maximum benefit from that network.

  10. Oh no! by Anonymous Coward · · Score: 0

    So all the geeks who want to call their drug dealers are out of luck.....!

    Curse you!

  11. 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.
  12. 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
    1. Re:In a Folow Up News Release by anshil · · Score: 1
      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
  13. Port 80? by jjonte · · Score: 0, Redundant

    What happens when VoIP goes over port 80 or 443. They're going to effectivly pause Panama's technological progression. Oops!

    1. Re:Port 80? by malice · · Score: 1

      Port 80 and 443 are used for http and https by default for TCP, not UDP -- different animal entirely.

  14. 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 DAldredge · · Score: 1

      You are most likely a troll, but what the hell.

      The fact that the telcos business model may be outdated it not my concern.

    2. 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.

    3. 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--

    4. Re:Logical Conclusion of VoIP by broken_bones · · Score: 1

      Personally I don't think that taxing VoIP calls is any kind of a solution. To often lately it seems like companies are doing all that they can to protect the old way of doing thing. This is normal. Most people fear change. However normal this is though, it's not good. If a companies can't compete with new technology they need to adapt or get out of the market. Besides, government intervention (ie taxes) should, in my not so humble opinion, be avoided whenever possible.

      The preceding has been my 2 hundredths of your local currency unit.

      --

      Never disturb your enemy while he is busy making a mistake.
    5. 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
    6. 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?
    7. Re:Logical Conclusion of VoIP by Anonymous Coward · · Score: 0

      ...sounds like the logical conclusion from a simple mind.

      there are thousands of middle management minds like yours out there running businesses....into the ground.

      might as well solve all your problems with a hammer...it'd be more effective then whatever you could come up with....and cheaper to boot.

      have a great week.

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

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

    9. 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

    10. 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.

    11. 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?" `":" #");}
    12. 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!"
    13. 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.

    14. 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 */
    15. 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.

    16. Re:Logical Conclusion of VoIP by Dexx · · Score: 1

      The problem comes that if nobody uses the POTS system, the telco loses it's income. If the telco has cutbacks, service quality drops. That includes DSL and dial internet access, so wouldn't VOIP becomes pretty useless unless you're using cable?

      --
      Feel the fear and do it anyway.
    17. 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!

    18. 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!

    19. Re:Logical Conclusion of VoIP by Anonymous Coward · · Score: 0

      Lightbulbs replaced candles, VoIP replaces POTS, so things will always move from one step to the next phone companies have had there free run on POTS, now there going to have to look into some other market area.

    20. Re:Logical Conclusion of VoIP by Anonymous Coward · · Score: 0

      If you you get your internet access through your phone company, you're paying them anyway, and there should not be a problem - atleast not if their accountants do their job, and set the prices right, and if they don't, it has nothing to do with VoIP, and everything to do with lousy accountants.

    21. 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.
    22. Re:Logical Conclusion of VoIP by vandy1 · · Score: 1

      Well, I'm not an Italian; nor do they use Liras any more, but hey... :)

    23. Re:Logical Conclusion of VoIP by vandy1 · · Score: 1

      perhaps that should be UDP/IP, but anyway :) Michael

    24. 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
    25. Re:Logical Conclusion of VoIP by AsbestosRush · · Score: 1

      So we all just have to talk softer. :D

      --
      EveryDNS. Use it. It works.
      AC's need not reply
    26. Re:Logical Conclusion of VoIP by Anonymous Coward · · Score: 0

      This is a very stupid idea. How are they going to sort out the accounting? How are they going to make it fair to those people not using or wanting to use VIOP. Impose a tax?

    27. Re:Logical Conclusion of VoIP by sammaytg1 · · Score: 1

      It did not say that the phone company was changing is TOS to ban voip; it said that the government was require isp's(cable dsl satelite whatever) to attempt to block voip.
      And as you popint out you aren't actaully bypassing the phone comapny(unless you usde cable or satelite) you are paying for service. What you do with that service should be up to you. it cost's the phone company no more when you dial a local person or a local isp.
      ANd it is possibly the phone comapnies right to say what I can do with the service I buy from them (that's a whole diffrent argument), but it is in no way the phone companies right(on their own or through the government) to say what you can do on your cable modem or satelite account.

      --
      procrastination is a way of life aka i'll think up a sig later
    28. Re:Logical Conclusion of VoIP by mindstrm · · Score: 1

      ultimately, the internet will move towards usage fees, yes, but they will be based on only two things:

      Volume over time
      and priority.

      The application will not matter; only the type of traffic you want to use (ie: do you need a priority on bandwidth or latency or what). You will pay for QOS, nothing else.

    29. 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?" `":" #");}
    30. Re:Logical Conclusion of VoIP by mindstrm · · Score: 1

      I think ultimately it will have to go this way.. either that, or things will be regulated on a per-protocol basis so much taht eventually new networks based on new protocols will emerge, and we'll start over.

    31. Re:Logical Conclusion of VoIP by Anonymous Coward · · Score: 0

      Hate them you might? OK, Yoda.

  15. 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).

    2. Re:Censorship = Damage? by Anonymous Coward · · Score: 0

      It's censorship bud, not sensorship

    3. Re:Censorship = Damage? by Anonymous Coward · · Score: 0

      The internet will route around outages, but it won't compensate for port blocking, as that's handled at a different layer of the OSI model. In other words, let's say your traffic needs to get from point a to point b, and there are several ways to do so:

      via router X (in Panama)

      via router Y (Costa Rica)

      via router Z (Nicaragua)

      Now, for the sake of argument, let's say Panama has the preferred route due to its bigger pipe, better router, or whatever, so it's got a low cost of 1. Let's also say the route through Costa Rica has a cost of 5, and the route through Nicaragua has a cost of 10.

      This is oversimplified, but it's pretty intuitive that if the Panama link goes down, Costa Rica will take over, and if that goes down, Nicaragua gets the traffic. The mechanics of how this is determined is by whatever routing protocol is in use; if a link goes down, the route to the destination network is removed from the router's route table, and the upstream router will not send traffic there.

      If a tcp or udp port is blocked, however, the route still remains in the active route table, and the upstream router will send the traffic to the Panama router, where an access-list will drop the packets.

      Make any sense? Of course, ISPs can do Layer 4 policy-based source routing to avoid the problem, but that can get CPU intensive very quickly.

  16. 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; }
  17. 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.

    1. Re:I think this is "Just Cause" for... by martyn+s · · Score: 1

      I prefer to spell it "just 'cause"

  18. 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 Anonymous Coward · · Score: 0

      once the Panama government locates those sites ... they'll start gopher whacking them with... DOS attacks

      Interesting theory. Does the Panamanian government (or any government) have a history of using DoS attacks?! Seems far fetched to me, compared to a simple warrant, legal harassment, police harassment, etc.

    7. 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
    8. 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

    9. Re:Not hard at all... by Shardis · · Score: 1

      Oh please, if you're sophisticated enough to use VOIP, chances are you can go to your "options" tab or whatever and just set a proxy or change your port.
      Now I'll admit that I don't use a lot of VOIP apps, but why would such a feature not exist? *shrugs*

    10. 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
    11. Re:Not hard at all... by Anonymous Coward · · Score: 1, Informative
      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.

      Did you read this bit of the article?

      "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."

      Rob

    12. Re:Not hard at all... by medscaper · · Score: 1

      Hmmmm. I like the mental picture, but I don't really think it would float that well...

      --
      Any sufficiently well-organized Government is indistinguishable from bullshit.
    13. 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

    14. Re:Not hard at all... by yy1 · · Score: 1

      I am pretty sure there exist true two-way satellite isp's that panama could use aren't there? Couldn't these provide the outside links to the rest of the world on a intranet of WiFi. That community wireless project.... Anyway the prohibition will doubtless make SOMEONE some money providing unrestricted service, as always happens when governments seek to impose their agenda's on a populace that doesn't want to hear it (hence speakeasys, the "war on drugs", most consenual crime, etc).

      --
      Because, sometimes they just have to touch the stove.
      -YY1
    15. 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.
    16. Re:Not hard at all... by Anonymous Coward · · Score: 0

      Uhh, how could they point their unmodified software at a proxy server, if the ISP is blocking traffic on those ports?

      The software would need to be modified (or configured, if they support that) to use an unblocked port first.

    17. 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!
    18. Re:Not hard at all... by Anonymous Coward · · Score: 0

      Ahh, gotcha. I thought you meant setting up proxies, for example, in the US.

    19. 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.

    20. Re:Not hard at all... by Mikeytsi · · Score: 1

      You're missing something here. This is PANAMA. Democratic rules don't really apply in this case.

      --
      I've been called a "Fucking Dick" by better people than you.
    21. Re:Not hard at all... by secolactico · · Score: 1
      Ok, a little background here:

      Panama's only working telco used to be state run. A few years ago it was privatized. 49% of the stocks were sold to Cable and Wireless, who, in fact, runs the company. Amongst the provisions on the sales agreement, there was an exclusivity clause. C&W would have a monopoly supported by the goverment until the year 2003. Of course, one of the first measures C&W took was to raise the price of local and international calls. Voice over IP became huge then, dropping the costs of international calls from $2.00 a minute to about $0.10 (or even free, in the times of dialpad.com).

      Of course, the company started putting pressure of the goverment to prosecute those who violated the rules and quite a few business were fined *a lot* (hundreds of thousands). But Voice ovcer IP is a bit hard to detect unless you have some sort of inside info (a couple of the busts were thanks to disgruntled employees, or so I'm told).

      Everybody was expecting a measure like this for some years now. C&W is an ISP itself and was rumored to be blocking certain sites (not ports) to prevent VoIP.

      What I'm wondering is, why did they wait until the time is almost up to seek this measures. In January 1st the monopoly will be officially over, and it will be pretty much a free for all.

      This is PANAMA. Democratic rules don't really apply in this case.

      Democracy has nothing to do with it, tho I kinda relate to your comment.
      --
      No sig
    22. 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.
    23. 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.
    24. 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.
  19. The Internet must be a pain in Panama by Anonymous Coward · · Score: 1, Funny

    All those wires connecting North America to South America that have to go through tiny Panama... the ground there must be completely cluttered with fiber optics.

    1. Re:The Internet must be a pain in Panama by SuperMario666 · · Score: 1

      Nope, other than drugs and monkeys, not much of anything goes through the Darien Gap. Nasty, nasty country.

  20. Unclear on the concept? by jsimon12 · · Score: 0

    Hahahaha, I love it when orginazations simply think blocking a single port will keep people from using a service. Oh well some people simply don't have a clue.

    1. Re:Unclear on the concept? by Anonymous Coward · · Score: 0

      I lost faith in humanity after the crap some moron posted (you know who you are). Scared to show yourself?

      Yeah, I'm right here. What ya gonna do about it?

  21. 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 wotevah · · Score: 1

      or VOIPIP (voice over IP over IP tunnel)

    2. 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
    3. 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.
    4. 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.

    5. Re:Next day, several new protocols invented... by 0x20 · · Score: 1

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

      VOICBM


      I think he'd prefer ICBMOV.

    6. 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.
    7. Re:Next day, several new protocols invented... by Anonymous Coward · · Score: 0

      nah, then the defense would be too simple: not answer the phone.

  22. Re:damn mexicans by Anonymous Coward · · Score: 1, Insightful

    Um.... Panama is not in mexico... A few contries seperate them.

  23. Most of these ports are unassigned anyways! by tim0thy · · Score: 1

    According to the article, the following UDP ports are being blocked: 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.
    # 1034-1035 Unassigned
    lrp 2090/udp Load Report Protocol
    prp 2091/udp PRP
    commplex-main 5000/udp
    # 6791-6830 Unassigned
    iua 9900/udp IUA
    # 9901-9908 Unassigned
    # 12007-12171 Unassigned
    vocaltec-phone 22555/udp Vocaltec Internet Phone
    # 26001-26207 Unassigned
    # 31417-32767 Unassigned
    # 34250-36864 Unassigned
    # 37476-38200 Unassigned
    # 47558-47623 Unassigned
    # 48004-48555 Unassigned

    Most are unassigned anyways.

    1. Re:Most of these ports are unassigned anyways! by Anonymous Coward · · Score: 0

      UDP 1035 is very often used for NFS lock manager.
      It seems Panama people can no longer use NFS.

  24. 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 Anonymous Coward · · Score: 0

      well, apparently it is legal in Panama

    3. 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
    4. 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.

    5. 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.
    6. 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
    7. 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.
    8. 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.

    9. 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.
    10. Re:I don't see how this is moral or legal.. by Anonymous Coward · · Score: 0
      That isn't capitalism or democracy. It is corruption and fascism; Abuse of power.

      Capitalism is the exact opposite, where any individual (or group) is free to pursue capital gain, and is allowed to keep that capital (also known as the fruits of their labor). In a free society, there is also the requirement of not causing harm to anyone else in the process.

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

      The difference is that telecommunications are a fundamental part of any country's economy, which is why governments get involved in protecting them. This is also one of the reasons why most telecommunication companies are either state owned, monopolies or both.

      No one gives a damn about hammer makers ;)

    12. 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.
    13. Re:I don't see how this is moral or legal.. by ensignyu · · Score: 1

      Well, I think the problem is in the political system, since big business will always be trying to bribe officials anyway.

      In the US, busy voters with short attention spans can be influenced by political ads. Sure, political ideology decides also, but the two major parties drown out third parties with the ads. And members of both parties accept legal bribes.

      Even with resources like OpenSecrets.org, people don't seem to have the time to look into campaign contributions, and even when one candidate decides to brand an opposing candidate as corrupt, it doesn't always make that big of a difference.

      I'm guessing that some people wouldn't even know what the incumbents did in office without watching ads. At least our government makes the info available.

      I'm hoping that things like Campaign Finance reform will help, although I suspect new loopholes will be found. In my opinion, the government should pay for political campaigns and not allow outside money. This would probably lead to an separate orgization calling itself something like "Big Business coalition to elect Greed E. Prez." I'm not sure what to predict after that. Anyway, third parties would benefit from uniform federal funding, and hopefully they have a more humble non-politico agenda.

    14. Re:I don't see how this is moral or legal.. by Anonymous Coward · · Score: 0

      You're a terrorist who doesn't believe in the American Way.

      You're just a whore to the Al Qaeda network and you deserve to be 'penetrated' by Bin Laden's minions.

      You want to kill American children.

    15. 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
    16. 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.

    17. 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.

    18. 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.

    19. 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.

  25. Hello? Big business? by Anonymous Coward · · Score: 1, Insightful

    Hello? Big business? I wonder who lobbied for that change. Because is it good for their citizens? Or just the government's big money backers? This isn't just an American problem. This is another red flag telling us we need to get special interest groups out of all governments.

  26. SSH tunnel? by SirCrashALot · · Score: 0

    Couldn't you use an SSH tunnel to circumvent the blocks? Thats how I do samba and VNC (but thats for security purposes so I can keep my router zipped up tight). I don't know how tunnelling would work with a centralized server, but you could certainly tunnel ports directly to another comp. For windows user, PUTTY works great. Putty
    ssh -L5903:localhost:5903 24.46.xxx.xxx

    1. Re:SSH tunnel? by Anonymous Coward · · Score: 0

      udp doesnt work over ssh tunnels, unfotunetly... better to just use vtun or cipe d8)

    2. Re:SSH tunnel? by SirCrashALot · · Score: 0

      oh i didn't realize it was only tcp.

    3. Re:SSH tunnel? by Anonymous Coward · · Score: 0

      ssh uses udp port 22 as well as tcp 22. i imagine they support udp. if not, we couldn't they. it would make sense.

  27. 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 Anonymous Coward · · Score: 0

      A quick look at a world map will tell you that Panama is INSIDE America.

    2. Re:Unbelievable by Anonymous Coward · · Score: 0

      Right on the money... ohh wait it just never gets published by the media!

    3. 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.
    4. 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.
  28. 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.

  29. 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?

    1. Re:1034-1035? by tim0thy · · Score: 1

      Only if you are extremely unlucky that day. :)

  30. VOIP Sucks anyway by dan_the_heretic · · Score: 0

    So what does it matter. I mean, have you done VOIP at 42K dial up?

    --
    I don't like big words..., does that make me anti-semantic?
  31. 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 Anonymous Coward · · Score: 0

      > On the negative side, it will kill Quicktime

      How is this negative?

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

      Killing Quicktime is a downside? since when?
      'click here for Quicktime pro'
      [Now!] [Later.] [NEVER!] (where is the DAMN NEVER!)

    3. 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?

  32. 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).

  33. 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
    1. Re:Possible reasons for this move? by Anonymous Coward · · Score: 0

      I was in Panama two weeks ago. Bellsouth is the largest phone company there. It is larger than the gov't phone company.

  34. 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.
  35. 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
    1. Re:I got a better solution by Sn4xx0r · · Score: 1

      They probably block cookies too.

      --
      Got brain?
  36. 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!
  37. 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.

    1. Re:This is crazy. by Anonymous Coward · · Score: 0

      Panama did NOT secretly elect GWB, he was appointed after Daddy Bush invaded and nabbed Noriega.

    2. Re:This is crazy. by RedBear · · Score: 1
      This ranks up with the CBDTPA as the most absurd legislation of the twentieth century.


      Hey, old-timer, there's a new century a-comin' in, and she's got a full head o' steam. LONG LIVE THE TWENTY-FIRST CENTURY! Woo-hoo!!

      Gotcha.

    3. Re:This is crazy. by fearincontrol · · Score: 1

      Oops, lol.

  38. 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.
    2. Re:Panama assists security developers everywhere. by anto · · Score: 1

      That would work for large powerful countries like the US - however should the US go down the same path would Australia 'cutting them off' make an iota of difference. In fact as a large number of Australian sites are hosted in the US, and a majority of our 'big' links are routed through the US (and I assume its the same situation for the rest of the world) we would in fact be cutting off our own access.

      Automatic VPNing on the other hand will allow everyone to continue using the services they currently enjoy while having the bonus of stopping people from spying^H^H^H^H^H^H inspecting the data they are transmitting.

  39. 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.

    1. Re:Another good example of corporatism by Anonymous Coward · · Score: 0

      What the hell are you talking about. Surely we know that it is only governments that can be oppressive. With corporations you can always choose whether to use their products of not. The people of Panama, don't have to make phone calls. Blame governments and let the corporations get away with whatever they want is my motto.

  40. 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 skeedlelee · · Score: 1

      Somewhat offtopic but I was under the impression that many of the European telco's were going through similar revelations regarding the inadaquacies of their particular business models. The difference is that the telco's are now competing with the wireless companies. Given the reduced cost to enter the market, this changes things quite a bit. I've heard it specifically mentioned regarding Italy and Greece. In particular it is usually cheaper to make a call on a cell phone than on a land line, which obviously makes cell phones rather popular.

      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) and are basically trying to get out of markets that have significant cellular customers and get a strangle hold on areas that don't have wide cellular use yet. The popularity of VoIP probably caught them offguard. 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. >:(

      Here's hoping this doesn't actually have any effect on these services outside of Panama... I've become pretty dependent on them for keeping in touch with people (eg. wife) when they are traveling abroad. Why the local phone company even offers phone cards at the rates they charge these days is beyond me.

    4. Re:Cable & Wireless of "Panama" by Anonymous Coward · · Score: 0

      Cable and Wireless is one of the most evil telcoms on earth not to mention the largest telecom. It just destroyed the telecommunication network in the Maldives and has such outragious rates. They still feel they are old white men looking after the poor of the world... etc. They just milk everyone. I dont know why /. doesnt carry many C&W stories. There are thousands. They are one of the most hated companies on earth.

    5. 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!
    6. 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).

    7. 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"

    8. 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"

    9. 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.
    10. 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.
    11. 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"

  41. fall out? by Anonymous Coward · · Score: 0

    you dont loose your hands for downloading a voip proxy this do ya?

  42. 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.

  43. You probably thought it was a joke, but . . . by CustomDesigned · · Score: 0, Interesting
    My aunt had problems in rural Texas near Dallas when the phone company was hacked (GTE was using factory passwords on the switches) and the phreaks used her phone number to rack up $1000s of 900 porn calls. She refused to pay, and cancelled her phone service (getting wireless from SWB).

    GTE insisted that they couldn't possibly have been hacked, but next month, her phone number was *still* racking up $1000s in 900 porn. They claimed her teenage son was the hacker, so she told them to physically cut all phone wires to the house at the connecting point, which in the rural area was several miles away.

    Next month, the 900 porn continued to rack up $1000s. So then, GTE took her to court. They actually claimed, in court, I kid you not, that her teenage son was hacking the phone company using mental telepathy! The whole small town believed it too, and started treating her son like a space alien. Fortunately, the judge was not a country yokel, and threw the case out of court.

    The real hackers were eventually caught when they got tired of 900 porn, and hacked the White House phone system so they could eavesdrop on Clinton's phone calls. This was noticed, and brought the FBI down on their case. The story of their capture was on Slashdot, but I can't find it at the moment.

    1. Re:You probably thought it was a joke, but . . . by Anonymous Coward · · Score: 0

      You're making shit up. That happened in Arkansas, not Texas.

    2. Re:You probably thought it was a joke, but . . . by Anonymous Coward · · Score: 0

      The mods are smoking crack again; whoever modded this prose up should be shot.

      It reeks of -1 Trolldom, yet somehow earns the rank of +2.

      Obviously, had the account been cancelled, the paper trail would clearly show that nothing further could have transpired.

      Obviously, had the "hackers" cracked the White House phone system, the FBI wouldn't much care. The Secret Service, on the other hand, would take such matters of National Security quite seriously. The term "field day" comes to mind.

      I'll leave aside the comments about the absurdity of GTE leaving their (several-million-dollar) custom switches unsecured. I'll ignore the redneck telepathy aspect: I've been to Texas, and while I found the people there tend to be similar to what us Yankees might consider "slow," they would seem to be the last people on Earth to grasp the concept of telepathy, let alone endorse it.

      Piss off, troll. And learn to think, you foolish, inspid moderators. The karma you grant permits such decisively ill-born trolls as this the right to vote, thus presenting them the ability to anonymously influence the collective IQ of this place we call slashdot. The feebility of metamod does not undo the gross injustice witnessed here.

      Fix it.

      Thanks.

    3. Re:You probably thought it was a joke, but . . . by Anonymous Coward · · Score: 0
      This is CustomDesigned. I am posting as a coward to avoid further Karma loss :-) I may have gotten some details mixed up, but the story is true.

      Obviously, had the account been cancelled, the paper trail would clearly show that nothing further could have transpired.

      Yes, if the local GTE were reasonable, rational people, you would be correct. However, the reason this is story to tell my grandchildren is that they aggressively sued my aunt despite the absurdity of the case.

      I'll leave aside the comments about the absurdity of GTE leaving their (several-million-dollar) custom switches unsecured.

      I was personally involved as an advisor, and submitted copies of web pages to my aunts lawyer documenting how easily the switches are cracked. Yes, GTE employees at way too many branches were that stupid that they left the factory passwords. Why do you think script kiddies check for this? I've personally had the task of securing small business routers with the factory passwords still installed and remote maintenance active! This even came in handy on one occasion. :-)

      Obviously, had the "hackers" cracked the White House phone system, the FBI wouldn't much care. The Secret Service, on the other hand, would take such matters of National Security quite seriously.

      The White House was not the only place cracked. The FBI had been searching for them for a while. I had no idea until after the arrest that my aunts problems were related. You are correct that they were not arrested in Texas - I didn't say that. I don't remember where they were arrested.

  44. 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 The+Vorlon · · Score: 1

      That's right, exercise your First-World sense of righteous indignation. Thank goodness we Americans are above this sort of bribery. And if by some chance it did happen to us, I'm sure our system would correct for the insanity even quicker than those back-water Panamanians...

    2. 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.

  45. 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.

    2. Re:In other news... by Anonymous Coward · · Score: 1, Insightful

      What many arrogant america bashers both in the US and abroad dont understand is that america simply doesnt have the population density that europe does. We used to be even more rural than we are now. And we still are by the simple virtue of or population size and land area. Thus the US and Austrailia will have higher per capita energy consumption than europe. (And thats why Austrailia got concessions on kyoto that the US didn't??)

      The infrastructure decisions were made at different times in the "new world" and europe. Mass transit isnt nealy as efficient in the US as it is in europe due in part to our geography and in part due to infrastructure decisions that we have made. Obviously infrastructure decisions are a product of the times they are made in. In that light, the decisions made by the US government make much more sense.
      The places in the US that could benefit from extensive mass transit systems already have them (NY, SF and LA for example, or most major US cities) the problem is that people still need cars to do any significant travel, our cities are much farther apart than those in europe. The size of the US is simply a guarantee that the US will forever lag behind europe in per capita energy consumtion when it come to transportation, simply because we have to travel farther.
      Thats not to say that everyone cant become more efficient, but europe's solutions wont be the same as the american's because everyone has different requirements.

    3. Re:In other news... by dylan.ucd · · Score: 0, Troll

      let me just start out by saying that you are a total nutcase who doesn't understand some basic facts and history. if public transportation infrastructure was removed, then that means that it was in use and served a purpose at one point in time. they were in use in the past, when by your own words the US was "even more rural than we are now": so by your logic public transit was used in the past when we were more rural, but then as we became less rural it was all of a sudden ok to pull it out of the ground? i don't think so. those lines were pulled out for one simple reason. the automobile. thats right, not out of any kind of practical reason, no - they were removed because they were interferring with the almighty car. but it wasn't just the automakers who were responsible for this-- their big brother's the oil compaines had a hand in it as well. if this country would finally drop its fucking oil addiction, perhaps we would see all sorts of new transportation technologies come out of the cracks (which were present the whole time anyways..). don't try and tell me that people will not pay a little extra to get from LA to SF and not have to wait in line at the airport. once the rail right of ways are put back in place (thats right, PUT BACK, they were removed ya know) and the government spends a little less money on subsidisinf cotton crops in the southern Ca desert, CA can be a great place to start the transportation revolution. it is as simple as this: 1. planes for the long hauls, coast to coast, or anything >600mi. 2. bullet trains to connect the large cities, or anyhting 600mi. 3. local trains to connect every thing else. 4. cars (electric ones) would then be used for personal transportation that fell outsife of the rail system's bounds, or for emergancy situations. 5. bicycles could be used for all local trips. (weather and terrain permitting) get your head out of your ass. the end

  46. 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

  47. 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

    1. Re:I'd like to think by Anonymous Coward · · Score: 0

      Where else but in the US could this happen?

      The rest of the world has *real* issues to deal with (like economical metldown, political instability, you name it)...

      not Hollywoodian problems of movies being pirated(which is btw, a completely rewardless industry - ie an industry that brings nothing new in content or energy to the economy/people)...

  48. 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.

  49. 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
    1. Re:Age-Old Dilemma by chevybowtie · · Score: 1

      What is the social problem? Cheap talk?

    2. Re:Age-Old Dilemma by limekiller4 · · Score: 1

      chevybowtie writes:
      "What is the social problem?"

      Well, it's social, and they consider it a problem. Hence a technical solution to a social issue.

      Doesn't mean *I* consider it a problem. Hell, looks like the march of technology to me. You can only bail out the luddites for so long.

      --
      My .02,
      Limekiller
  50. A conundrum by Anonymous Coward · · Score: 0

    There is too much money in the industry, but technology in the long run can drive the cost per bit so low that no matter what the income wont be able to sustain the industry in its present form.

    How do we manage to benefit from the potential low costs of communication? If we let the market do its work we end up with the industry collapsing into itself ... but it will create monopolies in the process, and new competitors will have a hard time since they werent given their infrastructure for free in the dot com bubble aftermath.

    How about collectivization ;)

  51. POTS? by Col.+Panic · · Score: 2

    So everyone will just blue box. Problem solved :/

  52. BFD .. by bizitch · · Score: 1

    Oh no - they're going to block UDP 46 - how diabolical - There's no way around that!

    It just goes to show you how monumentally stupid the institution of goverment is ...

    --
    ---- "Logoff! That cookie shit makes me nervous!" - A. Soprano
  53. Browsers use TCP ports by ptbarnett · · Score: 1
    Wouldn't blocking those ports cause sporadic communications failures in programs such as web browsers?

    No, a browser uses a TCP port, at least to make a request to a web server (after DNS lookup on UDP port 53). These are UDP ports -- a different port space.

  54. Wow! Who'd a thunk it? by Anonymous Coward · · Score: 0

    Since when did they get telephones in Panama?

  55. OT: Ambrosia by TheOnlyCoolTim · · Score: 0, Offtopic

    I remember playing Escape Velocity waaaay back in the day. Great game, man.

    Glad to see you are porting the newest one over to Windows, I haven't had a Mac in years and years....

    Tim

    --
    Omnia vestra castrorum habetur nobis.
  56. 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.

  57. 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.

  58. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  59. Translation... by AyeRoxor! · · Score: 1

    Get a rough translation of the actual decree from AltaVista's Babelfish

  60. So? by Anonymous Coward · · Score: 0

    Insurances are reasonable idea however, these measures are probably all in all not a benefit to Panama's society as a whole.

    You might find both to be as reprehensible in theory because they rely on unmandated use of force by the government (from the liberalistic point of view) but in practice the merits of the two still differ.

    BTW if all roads were privately owned most of their owners would almost certainly cooperate on this matter and make you take an insurance from private agencies regulated by them. Because if I had the choice between their roads and roads where I run the risk of getting my car totalled by someone without the means to refund me I would choose the first, if I wanted to insure myself against my personal risk on this second set of roads it would almost certainly end up costing me more.

  61. Re:Well gee by Anonymous Coward · · Score: 0

    Well gee (Score:0, Insightful)

    Usually I reserve this for posters, but I'll say it for the moderator this time:

    Hey look, it's that fucking genius kid again.

  62. Re:This isn't really all that different from what. by furchin · · Score: 1

    Actually, in the state of Ohio at least, if you own 25 or more cars, you are automatically considered self-insured, and don't need to buy insurance. In theory, you could buy 25 old, beat-up cars for $100 each, and never pay for insurance again. Of course, you'll still be liable if you crash into someone with the car you're trying to avoid paying insurance on...

  63. In other news... by denisonbigred · · Score: 1

    The 90% of the Population who have no idea whatsoever what Voice over IP is, much less what a port is (is that where i plug in my mouse? hehe) issued this statement: "So?".

    --

    "There's no way to rule innocent men. The only power any government has is the power to crack down on criminals."
  64. Re:damn mexicans by Anonymous Coward · · Score: 0

    So what? They speak Mexican. That makes them Mexican.

  65. In Other News... by karmavore · · Score: 1

    Several more rare tropical bird species have become extinct as the Government of Panama steps up it's efforts to prevent the use of VOIP using avian carriers.

    --
    Speech: Free
    Beer: $699.00
  66. This thing is..... by xoul · · Score: 1

    The company Cable and Wireless made a contract with the government of Panama a few years ago giving them "all rights" for the telephony service, therefore no VoIP is permitted. As all we know, its almost impossible to block VoIP but it demonstrates why a country like this (my country BTW) will always be what you ppl call 3rd world country. Because a couple of ppl are just in the gov for the cash and they doesn't mind or can't think of the crappy future that'll have the next generations.

  67. 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
  68. Anybody consulted David Lee Roth about this? by secretvampire · · Score: 1

    Can we get a list of ten questions together for Van Halen regarding this issue?

  69. 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.

  70. Your solution sucks by kilonad · · Score: 1
    As much as I agree with your solution when applied to the *AA, it doesn't quite work with the phone companies.

    So to the phone companies I say, Adapt or Die, better yet just die.

    If they "just died," the vast majority of Americans would be without internet access, since they either use DSL or the phone line to dial up (what, you wanna give the cable companies a monopoly?). Even if they do use cable or get on at work, who do you think runs a good chunk of the lines to these businesses? WorldCom, Sprint, AT&T, Qwest and Verizon own the vast majority of the backbone here in the states. If they just up and died, so would the internet in the US. If you make them "adapt" they'll just start charging you per KB/MB/GB instead, and they'll price it so their income doesn't drop, which means everything will be a hell of a lot more expensive in the bandwidth-intensive future

    You adapt or grow up, better yet just grow up.

    1. 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?
  71. Block DNS too? by AlexCV · · Score: 1

    I'm surprised no one mentionned piggybacking on port 53 UDP. No one can afford to block that port and comprehensive filtering would be prohibitive in CPU cost for large links. DNS over TCP exists, but the overhead is not exactly light.

    Alex

  72. Inefficient Transportation? by DAldredge · · Score: 0, Offtopic

    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.

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

    1. Re:Inefficient Transportation? by dylan.ucd · · Score: 1

      or ride a bike. actually it would do a lot of fat americans to get out and ride a bike to work/school sometimes...

    2. 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.

    3. 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

    4. 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.

    5. 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.
    6. Re:Inefficient Transportation? by Anonymous Coward · · Score: 0

      (In case you are wondering why I didn't stay there--it's because my friends, family, and job are here.)

      Do you think that there is a reason that your job is in the USA? Could it be that many employers find the same laws that make Europe a paradise difficult to work under? Ultimately, we all live in a global market - if you can't compete globally, you will end up being swallowed up one way or another. Either you get bought up, or if your laws prevent that, then you end up getting invaded by a foe who can afford to spend more on their military than you can...

    7. Re:Inefficient Transportation? by dmarx · · Score: 1
      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).

      What did you do when the weather was bad?

      --
      "Do I dare disturb the universe?"
    8. 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]

    9. 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.

    10. Re:Inefficient Transportation? by jhunsake · · Score: 1

      Just wait until Wal-Mart comes to town!! Hahaha

    11. Re:Inefficient Transportation? by jschrod · · Score: 1

      They are here. First thing they had to learn was: You cannot skip the Union here and exploit your employees at will. Second thing was: The share for malls did not increase, they are fighting with the other chains over redistribution of market share, but don't get them from the high-quality shops.

      --

      Joachim

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

  73. 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).

  74. 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 Anonymous Coward · · Score: 0
      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.

      Trust me - the canal will be working just fine until boats are obsolete. Nobody cares what the Panamanian govenrment does to its own citizens besides activists and the Panamanians themselves. On the other hand, lots of people care about that canal. If things with the canal get shaky lots of things could happen:

      1. Powerful interests could just pay off the government to "fix things" - the most likley solution until the cost gets really high. (Lots of money to be made on the canal, no harm in sharing a little of it with the thugs in charge.)
      2. Costs get really high - US exerts influence to regain canal under contractual agreement.
      3. It doesn't look like legalities are going to work. Well, that war on drugs issue just gets notched up a little higher on the priority list...
    2. 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'
  75. Congress vs Progress by Nemesus · · Score: 1

    It seems to me that they would be more successful to try to attract people to the telephone than they would by banning VoIP. For instance the telephone companies could adopt the methods & practices of USA Datanet (http://www.usadatanet.com); they could increase their revenue and decrease their operating costs by simply adapting/adopting the technology available to them. By drawing people to the telephone by way of THEIR VoIP solution they ensure a good customer base for not only an inexpensive long distance solution, but for their local calls by simply allowing customers to use what they already know (with an added bonus, no waiting for your phone to boot!).

    1. Re:Congress vs Progress by Anonymous Coward · · Score: 0

      I have lived in Panama for 27 years. My wife was born here, and she is livid over this. We have 2 sons and a grandson in Eurpoe. She usually talks to both over Net2Phone each Sunday. Calls to one are about $.05 a minute and the other about $.10. Now, if she wants to talk to them it will cost over $.50 a minute to the first and about $.80 a minute to the second. Plus each overseas call is taxed $1.00. We simply cannot afford to spend that much money each month on phone calls, so C&W won't gain a damn thing in our case.

      This idiotic decree is going to shut down a lot of Internet Cafes which provide calling services, and almost all of my friends have money invested in VOiP. Some have standalone modems which function like a telephone, and all of us have unused, prepaid, probably unrecoverable money invested in calling cards or accounts. In my case, we're out $27.00 to Net2Phone, but some of my friends have now useless $200.00+ boxes.

      Cable and Worthless have done some good things, but they have also thoroughly reamed the locals for phone service. I pay $32.00 a month for unlimited telephone and $49.95 for an ADSL account.

      A decree, BTW, is issued by the President, not the Legislature.

  76. I see your UDP block by Flower · · Score: 1

    And raise with my BGP block. I call.

    --
    I don't want knowledge. I want certainty. - Law, David Bowie
  77. No UDP/TCP specific ports by stwrtpj · · Score: 0, Troll

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

    <ANAL>

    There is no such thing as a "UDP port" or a "TCP port". A port is a port. What protocol it uses depends on the software that opens the port and listens on it, or how it is configured via /etc/services, or whatever your flavor of OS uses.

    Yes, port 80 is normally used for http, which is a TCP protocol, but calling port 80 a "TCP port" is incorrect.

    </ANAL>

    --
    Karma: Frotzed (mostly due to the Frobozz Magic Karma Company)
    1. 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.

    2. 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...
  78. 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...

  79. 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.

  80. 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.

  81. 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
  82. 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.
  83. Re:Why does this surprise anybody?-Nope by Anonymous Coward · · Score: 0

    "Cable & Wireless Panama is the leading telecommunications company in Panama and provides national and international fixed voice services on an exclusive basis until 2003. The company also provides mobile, data, Internet access, IP solutions and other deregulated services in a competitive market. "

    Note that they have voicelines all to themselves until 2003. Sounds like a grab all that you can before running move.

  84. isps plan demonstartion late sunday? by Anonymous Coward · · Score: 0

    so anyone know exactly how pissed of isps have demonstrations? would be kinda cool(not for buisnesses but from a fuck that law POV) if they actually shut all their routers or border routers of for a day. kinda like a hey you want those port blocked? fuck it well do them all for you :)

  85. 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.

  86. 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.
    1. Re:But this GPL'd internet phone isn't blocked.. by WetCat · · Score: 1

      Do the developers of SpeakFreely plan to make any improvements in that program? Linux version is not user friendly at all. DO they want to make it possible to use Ogg Vorbis compression?
      On my opinion SpeakFreely is stuck on the level of 1998 year technology...

    2. Re:But this GPL'd internet phone isn't blocked.. by nadaou · · Score: 1
      Do the developers of SpeakFreely plan to make any improvements in that program?


      I seem to remeber seeing a post about the author switching to the same multi-platform library that the Audacity sound editor uses, so they only have to maintain one set of code for Windows, UNIXes, and Mac OS/X native. Can't recall where I saw that, but I'm pretty sure I wasn't dreaming. So my guess would be yes, they are currently doing a large code rewrite. The UNIX page was last updated 5 days ago, so I assume it is still alive.

      Linux version is not user friendly at all.


      I agree.
      Though- you just type "sflaunch other.machine.org", and then hit Space to talk. It really isn't that bad at all.

      The xspeakfree GUI (Tcl/Tk) front end makes it simple to use- almost identical to the windows version. Grab it out of the 7.5 release for UNIX's CONTRIB directory.

      o Make sure you have read/write permissions for /dev/dsp and /dev/audio.

      o Try "sflaunch echo.fourmilab.ch" for the 10-second-echo server..

      DO they want to make it possible to use Ogg Vorbis compression?


      Once again, I can only guess, but if they did, I'd suppose that they'd use the new Ogg Speex codec, not the vorbis one.

      Speex is specially designed for voice encoding at ultra-low bitrates. Vorbis is for excellent sounding music at bitrates higher than what you can pull with a modem in real time. Speex has recently joined with Ogg, and is currently in Beta 2. see http://www.speex.org/

      So I hope they do include support for Ogg Speex in the future, but what they have already works very well.

      On my opinion SpeakFreely is stuck on the level of 1998 year technology...


      I'd agree that there doesn't seem to be that much development lately, but none of the other internet phone programs I used a couple of years ago still exist or are totally free anymore. I don't know of another which is cross platform either (program- not VoIP codec).

      Word Processing seems to be stuck on the level of 1992 year technology... so what. It works.
      --
      ~.~
      I'm a peripheral visionary.
  87. The Internet must be a pain in Panama-routing. by Anonymous Coward · · Score: 0

    http://www.lib.utexas.edu/maps/americas/central_am erica_ref01.jpg

    Note that traffic still can get to the South American continent without going through Panama.

    Dominican Republic or (gasp) Cuba to Colombia for example. Or Puerto Rico to Venezuela. And I haven't even touched wireless solutions yet.

  88. 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
  89. 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?!?!

  90. Boycott C&W ! by pugs · · Score: 1

    OK, Slashdotters - each and every one of us
    who do business with C&W needs to get on the
    phone (irony) and express our displeasure.
    After all, it seems unlikely that the Panama government came up with that list of ports by themselves.

    C&W has a *lot* of IP business - let's take it away and see how they feel.

  91. ok... by Stonent1 · · Score: 1

    Anyone for VoIPX? (just kidding of course)

  92. So that's what "banana republic" means by Anonymous Coward · · Score: 0

    Was thinking of a good explanation of term "banana republic"... this should do nicely, if it can be summarized in one sentence.

  93. You're wrong, worked for the auto industry by Anonymous Coward · · Score: 0

    Auto industry actively destroyed mass transit. trolly cars, etc in California back in the day.

  94. Re:This isn't really all that different from what. by jareds · · Score: 1

    It seems smart if you can afford the risk. Not only will you pay less on average, but you'll probably drive more carefully if you're insuring yourself.

  95. 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?
  96. 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
  97. 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
  98. 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 Anonymous Coward · · Score: 0

      A system that rewards questionable activity will have many more enterpreneurs involved in that activity.

    2. 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.

    3. 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...

  99. 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.

  100. Canal Good, VOIP Bad? by Anonymous Coward · · Score: 0


    Interesting... free flow of commerce East to West, and vice-versa, via the Canal.

    No flow of Internet voice South to North, and vice versa.

    I guess they relate to boats, and not bits. Perhaps the Panamanian government is run by cousins of those running Greece (you know, the ones that temporarily banned video games).

    btw, What's the status of a boat in the canal? Is it in Panamanian territory, or international waters? Floating data haven/ISP via wireless? :-)

  101. 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.
  102. Re:I don't see how this is moral or legal..OT by mr_z_beeblebrox · · Score: 1

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

    I can not decide if my answer is ontopic or not as it is political. However, the reason "rent a laws" happen (in this country at least)is that big industry makes big contributions to political parties and candidates. When this is regulated things will be different. For example, if it were capped at 1,000 dollar contribution then the sierra club would be as influential as Exxon. So, if you think it is immoral to have rent a law going on, then you need to think about that issue as you VOTE!
    The preceeding applies to all parties and is not meant as a partisan post.

  103. 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.

    1. Re:Pretty effective I bet by archeopterix · · Score: 1
      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.
      Hm... I don't know how the Panamian VoIP market looks like, but if it's anything similar to what I know about other countries, most users won't even notice. Why? Because they probably even don't know they're using VoIP. They just call a local number, tone-dial their prepaid card number, then the phone number they want to reach, the VoIP company routes the call, and substracts the toll from their pre-paid account. Of course the price is much lower than what the POTS monopoly tries to extort.
  104. 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]?

  105. This is so ridiculous by PinkX · · Score: 1

    It remembers me of the record labels saying they're losing profit because of the various P2P networks.

    In most countries (if not all) the telcos are still the ones who carries most of the Internet traffic, as the dial-up connections are the most used. So what they lose (or, better said, do not earn) in terms of phone calls they get it for IP traffic over the phone lines, which goes to them anyways. And the proportion of the VoIP calls over the dial-up internet users is tiny compared to the number of total phone line suscribers who doesn't uses VoIP or doesn't have internet connections at all.

    I think the Panama government is doing WAY wrong with this, as they're supposed to defend the PEOPLE rights over the COMPANIES and not the other way.

    Has the telcos presented the government confident statistics about their lose of revenue because of the use of VoIP? Has the government made a deep study case?

    And because of all this there comes to my mind another question: what happens with the ISP's contracts? They're supposed to give you access to the 100% of the Internet, not 99.9% of it. So this is not just a violation of the consumers rights, but also of the ISPs ones because they're forced to not to give their customers a complete service.

  106. 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.

  107. 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.

  108. 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 fuzzybunny · · Score: 1
      Easily circumvented--at least in principle.

      Tunnelling does not imply a direction in which a connection is initiated.

      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.

      Taking this to its logical conclusion, what I could see is a virtual IP stack residing on top of some application; maybe a packet forwarding equivalent of FreeNet. Applying the principle that you can tunnel anything across anything else, even a single TCP port open anywhere would sort of negate all this silly talk of packet filtering.

      Proxies aren't an issue either, as anyone who's ever used something like this can attest.

      --
      Cole's Law: Thinly sliced cabbage
    3. 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?

  109. 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.

  110. 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.

  111. 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.
  112. Re:This isn't really all that different from what. by nomadic · · Score: 1

    So basically you expect us all to get an inside joke? And if we don't get it we're "ravenous pendants"? Interesting.

  113. 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.

  114. 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.

  115. 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?!

  116. 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.

  117. SSH by jaavaaguru · · Score: 1

    Tunnel the VoIP through SSH then. Most people I know would refuse to use an ISP that blocks SSH since it's used for plenty of other legitimate things.

    1. 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.
    2. Re:SSH by jaavaaguru · · Score: 1

      Oops, I forgot VoIP used UDP. Silly me :-P

  118. 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...

  119. Re:parent post exhibits absurd & simplistic an by Anonymous Coward · · Score: 0

    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.


    This is no the way most French motorways work.

    How they work is the following:

    * toll motorways are a closed domain. There is no way you can enter this closed domain without going through a booth (or destroying some property, namely fences) (of course, emergency services have some specific bypasses to efficiently go to the points of accidents. Opening these emergency bypasses without the proper equipment also means trespassing and/or destruction of property). It is of course an serious offense to build a unauthorised bypass :-)

    * You take a ticket at the entrance booth, you swipe at the exit booth. Or, you can subscribe for dirt cheap to a service which just OCRs your license plate at both boothes and bills you later.

    * One of the networks actually requires you to pay about every 40 km. This is so because it was built "cheaply", by linking together pieces of for-toll motorways and toll-free motorways (see next paragraph). On this network, if I remember correctly, OCRing your license plate requires only to *slow down* to 30 km/h, not actually stop.

    * Motorways are divided into two classes; link motorways and local. Local ones have so many entries and exits it would be uneconomical to put boothes on them; and the effect they have on discongesting the local & city road networks warrants them Public Good status. Link motorways are almost always for-toll, and you have exchanges only about every 10-20 km. (There are exceptions, for instance the Méridienne motorway, which has been completely subsidised, and built for dis-enclaving a mountainous, very rural and comparatively poor region. Also, some regions (Brittany, Alsace) deliberately choose to subsidise the motorway construction so they remain toll-free. Finally, some important national and departemental roads are also extended to 2x2 lanes, though of a slightly smaller gauche (and a 110 km/h speed limit, instead of 130 km/h on real motorways); these roads are never for-toll.

    For the French-system worshippers, one thing must be taken into account: it is unlikely the motorway companies break even before 2040, 2050 (the first couple of motorways gave their full return now, but the concession has been extended to subsidise the construction of the less profitable ones. There is a definite balance made here between the purely capitalistic notion of ROI and the notion of "Aménagement du Territoire" -- in other words, deliberately subsidising the development of some regions to limit the rural exodus and keep a reasonable balance of population & activity density).

  120. 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.
  121. Black women are movin' on up! by Anonymous Coward · · Score: 0

    The sour black cherry sez:

    We are now shift leaders at AM/PM!
    And the black men are shakin in they boots!

    Please Discuss.
    http://www.askheartbeat.com/UBB/ultimate bb.php?ubb =get_topic;f=1;t=002643;p=2

  122. Let Panama enjoy their intranet by Anonymous Coward · · Score: 0

    Don't wanna join the 21st century, eh? Well, enjoy your intranet down there folks. If you don't want my VoIP packets, I don't want any packets from you at all. ... lessee ... where are those ipchains rules.

    Although I have no regular correspondents in Panama, I'll block everything from Panama until the ludites come to their senses. I recommend you do the same.

  123. Simple Solution An Internet Cut off for C&W Pa by realxmp · · Score: 1

    UDP made me think of another thing with those initials. Usenet Death Penalty. Which simply put is a refusal to accept posts from the server under UDP and eventually a refusal to transmit posts to that server.

    The simple solution to this is to remind C&W Panama that their behavior is unacceptable. Persuade the surrounding ISP's to set their routers to drop all packets from C&W Panama ISP section and watch their customers from ISP to go bye bye. Nasty but effective. It's not something that would be nice to do but desperate times need desperate measures.

  124. 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!
  125. 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.
  126. Isn't the solution obvious? by Merls · · Score: 1

    As far as I can see the solution for this is obvious - DSL technologies. Now I dont have VoIP, but if I did BT (I am in the UK, that is my telco) would still be getting something, cos I am buying my ADSL from them.
    So the telco company has to change its business model slightly, so what - adapt!

  127. 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.
  128. Very easy to circunvent... by Kindaian · · Score: 1

    And if needed... VoIP will take the SSL bangwagon... and thrus the port/content will be "unavailable" for blocking...

    LOL

    P.S.- Why in the hell the phone company doesn't simply change the focus and make competitive offers for ISP connections?

  129. Not true at all. by Anonymous Coward · · Score: 0
    The geeks doing VoIP are not amateur cheap-skates. They are in the employ of international discount phone companies.

    These companies offer fantastically cheap call costs to other countries. How do they do it? Well, all they need is an access channel into the PSTN in both countries at either end of the call. They can then route traffic over the much cheaper Internet backbone, rather than pay either phone company's international rates.

    Either they have the general support of each country's phone company, or they don't. If they don't, what they do is pretend to be a large company which needs a PBX to do its work. They then route the internet traffic into the PBX and pay the normal business user rates for phone service.

  130. 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!
  131. 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.

  132. "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... --
  133. 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.

  134. Re:parent post exhibits absurd & simplistic an by Anonymous Coward · · Score: 0

    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

    The 8 million or so people living in London would seem to disagree with you. Interestingly, I don't see many "200 floor" buildings here (or in the rest of Europe, for that matter) - if anything, a building is on average 3-5 floors (except for council housing, et al.)

    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

    I'm a bit confused by this statement. Again, I can only speak of where I am -- but in addition to walking, there's the tube, buses, rail, cycling and, of course, driving. How exactly is this a transportation problem?

    Personally, I ride a bicycle. It's healthy and gets you to where you need to go quickly - 15-20 minutes across town. Not to mention, it's good for the environment. Why support oil companies?

    Cheers!

  135. OH, MY EYEEEES!!!!!!!! by medscaper · · Score: 1
    Jennifer Lopez = "JLo" (pron: "Jay-Low"). Bill Gates = "BGa" (pron: "Be-Gay")

    I understand 100% about JLo. I'm with you there, brother. :)

    But how many other people have asked you what the hell Bill Gates has to do with pr0n?

    (Sorry, it just sorta read that way...)

    --
    Any sufficiently well-organized Government is indistinguishable from bullshit.
    1. 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 :)

  136. Cable & Wireless of Cayman by Anonymous Coward · · Score: 1, Informative

    This type of behaviour is common with Cable and Wireless. I currently live in the Cayman Islands and the Terms and Conditions of the internet service offered by C&W explicitly states that VOIP is prohibited:

    7.2 The Service is offered subject to the availability of the necessary facilities. The Customer may not resell the Service to any third party or permit any third party to use the Service or Service Agreement Software. The Customer shall not allow the Service to be used, modified or adapted to transmit voice on the public telecommunications system of either C&W or any foreign telecommunications provider, and the Customer shall not connect to the PSTN at either the local or the distant end

    If you want internet access you must accept this agreement since C&W is the only ISP in Cayman.

    A couple years ago Net2Phone was sued by Cable and Wireless in the Caymans for offering long distance service within the Cayman Islands. C&W won the case since it violated the government mandated monopoly given to C&W for telephone services in the country. More recently, C&W has blocked access to BestNetCall.com.

    A phone call to North America costs US$1.46 per minute through C&W. A call through BestNetCall was being offered at US$0.26 per minute. You can see why they are aggressively attacking any service that undermines the cash cow they have in Panama and the Caymans.

    Just on a side note, they are also gouging the consumer for internet service as well. The cheapest DSL service they offer costs US$90 per month and its throttled to 128 down, 64 up! If you want 1544 down, 256 up you have to pay US$432 a month. Dialup costs US$44 for 30 hours per month plus $2.32 for each additional hour. You can get unlimited dialup hours for $96 per month, but you also have to pay $0.03 per minute local phone charges on this plan.

  137. The real issue... by Anonymous Coward · · Score: 0

    I think the real question here is: isn't the government suppose to protect people's interets and not companies profits?

    Another case were goverment is of no use: MS vs. USA

  138. UDP Netbios by Anonymous Coward · · Score: 0

    Some of the protocols that will eventually have to be blocked as a result include... udp portions of netbios ...and this would be a bad thing???

  139. They can't adapt. by Anonymous Coward · · Score: 0

    The whole damn country of Panama is far too dain bramaged from all the drugs they did in the '70's and '80's to ever fit back into world society anymore.

  140. Ha! by mattr · · Score: 2

    Silly Rabbit, Trix are for KIDS!

  141. re: Inefficient Transportation by Anonymous Coward · · Score: 0

    Over 10 years ago, I wrote a plan that would replace 90% of the roads in the US. Railroads are obsolete: think about it, you have 1,000 people going from point A to point B and if one person wants to get on or off you have to stop the entire train. Dumb.
    What's needed is an elevated personal transportation system. Think about:
    100% safe (no drivers, all automated -- no more car insurance)
    50 times faster (low end speeds of 120 mph, high end near 600 mph -- meaning an end to air carriers for all but overseas flights)
    fuel efficient (solar panels could charge the system)
    No more traffic jams (cargo carriers rerouted to holding areas during rush hour and move to their destinations at night)
    Reduced gov't spending on road maintenance (this system would be cheaper to build and maintain).
    You could put your kids in it in the a.m., it wouldn't stop except at the school.
    I sent the proposal to the Transportation subcommittee. That was 1991. But this will never fly because it would kill the gas companies, the car companies (who could manufacture the Personal Transportation Vehicles, but would mean a major retooling), insurance companies, etc.
    We've had the technology to do this for over 20 years. But don't hold your breath. Too many $$$ interests at stake and your loved ones lives aren't worth it to them.

  142. 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.
  143. The obvious conclusion by Anonymous Coward · · Score: 0

    Panama is a very corrupt compa^H^H^H^H^Hcountry. The government and law enforcement there is very easily bought out. More easily than in the US. I don't remember the details, but I think it was Panama that had the law enforcement killing citizens because of protests or labor meetings or something. This is he country that spawned Manuel Noriega.

    http://www.indymedia.org/front.php3?article_id=4 09 67 [Indymedia]

    http://webslingerz.com/eclauset/mediasouth/proje ct /panama/ [The Panama Deception]

    A technical problem that stems from MANY social/govt problems. I don't know if Slashdot is ready for this...

  144. Democracy != Political democracy by shish · · Score: 1

    In a democracy: The people vote for who makes decisions, the voted person makes decisions. I a political democracy (what we have): The people vote for who makes the decisions, the voted person takes bribes.

    --
    I mod down anyone who says "I will be modded down for this", regardless of the rest of their comment
  145. 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
  146. Re: Inefficient Transportation by PinkX · · Score: 1

    This comes to mind.

  147. Meanwhile at Sears.com... by Dr.+Mutex · · Score: 1

    "Why are so many people looking at wire cutters?"
    "Dunno, let's feature them on the front page"

  148. How and why? by t_allardyce · · Score: 1

    How does the internet handle voip and other streaming? surely it puts a massive strain on the network or are the major lines and routers so high-bandwidth that it doesnt care? what would happen if more people started using voip instead of the phone?

    and cant you just change ports anyway? if you were using some sort of IM system anyway it wouldnt take long to negotiate a port number semi randomly.

    --
    This comment does not represent the views or opinions of the user.
  149. 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.

  150. No the problem is Big Government, Liberal. by n9fzx · · Score: 1
    Actually, capitalism has nothing to do with this.

    In most developing countries, the government, not private industry, runs the state monopoly telecom carrier, and is the sole economic beneficiary of its operation. The cream of telephony for these governments has always been international long distance, something that they've always jealously protected from any competitor, even ham radio. [Want to know why morse code lasted so long in amateur radio? Hint: It's not easy to learn, it presents a barrier to entry, and every developing country has a vote at the ITU.]

    Even if they're using a contractor like C&W, the government reaps most of the profit from those $5 per minute calls to overseas families. Ah, the evils of Socialism!

    FZX

    --
    ...-.-
  151. So - Speak Freely by Anonymous Coward · · Score: 0

    The government of India is already doing that. But we use "Speak Freely" and can change to port number to anything we like. It's free, open source, and it works (Even on a 56kb dialup on VSNL).

  152. I'm not surprised by geekee · · Score: 1

    People wonder why I complain about the US govt. regulating business, e.g. Microsoft. This new legislation in Panama is the sort of thing you face when you start allowing govt. to regulate business. Once a business realizes that the govt. is willing to write laws to protect one business at the expense of another (In this case teleophony vs. internet, which is surprising since you'd think the same company would run both in Panama) they will naturally use govt. for their own ends to get an unfair advantage. Similarly, you can argue netscape did the same thing to MS. Tried to use the govt. to give them an unfair advantage because they couldn't compete against MS. You can argue MS is a monopoly, but at least they aren't using force supplied by the govt. for gain an advantage. All MS can do is negotiate contracts. Let Panama be a lesson as to the dangers of allowing govt. to interfere with business.

    --
    Vote for Pedro
  153. Cork em by Anonymous Coward · · Score: 0

    Send them to Greece to get some cork to block their important game ports.

  154. I love it by machine+of+god · · Score: 1

    I love it when business models/technologies start to become outdated; then, rather than evolve, the companies involved try to use litigation to prevent their own extinction. It's disgusting.
    Like you have a right to force people to use your services because if they don't, how will you get their money? (sorry, I know I could have worded that in a less trollish way.)

    On a partially related note: Does that remind anyone of any companies in the US?

  155. 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."
  156. Re:This isn't really all that different from what. by sayerofno · · Score: 1

    Ironically, the US Gov't doesn't carry insurance on its vehicles. Neither does it carry bonds. This is because the US Gov't essentially has "infinity cash" - at least in US Dollars. If a gov't employee rear-ends somebody, the gov't just pays the damages.

    Off topic I suppose, but interesting trivia none the less.

  157. I Lived in Panama for 5 years by egommer · · Score: 1

    I lived in Panama for over 5 years. 92-97. I can tell you the Cable & Wireless had little to do with the POTS till just recently. See, The way things work there is that all the polititions are bought and payed for just like you buying a new car. Favors are exchanged so freely that corruption is part of the culture.

    You where charged for all outside your immediate vicinity. All local calls where free of charge and still are.

    The proble lies When you place call outside the country. You could not use a long distance carrier. You had to pay the local telco rate wich was state ran. Near $1.55 per minute to call the US. Calling card Companies started to throw in local access numbers for each of the cities and sell calling cards for much less than half that rate. But the Local Telco go wind if this in started shutting down those numbers. All with the support of the Local polititions of course,
    When internet access started getting cheaper around 1994 I turned allot of Panamaians onto Net2Phone.com (aka IDT) They would allow 800 numbers to be called freely over the internet at that time. So all you needed was a 56k dialup and any calling card and voila local US rates form Panama. Cable & Wireless actually imporoved things a little. Most people stopped using POTS when BellSouth moved in hard with Digital PCS Phones. It's cheaper to call long distance on the cell than on the POTS. Now, No one even barely uses thier POTS in that country ecpect for local calling and faxes. I dought that this all really has any affect on POTS strangle hold for long. AT&T is moving into the area now and will offer GSM services for the first time. I was in Panama just this past March. Let me tell you. PCS phones are just as cheap if not cheaper than in the US.

    I agree with most peoples thoughts. This will be circumvented pretty easily.

    --
    Two Towers-Two Worlds.One seeks triumphs and freedom for man.The other deems man unworthy and wrecks them.
  158. If you're not allowed to ask questions by billstewart · · Score: 1
    then you won't have any problems with questionable activities....

    --

    Bill Stewart
    New Fast-Compression-only CPR http://preview.tinyurl.com/dy575ks
  159. Except.. by mindstrm · · Score: 1

    one of the main factors barring adopting voip in many areas is the fact that it doesn't work over tcp.

    Yes, I understand fully why tcp is not the best protocol for voip.. however....

    NAT. So many ISPs now, especially in poorer countries, use NAT. And not even good nat... the kind of nat that really only works well with tcp.

  160. 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?
  161. Re:parent post exhibits absurd & simplistic an by WhiteDragon · · Score: 1

    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.


    I personally would love to live in such an apartment. Sadly, I think that the events of 11 Sep, 2001 will really decrease new skyscraper building projects. I think the coolest thing in the world would be to live and work in an arcology, but I don't really think that we will see arcologies becoming a reality any time soon. I believe they could even make economical sense by themselves, but even if they are paid for in a public good model, I would approve.

    --
    Did you mount a military-grade, variable-focus MASER on an unlicensed artificial intelligence?
  162. Not fear of progress, but competition by AnotherScratchMonkey · · Score: 0
    and the US does it, too. And it's not limited to technology. Protection against all manner of goods is rampant in the US, with local producers often justifying it by pointing at foreign protectionism.

    Of course, taking this reasoning to its logical conclusion, goods would never pass state, city, or neighborhood boundaries. Protectionism is always wrong and stupid.

  163. Re:parent post exhibits absurd & simplistic an by jhunsake · · Score: 1

    Hello! We have many roads exactly like this in the US, rural and urban areas alike!

  164. Re:damn mexicans by jhunsake · · Score: 1

    Mod this shit insightful!!! I'm not kidding!

  165. Re:parent post exhibits absurd & simplistic an by Anonymous Coward · · Score: 0

    I guess there is nothing that special in the French motorway model (except perhaps the large body of law exceptions the motorway companies were granted -- and with all instances of law purchases I've heard about in the US, I'm not even sure that the fact that the French State grants special laws to cater for the needs of Mixt Economy (= semi-owned by state) Companies is that special after all.

  166. governments forcing technology to remain stagnet by wessman · · Score: 1

    Once again, governments are forcing technology to remain stagnet. With every great new innovation that means more bang of for the consumer dollar, companies using aging, legacy equipment would rather invest in politicians before technology. Traditional telcos don't want to embrace the VoIP industry (they'd rather rip us off every month) or lose their monopoly, so they convince gov't that VoIP is the spawn of Satan or something. Think P2P with music and movies. Think DIVX and/or TiVo technology with studios and TV networks. Think stem cell research and tissue/organ cloning with corrupt, decrepid organized religions (some that would rather forgive child molesters before accepting the fact that not everybody follows the belief system). Now think of the oldest industries and how little they have had to change (thanks to lobbying and unions) while technology offers better alternatives for the public (who the government should be working for): auto industry, telcos, movie studios, big-5 music corps., etc. Sure, there have been changes, but fundamentally, the same cow has been milked to death at the consumer's expense. And even when a young, new leader steps up to the executive plate, there are usually enough old white guys pulling the strings or dangling the carrot; thereby, innovation is squashed again. Am I bitter? Yes.

  167. VOIP Ports in Panama by RGUDUR · · Score: 1

    Cnet published an article naming Panama Idiot of the week for disabling the VOIP ports. The government of Panama was bound by exclusivity contracts with cable and wireless, negotiated by a previous administration. This measure is the unfortunate consequence of a corrupt and neoliberal government. The current government delayed, as much as legally possible the measures seeking to beneffit the public. The exclusivity contract with cable and wireless will expire within two years and VOIP ports may be restored after that. R.