Menu
Your Cart

TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance

TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance
  • Price: TK 3,100/-
  • Stock: In Stock
  • Model: Archer C6
TK 3,100/-
Ex Tax: TK 3,100/-

Key Features

    • Model: Archer C6
    • Frequency: 2.4GHz and 5GHz
    • Data Transfer Rate (Wifi) - 1200 Mbps
    • Power Supply: 12V/1A
    • Coverage Area: 1500 to 2000 sq ft (Max)
    Specification
    General Feature
    BrandTP-Link
    ModelArcher C6
    ButtonReset Button, Power On/Off Button, WPS/Wi-Fi On/Off Button
    Interface4*10/100/1000Mbps LAN Ports, 1*10/100/1000Mbps WAN Port
    Frequency2.4GHz and 5GHz
    Technical Info
    Power adapter12V/1A
    Physical Attributes
    Dimensions9.1 × 5.7 × 1.4 in (230 × 144 × 35 mm)
    Warranty Information
    Warranty01 Year Warranty
    Description

    TP-Link Archer C6 AC1200 Gigabit Router – Dual Band Wi-Fi Performance

    The TP-Link Archer C6 AC1200 Gigabit Router delivers reliable and high-speed wireless connectivity for homes and small offices. Equipped with dual-band Wi-Fi technology, this router provides up to 1200 Mbps total speed—300 Mbps on 2.4GHz and 867 Mbps on 5GHz—perfect for streaming HD videos, online gaming, and seamless browsing.

    Built with MU-MIMO technology, the Archer C6 communicates with multiple devices simultaneously, reducing wait time and enhancing the performance of each connected device. Whether you're watching Netflix, attending Zoom meetings, or gaming online, this router ensures a stable and fast connection without buffering.

    The router features five high-performance antennas (4 external and 1 internal) that ensure broad coverage, stable signal strength, and reduced dead zones. With Beamforming technology, it focuses the Wi-Fi signal toward connected devices, delivering stronger and more reliable connections, even at a distance.

    Powered by a powerful Qualcomm processor, the Archer C6 offers lag-free performance and smooth multitasking. It is equipped with five Gigabit ports (1 WAN + 4 LAN), which are 10x faster than standard Ethernet ports, providing blazing-fast wired connections for devices like gaming consoles, PCs, and smart TVs.

    The intuitive TP-Link Tether App allows you to easily set up and manage your home network right from your smartphone. Monitor connected devices, manage guest access, control bandwidth usage, and perform security updates all from a user-friendly interface.

    Security features include WPA3 encryption, firewall protection, guest network access, and parental controls, ensuring your data and family are safe from online threats.

    With a sleek and modern design, the Archer C6 fits beautifully in any home or office setup. It supports IPv6, the latest internet protocol, making your network future-ready.


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