Menu
Your Cart

D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)

D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)
  • Price: TK 3,250/-
  • Stock: In Stock
  • Model: D-Link COVR-C1202 AC1200
TK 3,250/-
Ex Tax: TK 3,250/-

Key Features

    • Model: D-Link COVR-C1202 AC1200
    • Data Rates: 1200Mbps (300 + 866)
    • 3 x Internal antennas
    • 128-bit AES Data Encryption
    • Wi-Fi MU-MIMO Technology
    Specification
    General Feature
    BrandD-Link
    Model D-Link COVR-C1202 AC1200
    ButtonSingle button Wi-Fi Protected Setup (WPS)
    InterfaceWired interface: 2 x Gigabit Ethernet LANDevice Interfaces (per unit): IEEE 802.11 ac/n/g/a wireless WAN 2 x Gigabit LAN ports
    Data Transfer •2.4 GHz: Up to 300 Mbps1 •5 GHz: Up to 866 Mbps1# • Ethernet: 10/100/1000 Mbps (auto-negotiation)
    AntennaEmbedded omni-directional antennas 3 x internal antennas
    Technical Info
    Power adapterPower Input: 100 V to 240 V/AC, 50/60 Hz, Power Consumption: 8.7 W Power Consumption (per unit): 3.5 W
    Physical Attributes
    Dimensions109 x 117 x 51 mm (4.29 x 4.61 x 2.01 in)
    Weight250 g (0.55 lbs) (per unit)
    Warranty Information
    Warranty01 year warranty
    Description

    D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack)

    The D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack) is a comprehensive whole-home Wi-Fi solution designed to eliminate dead zones and provide seamless connectivity throughout your living space. With its AC1200 dual-band technology, it delivers combined wireless speeds of up to 1200Mbps (300Mbps on 2.4GHz and 866Mbps on 5GHz), ensuring smooth streaming, gaming, and browsing experiences.

    This mesh system features Smart Roaming and Smart Steering technologies, which automatically connect your devices to the strongest signal and optimal band as you move from room to room, maintaining uninterrupted connectivity. The MU-MIMO technology allows multiple devices to receive data simultaneously, enhancing overall network efficiency.

    Each unit is equipped with three internal antennas and two Gigabit Ethernet LAN ports, providing high-speed wired connections for devices like smart TVs and gaming consoles. The system also supports 128-bit AES data encryption, ensuring your network remains secure from unauthorized access.

    Setting up the COVR-C1202 is straightforward with the D-Link Wi-Fi app, guiding you through a simple three-step installation process. The compact and sleek design of the units allows them to blend seamlessly into any home décor.


    Buy D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack) from Dear IT Solution

    Purchase the D-Link COVR-C1202 AC1200 Dual-Band Mesh Router (2 Pack) at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to experience seamless and reliable whole-home Wi-Fi coverage

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};