Menu
Your Cart

TP-Link Archer C20 AC750 Dual Band Router

TP-Link Archer C20 AC750 Dual Band Router
TP-Link Archer C20 AC750 Dual Band Router
  • Price: TK 2,050/-
  • Stock: In Stock
  • Model: Archer C20 AC750
  • MPN: ARCHER C20
TK 2,050/-
Ex Tax: TK 2,050/-

Key Features

    • Brand:Tp-Link
    • Model: Archer C20 AC750
    • MPN: ARCHER C20
    • 4 10/100Mbps LAN ports
    • 1 10/100Mbps WAN port
    • 9V/0.6A(EU), 9V/0.85A(US)
    Specification
    General Feature
    BrandTp-Link
    Model Archer C20 AC750
    Data Transfer5GHz: Up to 433Mbps 2.4GHz: Up to 300Mbps
    Antenna3× Fixed Antennas Multiple antennas form a signal-boosting array to cover more directions and large areas
    Frequency2.4GHz and 5GHz
    Technical Info
    Operating Voltage9V/0.6A(EU), 9V/0.85A(US)
    Physical Attributes
    Dimensions9.1 x 5.7 x 1.4 in. (230 x 144 x 35mm)
    Warranty Information
    Warranty01 Year Warranty
    Description

    TP-Link Archer C20 AC750 Dual Band Router

    The TP-Link Archer C20 AC750 Dual Band Router offers reliable, high-speed internet connectivity with dual-band support, making it an excellent choice for streaming, browsing, and online gaming. With speeds up to 750 Mbps, this router is perfect for home or small office use, providing seamless connectivity across multiple devices.

    Key Features
    Model: Archer C20
    Dual-Band: 2.4 GHz (up to 300 Mbps) and 5 GHz (up to 433 Mbps) for a combined speed of 750 Mbps
    Wireless Standard: 802.11ac, three times faster than wireless N speeds
    Antenna: Three external antennas for stable omnidirectional signal and coverage
    Security: WPA/WPA2 encryption for safe and secure browsing
    Easy Setup and Management: User-friendly interface and mobile app for simple setup and management
    Product Benefits
    Enhanced Speed and Range: The 5 GHz band ensures faster speeds for HD streaming and gaming, while the 2.4 GHz band provides stable connectivity for everyday tasks.
    Dual-Band Flexibility: Separate bands minimize interference, allowing multiple devices to connect without compromising performance.
    Reliable Signal Strength: Three external antennas boost the router's range and ensure stable, high-quality connections across your home or office.
    Secure Browsing: With WPA/WPA2 encryption, your network stays secure, protecting against unauthorized access.
    Why Choose the TP-Link Archer C20 AC750 Router?
    The TP-Link Archer C20 AC750 router is ideal for users who want to enhance their network with dual-band capability, reliable signal strength, and easy management. Perfect for streaming, gaming, and everyday browsing, it provides value and performance for any modern home setup.

    Buying Suggestion at Dear IT Solution
    Purchase the TP-Link Archer C20 AC750 Router from Dear IT Solution to receive the best quality product insured in Bangladesh. Dear IT Solution ensures competitive pricing and reliable customer support, making it a trusted choice for network solutions.



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