Menu
Your Cart

TP-Link Deco M4 AC1200 Dual-Band Mesh Router (1 Pack)

TP-Link Deco M4 AC1200 Dual-Band Mesh Router (1 Pack)
-10 %
TP-Link Deco M4 AC1200 Dual-Band Mesh Router (1 Pack)
  • Price: TK 3,850/-
  • special price: TK 3,450/-
  • Stock: In Stock
  • Model: Deco M4 1 Pack
TK 3,450/-
TK 3,850/-
Ex Tax: TK 3,450/-

Key Features

    • Model: Deco M4
    • Deliver Wi-Fi to an area of up to 2,000 square feet
    • connect up to 100 devices
    • Frequency: 2.4 GHz, 5 GHz
    • Speed up to 1200 Mbps
    Specification
    General Feature
    BrandTP-LINK
    ModelDeco M4 1 Pack
    Button1 Reset button on the underside
    Interface2 Gigabit Ethernet Ports (WAN/LAN auto-sensing) per Deco unit
    Data Transfer300 Mbps on 2.4 GHz 867 Mbps on 5 GHz
    Antenna2 internal dual-band antennas per Deco unit
    Frequency2.4 GHz and 5 GHz
    Technical Info
    Power adapterAC adapter input : 100-240V ~ 50/60Hz 0.4A AC adapter output : 12V ⎓ 1.2A External Power Supply : 12 V/1.2 A Transmit Power : FCC: <30 dBm CE: <20 dBm (2.4 GHz) <23 dBm (5 GHz)
    Physical Attributes
    Dimensions3.57 x 3.57 x 7.48 inches
    Weight2.2 pounds
    Warranty Information
    Warranty01 Year
    Description

    TP-Link Deco M4 AC1200 Dual-Band Mesh Router (1 Pack)

    The TP-Link Deco M4 AC1200 Dual-Band Mesh Router is an advanced Wi-Fi solution designed to provide seamless and uninterrupted connectivity throughout your home or office. With its Mesh technology, the Deco M4 eliminates dead zones by creating a single, unified network, ensuring smooth transitions between rooms without losing connection.

    Featuring dual-band AC1200 speeds, this router delivers up to 1167Mbps (867Mbps on 5GHz and 300Mbps on 2.4GHz) for fast and reliable internet performance. Whether you’re streaming HD videos, gaming online, or working remotely, the Deco M4 ensures low-latency and buffer-free browsing.

    The Deco M4 is incredibly easy to set up using the TP-Link Deco app, which provides a step-by-step guide to configure the router in minutes. It also includes Parental Controls, Quality of Service (QoS), and Guest Network features to enhance your Wi-Fi experience. The MU-MIMO technology allows multiple devices to connect simultaneously without reducing performance, making it an ideal choice for homes with multiple users and smart devices.

    Buying Suggestion from Dear IT Solution

    Purchase the TP-Link Deco M4 AC1200 Dual-Band Mesh Router (1 Pack) at the best price in Bangladesh from Dear IT Solution. We provide the best quality product insured in Bangladesh, ensuring superior performance and reliability.

    Why Buy from Dear IT Solution?

    Seamless Mesh Wi-Fi to eliminate dead zones
    Fast AC1200 speeds for smooth streaming and gaming
    Easy setup with the TP-Link Deco app
    MU-MIMO technology for multiple device connectivity
    Best price in Bangladesh with reliable after-sales support

    Upgrade your Wi-Fi experience today with the TP-Link Deco M4 from Dear IT Solution—order now for fast and secure delivery

    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};