Elon Musk's Starlink Receives License to Provide Internet Services in Nigeria and Mozambique

The Nigerian Communication Commission NCC Approved Elon Musk's Starlink to offers Internet Service in Nigeria.

SpaceX broadband internet system - Starlink

Elon Musk which is currently the Tesla CEO made an announcement on Friday 27, 2022 on his Twitter page that Starlink, the SpaceX broadband internet system has been granted an approval to provide internet services in Nigeria and Mozambique.

Starlink is an internet provider and a subsidiary company of SpaceX - space exploration company own by Elon Musk. Starlink currently operate in thirty-six (36) countries and and has over 400,000 subscribers around the world.

NCC confirmed this Elon's announcement and the license granted was followed after visit to Nigeria by the company’s team in May last year to discuss the possibility of obtaining a licence to offers Internet Service in Nigeria.

Starlink received two licenses, which include the International Gateway license and Internet Service Provider (ISP) license, and will be trading as Starlink Internet Services Nigeria Ltd. According to NCC, the International Gateway license has a 10-year tenure while the ISP license is to last for five years. Both licenses take effect from May 2022 and may be renewed after the expiration.

- NCC confirmed.

Starlink have received two (2) licences - (1) The International Gateway License and (2) The Internet Service Provider ISP, and the company will be doing business as Starlink Internet Services Nigeria LTD.

In addition to the NCC announcement, Starlink has been offered an International Gateway License of ten (10) years tenure while its Internet Service Provider ISP is to last for five (5) years. These license tenure have take effect from May, 2022 and both licenses maybe renewed after expirations.

How can I boost my social medial account




Starlink entering Nigeria - creating a competitive space to present Nigerian Internet service provider that is dominated by telcos like MTN and Airtel, and as well as individual ISPs such as Spectranet, SMILE and others.

Meanwhile when comparing Starlink subscription plans to existing internet plans in Nigeria which cost an average of 50USD, Starlink is a more expensive option costing 599USD (330,000Naira) for a full kit, plus a terminal, mounting tripod, and Wi-Fi router, then a 110USD (60,500Naira) for preorder and monthly subscription. Starlink premium service costs about 2,500USD (1.375 Million Naira) for the full kit and 500USD (275,000Naira) on a monthly basis.

In excess, Starlink subscription plan price range are deemed costly for the average Nigerians, unless the internet provider company - Starlink offers a different price range for the Nigerian Internet Space Market.

Like I said earlier, Starlink is a low latency broadband internet system and the company claims to meet the needs of consumers in rural areas with low internet penetration across the globe. In simpler terms, it delivers super-fast internet via satellites to rural areas. However, we hope it doesn't offers it price range too expensive to average Nigerians like it does in other countries.

Leave you opinions about this in the comments section, and thanks for reading.

Bigtech telegram channel


