Input your search keywords and press Enter.

When It Comes To IPV6 Adoption Zimbabwe Is Second In Africa

If you have at least a basic understanding of how the internet works you have heard this countless times before. The majority of the internet uses IPv4 addresses like 1.1.1.1 to pinpoint and identify each connected device and these are running have run out.

“I am a little embarrassed about that because I was the guy who decided that
32-bit was enough for the Internet experiment. My only defense is that
choice was made in 1977, and I thought it was an experiment. The problem is the
experiment didn’t end, so here we are.”
—Vint Cerf, speaking in 2011, credited as one of the co-founders of the Internet

IPv6 is the answer

With IPv4 you can expect to get around 232 addresses (about 4.3 billion) and that’s in theory. In reality it’s even less than this as some addresses are reserved. Also because addresses were dished out in blocks it means for example while AFRINIC still has a few addresses ARIN ran out a long time ago.

IPv6 meanwhile has lots of addresses. 340 undecillion addresses if you must know. With so many addresses there is really no need for despicable things like NAT. Everyone can have a public facing IP address anytime.

World adoption is at 24%

Right now according to Google, and these guys know their stuff, about a quarter of the people on the web are using IPv6 addresses. Germans lead with 41% of them using IPV6 with America second. In both cases adoption is mainly driven by the fact that IPv4 addresses ran out.

Surprisingly when it comes to IPv6 adoption Zimbabwe is second only behind, yet another surprise, Gabon where 10.6% of connections support IPv6. I have to say I am surprised. If someone had asked me I would have gone for countries like South Africa, Nigeria and Egypt.

It’s all thanks to Liquid (ZOL) I think. Years ago they decided to deploy native IPv6. The result 6.66% of Zimbabwean connections support IPv6.I feel the figures could be higher given that ZOL is our largest ISP and I think I know why it’s not.

A lot of devices come with IPv6 disabled and some routers, weirdly some supplied by ZOL themselves, do not support IPV6. Personally I had to go to great lengths to get IPV6 support on my WiFi router with Wibroniks.


var airtime_amount = form[“co[airtime_amount]”].value.trim();

if ( !RegExp(“^(\d{1,2}|\d{1,2}\.\d(\d?|0?))$”,”gm”).test(airtime_amount) || airtime_amount 50 ) {
alert(“Airtime amount should be between 0.1 and 50 with max of 2 decimals.”);
return false;
}

var number_to_recharge = form[“co[phone_to_recharge]”].value.trim();
var ecocash_number = form[“co[ecocash_number]”].value.trim();
var target_network = “”;

if ( RegExp(“^(077[1-9]|078[2-5])\d{6}$”,”gm”).test(number_to_recharge) ){
target_network = “Econet”;
} else if( RegExp(“^073[2-9]\d{6}$”,”gm”).test(number_to_recharge) ) {
target_network = “Telecel”;
} else if( RegExp(“^071[2-9]\d{6}$”,”gm”).test(number_to_recharge) ) {
target_network = “NetOne”;
} else if( RegExp(“^08644\d{6}$”,”gm”).test(number_to_recharge) ) {
target_network = “Africom”;
}

if (target_network.length === 0){
alert(“Please enter a valid NetOne/Telecel/Econet/Africom number to recharge e.g 071×123456 or 08644123456”);
return false;
} else {
if ( RegExp(“^(077[1-9]|078[2-5])\d{6}$”,”gm”).test(ecocash_number) ){
var answer = confirm(“You are buying $” + airtime_amount + ” for ” + number_to_recharge + “, click OK and check your EcoCash phone to confirm.”);

if ( answer === true ) {
var loader = document.getElementsByClassName(“co-simple-buying-form-loader”);

loader[0].style = “display: block”;

jQuery.ajax({
type:”POST”,
url: “https://www.techzim.co.zw/wp-admin/admin-ajax.php”,
data: {
“action”: “co_handle_simple_buying_form”,
“co[phone_to_recharge]”: number_to_recharge,
“co[airtime_amount]”: airtime_amount,
“co[ecocash_number]”: ecocash_number,
},
success: function(data){
if ( data.success === true ) {
window.location.href = data.order_received_url;
} else if ( data.success === false ) {
alert( data.error_message );
}
},
error: function(){
window.location.href = “https://www.techzim.co.zw”;
}
});
}

return false;
} else {
alert(“Please enter a valid EcoCash number e.g 07xx123456”);
return false;
}
}
}

Quick NetOne, Telecel, Africom, Econet Airtime Recharge





Please enable JavaScript so you can buy.

The post When It Comes To IPV6 Adoption Zimbabwe Is Second In Africa appeared first on Techzim.