Menu
Your Cart

D-Link R03 N300 300Mbps Smart Router

D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
D-Link R03 N300 300Mbps Smart Router
  • Price: TK 0/-
  • Stock: In Stock
  • Model: R03
TK 0/-
Ex Tax: TK 0/-

Key Features

    • Model: R03
    • Wi-Fi 4 (802.11n) Technology with 300 Mbps speed
    • 1x 10/100 Fast Ethernet WAN Port
    • 4x 10/100 Fast Ethernet LAN Ports
    • 2 x external dipole antennas (5 dBi)
    Specification
    General Feature
    BrandD-Link
    ModelR03
    Interface 4 x 10/100 Mbps LAN ports, 1 x 10/100 Mbps Ethernet WAN port, 1 x Reset/WPS button, 1 x power connector
    Data Transfer300 Mbps
    Antenna2 x external dipole antennas (5 dBi)
    Frequency2.4 GHz Up to 300 Mbps
    Technical Info
    Power adapterPower Input: 12V 1A
    Physical Attributes
    Dimensions158 x 131.35 x 35.75 mm
    Weight150 g
    Warranty Information
    Warranty01 Year
    Description

    D-Link R03 N300 300Mbps Smart Router

    The D-Link R03 N300 300Mbps Smart Router is a high-performance wireless router designed to deliver seamless internet connectivity for homes and small offices. With a maximum wireless speed of 300Mbps, this router ensures smooth HD video streaming, online gaming, and fast web browsing across multiple devices.

    Equipped with 2 high-gain external antennas, the D-Link R03 offers enhanced Wi-Fi coverage and stable signal strength throughout your space. Whether you're accessing the internet from your living room, bedroom, or home office, this router maintains a strong and reliable wireless connection.

    The R03 Smart Router features advanced security protocols, including WPA/WPA2 encryption, to protect your network from unauthorized access. It also supports multiple SSIDs, allowing you to create separate networks for guests and family members.

    With its easy-to-use web interface and smart app control, managing network settings, monitoring traffic, and configuring parental controls becomes hassle-free. The compact and sleek design makes it easy to place the router anywhere without cluttering your setup.

    Ideal for users seeking affordable, dependable, and user-friendly networking, the D-Link R03 N300 Router is a great choice for uninterrupted internet performance.


    Buy D-Link R03 N300 300Mbps Smart Router from Dear IT Solution

    Purchase the D-Link R03 N300 300Mbps Smart Router at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to enhance your internet experience with stable, fast, and secure Wi-Fi connectivity

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