Menu
Your Cart

Tenda O3 Wireless 5km Outdoor Point To Point CPE

Tenda O3 Wireless 5km Outdoor Point To Point CPE
Tenda O3 Wireless 5km Outdoor Point To Point CPE
  • Stock:
  • Model: Tenda O3
TK 0/-
Ex Tax: TK 0/-

Key Features

    • Model: Tenda O3
    • wireless speed 150Mbps
    • Frequency 2.4GHz
    • 12dbi Directional Antenna
    Specification
    General Feature
    BrandTenda
    ModelTenda 03
    Button1*RST Button
    Interface1*FE PoE/WAN/LAN port 1*FE LAN Port Grounding Terminal 1*RST Button
    Data Transfer150Mbps
    Antenna3G Access: 12dbi Directional Antenna Antenna Beamwidth Horizontal: 60° Vertical: 30°
    Frequency2.4GHz
    Technical Info
    Power adapterPower Supply PoE Injector (12v 1A,Cat5e or Better Ethernet Cable Length > 60 meters) Maximum Power Consumption 6W Adjustable power by 1dBm
    Physical Attributes
    ColorWhite
    Dimensions270*94.86*67.5mm
    Warranty Information
    Warranty01 Year
    Description

    Tenda O3 Wireless 5km Outdoor Point To Point CPE in bd 

    The Tenda O3 Wireless 5km Outdoor Point to Point CPE is an excellent solution for long-range wireless connectivity in outdoor environments. With a range of up to 5 kilometers, this CPE (Customer Premises Equipment) enables high-speed point-to-point connections, making it ideal for connecting remote areas or extending network coverage across large outdoor spaces.

    Designed with a high-gain directional antenna and powerful 14dBi antenna, the O3 ensures stable and reliable data transmission, even in challenging weather conditions. Whether you're connecting buildings, providing internet access to remote locations, or building a wireless bridge for your office or campus, the Tenda O3 offers superior performance and efficiency.

    The easy-to-use web interface allows for simple setup and configuration, while the IP64-rated weatherproof design ensures the device remains operational in various environmental conditions such as rain, dust, and extreme temperatures.

    The Tenda O3 also features Passive PoE support, enabling flexible installation by delivering both power and data through a single Ethernet cable, making it a versatile solution for outdoor networks.


    Buying Suggestions from Dear IT Solution

    For the Tenda O3 Wireless 5km Outdoor Point to Point CPE, trust Dear IT Solution, your reliable tech partner in Bangladesh.

    At Dear IT Solution, we offer this robust and high-performance outdoor CPE at the best price in Bangladesh, ensuring genuine products and top-quality customer support. Whether you're connecting remote locations or building an outdoor wireless network, the Tenda O3 is the perfect solution for reliable, long-range connectivity.

    Order now from Dear IT Solution for unbeatable value and 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};