Jul 312009
 

APJII suggest that Internet Service providers Ready to migrate
Friday, December 07, 2007 | 05:31 WIB

TEMPO Interactive, Jakarta: Association of Internet Service Internet Company (APJII) require the company’s Internet service provider to prepare themselves migrated to the Internet address protocol version IPv4 addresses for IPv4 Internet protocol version is almost full. "In two years with the same IPv4 address is exhausted," the Chairman APJII Sylvia Sylvia Sumarlin in Jakarta, Thursday (6 / 12).

He said, the company’s Internet service provider should begin migrating although expensive investment. Before investing, the better the company began using the tools that are ready system (dual system ready) bermigasi to IPv6. "There is no other way," said Sylvia in Jakarta, Thursday (6 / 12).

The government is now being set up IPv6 addresses. Some of the steps the policy community is being prepared with the internet service providers.

He admitted to migrate from IPv4 to IPv6, infrastructure investment and the value is quite expensive. Start at the beginning of the internet in year 1995-1996, the value of the investment is only U.S. $ 300 thousand (approximately Rp 750 million). However, the current value of investment increased dramatically.

In addition to the constraints of expensive investment, according to him, there are several obstacles that prevent, namely Ipv6 international backbone network and local network that are not yet available.

Furthermore, he said, private sector participation, especially for the Internet service provider is needed. "I started making sites with IPv6," said Sylvia.

In addition, education to the community also needed. Moreover, current education and socialization of IPv4 this also has not been completed.

Currently there are 144 registered concessionaire company providing internet servive provider (ISP) and the 27 principles of concessionaire companies ISPs across the country. The number of internet users in the country continue to grow. In 2002 reached a new 5 million, in 2007, has now reached 20 million users. However, if the amount is calculated from the total population, the new 9 percent of the total population of Indonesia

DIAN YULIASTUTI

 

Disadur dari TEMPO interaktif.

Jul 302009
 

Here is the case:

I have already wordpress/blog installation running on httpd with ipv4.(with no ipv6 enabled).
I want everyone with native ipv6 be able accesing my blog.
I have one server already connected to ipv6 via he.net tunnel brokers on different region.

It’s also have httpd listen on both ipv4/ipv6.

So here’s what i have done.

    * I made a backup of wordpress installation on original server.
$ tar cjf wordpress.tar.bz2 wordpress
    * Copy and extract  wordpress backup to ipv6 enabled
server.(in my case it's extracted on /var/www/html/)
$ tar xjf wordpress.tar.bz2
    * Edit wp-config.php

since wordpress using database on original server. I have to create one user, that can access the database from network.(i’m not going to explain how to do it, it’s not beyond this article scope).

define('DB_NAME', 'database');
define('DB_USER', 'user');
define('DB_PASSWORD', 'password');
define('DB_HOST', 'ip of original machine');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
    * Create virtualhost on httpd, same as original server.

Continue reading »