Menu
Your Cart

Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack

Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack
Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack
Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack
Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack
Cudy M3000 AX3000 Wi-Fi 6 Mesh System Router 3-Pack
  • Price: TK 15,000/-
  • Stock: In Stock
  • Model: M3000 AX3000-3 Pack
TK 15,000/-
Ex Tax: TK 15,000/-

Key Features

    • Brand: Cudy
    • Model: M3000 AX3000-3 Pack
    • Speed: 2402 Mbps (5GHz), 574 Mbps (2.4GHz)
    • Processor: 1.3GHz Dual Core Cortex-A53
    • Coverage: Up to 7000 sq. ft.
Specification
General Feature
BrandCudy
Model M3000 AX3000-3 Pack
ButtonPair Button, Reset Button
Interface
  • 1 × 2.5Gbps WAN Port
  • 1 × 10/100/1000Mbps LAN Port
Data Transfer1201 Mbps (5 GHz), 574 Mbps (2.4 GHz) Compatible with 802.11a/b/g/n/ac/ax Wi-Fi standards
Antenna5 × Internal Omnidirectional Antennas
Frequency5 GHz, 2.4 GHz
Physical Attributes
Power Adapter
  • Input: 100 ~ 240 V, 50/60 Hz AC
  • Output: 12V 1A DC
Warranty Information
Warranty1 year
Description

Cudy M3000 AX3000 Wi-Fi 6 Mesh Router 3-Pack – Fast Home Coverage

The Cudy M3000 AX3000 Wi-Fi 6 Mesh Router 3-Pack delivers ultra-fast, reliable, and seamless wireless connectivity for large homes and offices. With Wi-Fi 6 technology, this mesh system ensures high-speed internet, extended coverage, and smooth performance across all your devices.

Offering 2402 Mbps on the 5 GHz band and 574 Mbps on the 2.4 GHz band, the router provides a combined speed of up to 3000 Mbps for 4K/8K streaming, online gaming, and heavy workloads. The 3-pack system eliminates dead zones, giving up to 6000 sq. ft (approx. 560 m²) of strong Wi-Fi coverage.

With MU-MIMO, OFDMA, and Beamforming technology, it connects multiple devices simultaneously without speed drops. The True Mesh Technology ensures smooth roaming as you move around your home.

Setup is simple with the Cudy mobile app, allowing you to create guest networks, manage parental controls, and monitor network usage. WPA3 encryption secures your network, while automatic firmware updates keep it optimized and protected.

Its sleek design blends with any home or office environment, and energy-efficient performance ensures low power usage without compromising speed.

Whether for smart homes, work-from-home setups, or heavy streaming, the Cudy M3000 AX3000 Wi-Fi 6 Mesh Router 3-Pack guarantees fast, secure, and stable connectivity everywhere.


Buy Cudy M3000 Mesh Router 3-Pack in Bangladesh – Dear IT Solution

Purchase the Cudy M3000 AX3000 Mesh Router 3-Pack at the best price in Bangladesh from Dear IT Solution. Enjoy:

  •  Genuine product with warranty

  •  Fast delivery across Bangladesh

  •  Expert support for setup and installation

Order now at Dear IT Solution and experience high-speed whole-home Wi-Fi with the Cudy M3000 Router.

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