function blurContent() { const postContent = document.querySelector('.post-body'); if (!postContent) return; // Reset if already blurred if (postContent.classList.contains('already-blurred')) { resetBlur(); } postContent.classList.add('already-blurred'); originalNodes = []; const textNodes = []; function getTextNodes(node) { if (node.nodeType === Node.TEXT_NODE && node.nodeValue.trim() !== '') { textNodes.push(node); } else if ( node.nodeType === Node.ELEMENT_NODE && !['H1', 'H2', 'H3'].includes(node.tagName) ) { node.childNodes.forEach(getTextNodes); } } getTextNodes(postContent); const totalWords = textNodes.reduce( (count, node) => count + node.nodeValue.trim().split(/\s+/).length, 0 ); const visibleWords = Math.ceil(totalWords * 0.1); let wordCount = 0; textNodes.forEach((node) => { const words = node.nodeValue.trim().split(/\s+/); if (wordCount >= visibleWords) { const blurredSpan = document.createElement('span'); blurredSpan.classList.add('blurred'); blurredSpan.innerText = words.join(' '); originalNodes.push({ blurred: blurredSpan, original: node }); node.replaceWith(blurredSpan); } else if (wordCount + words.length > visibleWords) { const visiblePart = words.slice(0, visibleWords - wordCount).join(' '); const hiddenPart = words.slice(visibleWords - wordCount).join(' '); const visibleTextNode = document.createTextNode(visiblePart + ' '); const blurredSpan = document.createElement('span'); blurredSpan.classList.add('blurred'); blurredSpan.innerText = hiddenPart; originalNodes.push({ blurred: blurredSpan, original: node }); node.replaceWith(visibleTextNode, blurredSpan); } wordCount += words.length; }); // Blur images after the first two and before the last one const images = postContent.querySelectorAll('img'); images.forEach((img, index) => { if (index >= 2 && index < images.length - 1) { img.classList.add('blurred-image'); img.style.pointerEvents = "none"; } }); // Add lock message const firstParagraph = postContent.querySelector('p'); if (firstParagraph && !document.querySelector('.lock-message')) { const lockMessage = document.createElement('div'); lockMessage.classList.add('lock-message'); lockMessage.innerHTML = '🔒 This content is locked. Click to unlock the full post.'; firstParagraph.insertAdjacentElement('afterend', lockMessage); lockMessage.addEventListener('click', async function () { const isSubscribed = localStorage.getItem('isSubscribed') === 'true'; if (isSubscribed) { unlockContent(); // localStorage.clear(); return; } let lastsubdate = localStorage.getItem('lastsubdate'); if (!lastsubdate || lastsubdate.length !== 10) { lastsubdate = await chkusbtm(); localStorage.setItem('lastsubdate', lastsubdate); } // Parse the 10-digit string to datetime const minutes = lastsubdate.slice(0, 2); const hours = lastsubdate.slice(2, 4); const day = lastsubdate.slice(4, 6); const month = lastsubdate.slice(6, 8); const year = '20' + lastsubdate.slice(8, 10); const expiryDate = new Date(`${year}-${month}-${day}T${hours}:${minutes}:00`); const timeLeft = expiryDate.getTime() - Date.now(); if (timeLeft > 0) { localStorage.setItem('isSubscribed', 'true'); unlockContent(); } else { localStorage.setItem('isSubscribed', 'false'); showPopup(); } }); } // Add styles const style = document.createElement('style'); style.innerHTML = ` .blurred { filter: blur(6px); user-select: none; position: relative; } .blurred-image { filter: blur(10px); user-select: none; pointer-events: none; position: relative; } .lock-message { background: #ffecec; color: #d9534f; padding: 10px; border: 1px solid #d9534f; text-align: center; font-weight: bold; margin: 15px 0; border-radius: 5px; cursor: pointer; } .lock-message:hover { background: #f8d7da; } `; document.head.appendChild(style); } function unlockContent() { document.querySelectorAll('.blurred').forEach((el) => { el.classList.remove('blurred'); }); document.querySelectorAll('.blurred-image').forEach((img) => { img.classList.remove('blurred-image'); img.style.pointerEvents = "auto"; }); const lockMessage = document.querySelector('.lock-message'); if (lockMessage) { lockMessage.style.display = "none"; } localStorage.setItem('contentLocked', 'false'); } function resetBlur() { originalNodes.forEach(({ blurred, original }) => { blurred.replaceWith(original); }); document.querySelectorAll('.blurred-image').forEach((img) => { img.classList.remove('blurred-image'); img.style.pointerEvents = "auto"; }); const lockMessage = document.querySelector('.lock-message'); if (lockMessage) lockMessage.remove(); document.querySelector('.post-body')?.classList.remove('already-blurred'); originalNodes = []; }

VIP Center

Loading ID...
Not Subscribed
View Service Agreement
Choose Your Plan
For new users
1 Day VIP
$1
$1.50
$1 per day
Discount
1 Week VIP
$4.99
$6.93
$0.71 per day
Discount
1 Month VIP
$19.99
$29.70
$0.66 per day
Best value with monthly subscription! Get full VIP access at just $0.66 per day.
Amount will be converted automatically at current rates
Payment Method
FW
Flutterwave