Menu
Your Cart

Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point

Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point
  • Price: TK 6,100/-
  • Stock: In Stock
  • Model: Cudy AP1300 AC1200
TK 6,100/-
Ex Tax: TK 6,100/-

Key Features

    • Model: AP1300 Outdoor
    • AC1200 Dual Band Wi-Fi
    • MT7621DAT+MT7613B+MT7603E
    • 1× Gigabit WAN/LAN
    • 802.3at/af PoE or Passive PoE
    Specification
    General Feature
    BrandCudy
    ModelAP1300
    Button1× WPS Button 1× Reset Button
    Data Transfer5 GHz: Up to 867 Mbps 2.4 GHz: Up to 300 Mbps
    Antenna2× Detachable Omni-directional Antennas
    Frequency5 GHz, 2.4 GHz
    Technical Info
    Operating TemperatureOperating Temperature: -20~60 °C (-10~140°F) Storage Temperature: -40–70 °C (-40–158 °F)
    Network & Connection
    Ethernet Port1× Gigabit Ethernet (RJ-45) Port (Support IEEE802.3af PoE and Passive PoE)
    Physical Attributes
    Dimensions240×100×53.7mm
    Warranty Information
    Warranty1 Year
    Description

    Cudy AP1300 Outdoor AC1200 Dual Band Gigabit Wi-Fi Access Point

    The Cudy AP1300 Outdoor AC1200 Access Point delivers reliable dual-band wireless coverage with speeds up to 1200Mbps, making it an excellent solution for expanding outdoor network connectivity. Designed for high-performance wireless communication, it supports both 2.4GHz (300Mbps) and 5GHz (867Mbps) frequency bands.

    Built with a weatherproof enclosure, the Cudy AP1300 is perfect for outdoor environments, ensuring stable operation even in harsh conditions. Its Gigabit Ethernet port supports faster data transfer, while Power over Ethernet (PoE) allows flexible and convenient installation without needing extra power lines.

    This access point is ideal for use in residential yards, business premises, schools, and other open-area setups, providing stable and secure Wi-Fi for multiple devices simultaneously.


    Buy from Dear IT Solution

    Order the Cudy AP1300 Outdoor AC1200 Access Point from Dear IT Solution at the best price in Bangladesh. We guarantee the best quality product insured in Bangladesh for dependable outdoor network coverage


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