Menu
Your Cart

Tenda F6 300Mbps WiFi Router

Tenda F6 300Mbps WiFi Router
Tenda F6 300Mbps WiFi Router
  • Price: TK 1,490/-
  • Stock: In Stock
  • Model: F6
TK 1,490/-
Ex Tax: TK 1,490/-

Key Features

    • Model: F6
    • 4*5dBi High Gain Omni-Directional antennas
    • Support WISP and Universal Repeater
    • Support the easy-installation setup
    • Frequency: 2.4 GHz
    Specification
    General Feature
    BrandTenda
    ModelF6
    Data Transfer300Mbps
    Antenna4 antenna
    Frequency2.4GHz
    Technical Info
    Power adapterPower Input: 100-240V-50 / 60Hz 0.3A Output: DC 9V == 0.6A
    Physical Attributes
    Dimensions127.4mm * 90.5mm * 26mm
    Weight200 g
    Warranty Information
    Warranty01 Year Warranty
    Description

    Tenda F6 300Mbps WiFi Router in bd 

    The Tenda F6 300Mbps WiFi Router is a smart and cost-effective solution for seamless wireless connectivity in homes and small offices. With a wireless speed of 300Mbps, this router ensures smooth streaming, online gaming, video calls, and fast browsing for multiple devices.

    Equipped with four external high-gain antennas, the Tenda F6 provides exceptional Wi-Fi coverage and stable signal strength, eliminating dead zones in your home. Its multi-mode functionality allows it to work as a router, repeater, or access point, adapting to your specific networking needs.

    The simple setup interface ensures that even beginners can configure the router within minutes, while the WiFi scheduler feature allows you to manage and control the Wi-Fi usage efficiently, conserving energy when not in use.

    With its sleek and modern design, the Tenda F6 is not just a powerful networking device but also a stylish addition to your space.


    Buying Suggestions from Dear IT Solution

    For the Tenda F6 300Mbps WiFi Router, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer the Tenda F6 at the best price in Bangladesh, ensuring authentic products and outstanding customer support. Whether you're upgrading your home network or need a reliable solution for a small office, the Tenda F6 is an excellent choice for performance and reliability.

    Order your Tenda F6 300Mbps WiFi Router today from Dear IT Solution for unmatched value and quality!

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