Menu
Your Cart

Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router

Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router
Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router
  • Price: TK 7,500/-
  • Stock: In Stock
  • Model: AC15
TK 7,500/-
Ex Tax: TK 7,500/-

Key Features

    • Model: AC15
    • Dimension: 8.9 x 7.07 x 3.02 in
    • Frequency: 2.4G and 5G
    • Antenna: 3 x 3dBi dual brand
    • Data Transfer: 5GHz: Up to 1300Mbps, 2.4GHz: Up to 600Mbps
    Specification
    General Feature
    BrandTenda
    ModelAC15
    Button1*Power on/off, 1*WiFi on/off, 1* Reset button,1* WPS button
    Antenna3*3dBi external dual band antennas
    FrequencyWorks over 2.4G and 5G concurrently
    Physical Attributes
    ColorBlack
    Dimensions272.44x162.85x43.71mm
    Warranty Information
    Warranty01 Year
    Description

    Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router

    The Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router is an advanced networking solution designed for seamless internet connectivity. With combined wireless speeds of up to 1900Mbps1300Mbps on the 5GHz band and 600Mbps on the 2.4GHz band—this router is ideal for bandwidth-intensive activities like HD streaming, online gaming, and large file downloads.

    Equipped with Beamforming+ technology, the AC15 ensures enhanced signal strength and extended Wi-Fi coverage, focusing the signal directly toward connected devices. The dual-core 1GHz processor guarantees smooth and reliable performance even when multiple devices are connected simultaneously.

    The USB 3.0 port allows you to connect external storage devices or printers, turning the router into a versatile media-sharing hub. Advanced security features, including WPA/WPA2 encryption and parental controls, ensure a safe and secure browsing experience for all users.

    With its sleek design and intuitive user interface, the Tenda AC15 is simple to set up and manage via the Tenda WiFi app, providing convenient control over your network from your smartphone.


    Buying Suggestions from Dear IT Solution

    For the Tenda AC15 AC1900 Smart Dual-Band Gigabit WiFi Router, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer this high-speed smart router at the best price in Bangladesh, ensuring genuine products and excellent customer service. Elevate your internet experience with the Tenda AC15 for unmatched speed, coverage, and convenience.

    Order now from Dear IT Solution and enjoy the ultimate WiFi performance!

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