Close Menu
    Facebook X (Twitter) Instagram Threads
    Trending
    • Rii TU3607 iPad Keyboard Case Review: Dream or Heavy Burden?
    • PrivadoVPN Review 2026: Does the Free Tier Still Work for Streaming?
    • Rii 518BT Review: Is This Pocket Keyboard Actually Usable?
    • Rii RK807 Pro Review: The Best Budget Apple Magic Keyboard Alternative?
    • Rii RK808 Review: The Best Foldable Travel Keyboard?
    • Rii RS201 Review: $69 16-Inch Portable Monitor Tested
    • AliExpress Promo Codes: August 2026 (100% Verified)
    • Orange Pi 6 Review: Is It Suitable for Running Local LLMs? We Checked.
    AndroidPIMP
    Facebook X (Twitter) Instagram
    • Mini PCs & Media Players
    • Embedded Computers
    • Wearables
    • Wireless Routers
    • Edge AI Cameras Vision Hardware
    • Tech Accessories
    AndroidPIMP
    Secure OpenWrt Router
    Secure OpenWrt Router

    How to Go Anonymous Online and Secure Your Home Network with OpenWrt Router

    0
    By androidpimp on April 9, 2020 DIY Projects & Tutorials, Best Deals
    Table of contents
    1. OpenWrt Router Setup
    2. Recommended Luci Apps
      1. Adblock service
      2. Tools for network diagnosis like traceroute and ping
      3. E2Guardian
    3. CloudShark Network Analysis
      1. Capturing packets from an OpenWrt appliance.
      2. VnStat Traffic Analyzer
      3. Quality of Service
      4. ClamAV Antivirus
    4. Samba
    5. TOR – Surf Anonymous Online
      1. Privoxy configuration

    OpenWrt Router Setup

    A Guide to How to Securely Remote Work From Home with OpenWrt

    In this quick guide, we will discuss a few recommended services that you can run and manage through OpenWrt LuCI Web Interface that are worth installing on your device, which will bring value and extra security-related features.

    OpenWrt is a completely free popular Linux operating system that offers plenty of packages containing services that can be used in your router or loaded through your NanoPi R2S SBC when setting up a home or office network.

    In addition to OpenWrt’s advanced firewall settings, you can also find a few packages that can help prevent malware and spam on your network. So let’s start with our top list recommendations.


    Recommended Luci Apps

    Adblock service

    OpenWrt offers a simple AdBlock service you can install in your router or SBC (Single board computer). with this service, you can block malicious content, and add specific domains to a Whitelist and Blocklist.

    To install the relevant packages you can go to System-> software and install the following packages:

    • adblock
    • luci-app-simple-adblock
    • luci-app-adblock

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install adblock luci-app-adblock luci-app-adblock

    After installing the above packages you will find it under:

    Services-> Simple AdBlock

    OpenWrt AdBlock
    OpenWrt AdBlock

    Tools for network diagnosis like traceroute and ping

    To install the relevant package you can go to System-> software and install the following package:

    luci-app-freifunk-diagnostics

    or install the package in CLI (Command Line) Mode:

    opkg update
    opkg install luci-app-freifunk-diagnostics

    After installing the above packages you will find it under:

    Network-> Diagnostics

    OpenWrt Diagnostics
    OpenWrt Diagnostics

    E2Guardian

    E2guardian is a web content filter that can work in proxy, transparent, or icap server modes.

    To install the relevant package you can go to System-> software and install the following package:

    • e2guardian
    • luci-app-e2guardian

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install e2guardian luci-app-e2guardian

    After installing the above packages you will find it under:

    Services-> E2Guardian

    OpenWrt EGuardian
    OpenWrt E2Guardian

    CloudShark Network Analysis

    Capturing packets from an OpenWrt appliance.

    This service can be used to configure the router to sniff packets to/from monitored devices on the device running the Wireshark app.

    To install the relevant package you can go to System-> software and install the following package:

    • tcpdump
    • luci-app-cshark
    • cshark

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install cshark luci-app-cshark

    After installing the above packages you will find it under:

    Networks-> CloudShark

    OpenWrt CloudShark
    OpenWrt CloudShark

    VnStat Traffic Analyzer

    vnStat is a console-based network traffic monitor for Linux and BSD that keeps a log of network traffic for the selected interface(s). It uses the network interface statistics provided by the kernel as an information source.

    To install the relevant package you can go to System-> software and install the following package:

    • vnstat
    • luci-app-vnstat
    • luci-app-cshark

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install vnstat luci-app-vnstat luci-app-cshark

    After installing the above packages you will find them under:

    Status-> VnSat Traffic Monitor

    OpenWrt VnStat
    OpenWrt VnStat

    Quality of Service

    It stands for Quality of Service, simply how efficiently the bandwidth could be used to improve network quality and minimize network latency.  It also ensures a fair portion of bandwidth is always available for critical applications.

    To install the relevant package you can go to System-> software and install the following package:

    luci-app-qos

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install clamav luci-app-clamav calmsmtp

    After installing the above packages you will find it under:

    Network-> SQM QoS

    OpenWrt QoS
    OpenWrt QoS

    ClamAV Antivirus

    CalmVB is an open-source antivirus engine for detecting trojans, viruses, malware & other malicious threats.

    To install the relevant package you can go to System-> software and install the following package:

    • clamav
    • luci-app-clamav
    • freshclam
    • clamsmtp

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install clamav luci-app-clamav calmsmtp

    After installing the above packages you will find it under:

    Services-> CalmAV

    OpenWrt CalmAV
    OpenWrt CalmAV

    Samba

    Samba is an open-source software suite that runs on Unix/Linux-based platforms but is able to communicate with Windows clients like a native application. So Samba is able to provide this service by employing the Common Internet File System (CIFS).

    To install the relevant package you can go to System-> software and install the following package:

    • kmod-usb-storage
    • block-mount
    • samba36-server
    • luci-app-samba

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install luci-app-samba samba36-server block-mount kmod-usb-storage
    OpenWrt Samaba
    OpenWrt Samaba

    TOR – Surf Anonymous Online

    In this example, Privoxy is used as a proxy server.

    TOR (The Onion Router) is software that allows users to browse the Web anonymously. Developed by the Tor Project, a nonprofit organization.

    Privoxy (Privacy Enhancing Proxy) is a popular web proxy with advanced filtering options to protect privacy. Privoxy is of course also under the GPL license and is included in the package lists of many Linux distributions.

    To install all relevant packages you can go to System-> software and install the following package:

    • libpcre
    • privoxy
    • luci-app-privoxy

    or install the packages in CLI (Command Line) Mode:

    opkg update
    opkg install libpcre privoxy luci-app-privoxy

    Privoxy configuration

    The remaining settings are made in the OpenWRT web interface, in which Privoxy was automatically integrated during the installation.

    In the “Access Control” tab, the IP address of the proxy server is now defined (more normally the IP address of the router) and the port used (Privoxy standard port = 8118). Furthermore, the network must be specified, which may later use the proxy.

    Listen to addresses192.168.0.1:8118
    Permit access192.168.0.0/24
    Toggle statusA
    Enable remote toggleA
    Enable remote toggle via HTTPOut
    Enable action file editorA
    Enforce page blockingOut

    It continues in the “Forwarding” tab. Here the SOCKS5 forwarding to the TOR service is set up with the standard port 9050. Slash and dot are relevant and must be adopted.

    Forward SOCKS 5/ 127.0.0.1:9050.

    Now go to the “Miscellaneous” tab.

    Accept intercepted requestsA
    Allow CGI request crunchingOut
    Split large formsOut
     Tolerate pipeliningOut
    Connection sharingOut
    Handle as empty doc returns okOut
    Enable compressionOut

    Finally, the configuration is saved and applied with “Save & Apply”.

    Finished. Now you can enter the OpenWRT router as a proxy on your clients in the LAN and surf anonymously via the TOR network.

    Proxy address in this example192.168.0.1:8118
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleHuskyLens by DFRobot Unveils AI Video Camera Capable of Deep Learning
    Next Article Top 13 Windows Security Apps for Cyber Attacks Protection
    androidpimp
    • Website

    Related Posts

    AliExpress Hot Deals

    AliExpress Promo Codes: August 2026 (100% Verified)

    August 17, 2026
    AliExpress Single day Coupons

    AliExpress Shopping Guide 2026: How to Find Top Deals & Avoid Scams

    February 10, 2026
    DHgate new Discount Global Promo Codes 2025

    DHgate Global Promo Codes 2026: Unlock Amazing Deals Today!

    March 9, 2025
    0 0 votes
    Article Rating
    Subscribe
    Notify of
    0 Comments
    Oldest
    Newest Most Voted
    Categories
    PureVPN
    PureVPN Ad Banner
    PrivadoVPN – No. 1 in Parental Control
    PrivadoVPN 350x437
    Recent Posts
    • Rii TU3607 iPad Keyboard Case Review: Dream or Heavy Burden?
    • PrivadoVPN Review 2026: Does the Free Tier Still Work for Streaming?
    • Rii 518BT Review: Is This Pocket Keyboard Actually Usable?
    • Rii RK807 Pro Review: The Best Budget Apple Magic Keyboard Alternative?
    • Rii RK808 Review: The Best Foldable Travel Keyboard?
    • Rii RS201 Review: $69 16-Inch Portable Monitor Tested
    • AliExpress Promo Codes: August 2026 (100% Verified)
    • Orange Pi 6 Review: Is It Suitable for Running Local LLMs? We Checked.
    • Youyeetoo NestDisk Mini PC/Router: Is This Pocket-Sized 3-in-1 NAS Worth It?
    • DFRobot Unveils seeMote Cube: A 6DoF Physical Controller for Apple Vision Pro
    RSS feed: The Latest RSS Feeds The Latest RSS Feeds
    • Rii TU3607 iPad Keyboard Case Review: Dream or Heavy Burden?
    • PrivadoVPN Review 2026: Does the Free Tier Still Work for Streaming?
    • Rii 518BT Review: Is This Pocket Keyboard Actually Usable?
    Facebook X (Twitter) Instagram Pinterest
    @2026 - All Right Reserved. Designed by AndroidPIMP

    Type above and press Enter to search. Press Esc to cancel.

    wpDiscuz