Menu
Your Cart

Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender

Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender
Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender
  • Price: TK 4,700/-
  • Stock: In Stock
  • Model: RE3000
TK 4,700/-
Ex Tax: TK 4,700/-

Key Features

    • Model: RE3000
    • Extremely Fast AX3000 Wi-Fi 6 Technology
    • Frequency: Dual Band 2.4GHz & 5GHz (11ax)
    • Signal Rate: 5GHz: 2402Mbps & 2.4GHz: 574Mpbs
    • 3-in-1 WiFi Extender / Access Point / Add-On mesh
    Specification
    General Feature
    BrandCudy
    ModelRE3000
    ButtonReset Button / WPS Button
    Antenna2*External Antennas + 1*Internal Antennas
    Frequency2.4GHz & 5GHz (11ax)
    Technical Info
    Operating Temperature 0℃~40℃
    Power adapterDirect plug-in power supply (100V-240V)
    Warranty Information
    Warranty01 Year
    Description

    Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender

    The Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender is a high-performance device designed to eliminate Wi-Fi dead zones and provide ultra-fast, seamless wireless coverage throughout your home or office. With the latest WiFi 6 technology, this extender ensures faster speeds, higher capacity, and lower latency for all your connected devices.

    Supporting dual-band connectivity, the Cudy RE3000 delivers speeds up to 574Mbps on 2.4GHz and 2402Mbps on 5GHz, making it perfect for 4K streaming, online gaming, video conferencing, and smart home devices. The Mesh capability allows it to work seamlessly with your existing router, creating a unified network where devices automatically connect to the strongest signal.

    Powered by advanced MU-MIMO and OFDMA technologies, the Cudy RE3000 handles multiple connections efficiently, ensuring every device receives optimal bandwidth without interruption. Whether you’re gaming, streaming, or downloading, experience smooth and stable connections like never before.

    The RE3000 features a built-in Gigabit Ethernet port for connecting wired devices like PCs, gaming consoles, or smart TVs, ensuring maximum speed and reliability. The smart signal indicator helps you find the best spot for installation, ensuring the strongest Wi-Fi coverage.

    Easy setup is possible through the WPS button or the Cudy app, making installation and management a breeze. Enhanced security with WPA3 encryption ensures your network stays protected from potential threats.

    The Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender combines powerful performance, easy installation, and superior security, making it the ideal choice for extending Wi-Fi in modern homes and offices.

    Buy Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender from Dear IT Solution

    Purchase the Cudy RE3000 AX3000 Dual Band Mesh WiFi 6 Range Extender 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 upgrade your network and experience the power of WiFi 6

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