Close Menu
  • Home
  • About
  • Wearables
  • Earbuds
  • Computer Accessories
    • Routers
    • Remotes
  • Embedded
    • Single Board Computers
    • Addon Boards
    • Raspberry Pi
  • Wireless Routers
  • Contact
Facebook X (Twitter) Instagram
Trending News
  • LattePanda IOTA Review: 4 Reasons This Tiny Intel SBC Outperforms RPi 5
  • Up to 60% Off AliExpress Mega Promo Codes List | October 2025 Deals
  • Xiaomi 17 Pro Max vs iPhone 17 Pro Max: Specs, Price & Honest Review
  • Premium Budget RGB Gaming Keyboard 2025? Rii RK805 Full Review
  • Orange Pi AI Studio / Pro launched Globally, Rivaling Nvidia Jetson Orin Nano
  • Banana Pi BPI-R4 Pro: Wi-Fi 7 Router with 10G SFP+ Ports Released
  • Orange Pi 4 Pro RISC-V SBC Debuts with Allwinner SoC and WiFi 6 Support
  • Orange Pi 6 Plus 12-core ARM board Official Details & Prices released
AndroidPIMP
Facebook X (Twitter) Instagram
  • Home
  • About
  • Wearables
  • Earbuds
  • Computer Accessories
    • Routers
    • Remotes
  • Embedded
    • Single Board Computers
    • Addon Boards
    • Raspberry Pi
  • Wireless Routers
  • Contact
AndroidPIMP
Uncategorized

Remote working due to coronavirus? Harden Your Security with OpenWrt

By androidpimpMarch 20, 2020Updated:January 12, 2025No Comments9 Mins Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
Follow Us
Google News Flipboard
Coronavirus vpn secure OpenWrt
Coronavirus vpn secure OpenWrt
Table of contents
  1. Remote working due to coronavirus? Harden Home Security with OpenWrt
  2. Main Specifications
    1. Method 1
    2. Configuring Ivacy VPN Service through CLI
    3. (Command-line Setup).
      1. root@OpenWrt:~# opkg updateroot@OpenWrt:~# opkg install  package
      2. Method 2
      3. Configuring Ivacy VPN Service through LUCI Web Interface
    4. Installing OpenVPN Client Packages
    5. Downloading OpenVPN Configuration Files
    6. Creating a login file
    7. Connect to the router and upload configuration files:
    8. Configuring OpenVPN Client
    9. Configuration category: Services
    10. Configuration category: Networking
    11. Configuration category: VPN
    12. Configuration category: Cryptography
    13. Configure the interface
    14. Configure the firewall
    15. Connect to Ivacy
  3. Ivacy VPN Service

Remote working due to coronavirus? Harden Home Security with OpenWrt

Having a secure network is becoming a real necessity with the recent pandemic outbreak of the coronavirus when a large portion of the population has to work remotely and securely from home. Especially for this purpose, it’s becoming a real necessity building a very low-cost firewall device for both indoors and outdoor usage.

OpenWrt is a Linux operating system targeting embedded devices. It’s an open software-based solution that is totally free and easy to configure, even for non-geeks. If you already have a router that already was OpenWrt pre-installed, it will make things a lot more simple.

With an OpenWrt device, you can configure your firewall, VPN accounts, block advertisements, block external hacking and malware attacks, and much more. For SBC (Single-board computers) users its highly recommend buying a cheap board based on a low power based on the Allwinner SoC, such as the NanoPi R2S that features a pair of ethernet ports and is very compact in size. You can burn the FriendlyWrt (OpenWrt) image on a Micro-SD card and update it online or install newer images.

Buying an SBC has a lot of advantages. It can be carried in a suitcase or even a small pocket and use it anywhere while traveling abroad. On top of that, it can be used as a gateway device to bridge between your desktop computer and your existing router, adding an extra layer of security when working on untrusted local networks. In this short tutorial, we will be configuring Ivacy’s VPN service to run OpenVPN through OpenWrt installed on a router.


Buy It Now on AliExpress!


Main Specifications

  • Model Number: WR330
  • Software: OpenWrt 18.06 FW
  • Standard: IEEE 802.11 b/g/n/ac
  • Antenna: 2 x 3dBi Fixed Antenna
  • External Storage support: 1 x USB
  • Fast Ethernet: 4 Gigabit Ethernet ports.
  • CPU: MTK MT7621A 880MHz+MT7603E+MT7612E
  • Memory & Storage: DDR3 128MB, FLASH 16MB

Data rate:

  • 2.4GHz 802.11n up to 300 Mbps
  • 5GHz 802.11 as up to 867 Mbps
Ports:
  • RJ45 for 10/100/1000/Gigabits BaseT for WAN x 1
  • RJ45 for 10/100/1000/Gigabits BaseT for LAN x 4
  • USB2.0 x 1
  • Power input x 1
  • Reset button x 1
  • WPS x 1
Ivacy Config OpenWrt Router

Method 1

Configuring Ivacy VPN Service through CLI

(Command-line Setup).

Connecting to the Router via SSH Connection

Download puTTY from here: Click Here

Launch puTTY,

Host Name: your router’s IP (192.168.1.1 unless you changed it)
Port: 22
Connection type: SSH

Click “Open”

login as: “root”
enter your router’s password

Ivacy OpenVPN PuTTY

Updating the package repository & installing OpenVPN

root@OpenWrt:~# opkg update
root@OpenWrt:~# opkg install  package

Packages to install:

6in4 luci-proto-ipv6
openvpn-easy-rsa
luci-app-openvpn
install openvpn-openssl
install ip-full

Creating the interface configuration file

Interface configuration:

root@OpenWrt:~# cat >> /etc/config/network << EOF
config interface ‘Ivacy’
option ifname ‘eth0’
option proto ‘none’
EOF

Creating an Authentication Login file

Adding username & password:

root@OpenWrt:~# cat >> /etc/openvpn/userpass.txt << EOF

Your_Ivacy_Username
Your_Ivacy_Password
EOF

Selecting a Server

Now you can select a preferred server based on geographic location. You can also use the PING command to pick the best server based on packet transfer speed response, measured in milliseconds. Having said that, There are two types of ports you can pick. UDP and TCP ports, where UDP is the ideal and the best option for streaming applications. If your connection purpose is to unlock Netflix access Its highly recommended picking a server from the following seven regions: US, France, Japan, UK, Australia, Germany & Canada.

  • Ivacy Servers list: https://support.ivacy.com/servers-list/
  • For this tutorial, we selected server: usil1-ovpn-udp.ivacy.net

Ivacy VPN servers list (A partial list)  

Ivacy VPN Servers List

Creating an OpenVPN configuration file

root@OpenWrt:~# cat >> /etc/config/openvpn << EOF

config openvpn ‘Ivacy’
option client ‘1’
option dev ‘tun’
option proto ‘udp’
option resolv_retry ‘infinite’
option nobind ‘1’
option persist_key ‘1’
option persist_tun ‘1’
option user ‘nobody’
option ca ‘/etc/openvpn/ca.crt’
option cert ‘/etc/openvpn/client.crt’
option key ‘/etc/openvpn/client.key’
option compress ‘lzo’
option verb ‘3’
list remote ‘usil1-ovpn-udp.ivacy.net’
option port ’53’
option auth_user_pass ‘/etc/openvpn/userpass.txt’
option auth ‘SHA1’
option cipher ‘AES-256-CBC’
option tls_auth ‘/etc/openvpn/Wdc.key’
option tls_client ‘1’
option enabled ‘1’
option dev_type ‘tun’
option float ‘1’
EOF

Creating the CA (Certificate Authority) file

root@OpenWrt:~#  cat >> /etc/openvpn/ca.crt << EOF

—–BEGIN CERTIFICATE—–
MIIEnzCCA4egAwIBAgIBAzANBgkqhkiG9w0BAQsFADCBqDELMAkGA1UEBhMCSEsx
EDAOBgNVBAgTB0NlbnRyYWwxCzAJBgNVBAcTAkhLMRgwFgYDVQQKEw9TZWN1cmUt
U2VydmVyQ0ExCzAJBgNVBAsTAklUMRgwFgYDVQQDEw9TZWN1cmUtU2VydmVyQ0Ex
GDAWBgNVBCkTD1NlY3VyZS1TZXJ2ZXJDQTEfMB0GCSqGSIb3DQEJARYQbWFpbEBo
b3N0LmRvbWFpbjAeFw0xNjAxMTUxNjE1MzhaFw0yNjAxMTIxNjE1MzhaMIGdMQsw
CQYDVQQGEwJISzEQMA4GA1UECBMHQ2VudHJhbDELMAkGA1UEBxMCSEsxFjAUBgNV
BAoTDVNlY3VyZS1DbGllbnQxCzAJBgNVBAsTAklUMRYwFAYDVQQDEw1TZWN1cmUt
Q2xpZW50MREwDwYDVQQpEwhjaGFuZ2VtZTEfMB0GCSqGSIb3DQEJARYQbWFpbEBo
b3N0LmRvbWFpbjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAxsnyn4v6xxDP
nuDaYS0b9M1N8nxgg7OBPBlK+FWRxdTQ8yxt5U5CZGm7riVp7fya2J2iPZIgmHQE
v/KbxztsHAVlYSfYYlalrnhEL3bDP2tY+N43AwB1k5BrPq2s1pPLT2XG951drDKG
4PUuFHUP1sHzW5oQlfVCmxgIMAP8OYkCAwEAAaOCAV8wggFbMAkGA1UdEwQCMAAw
LQYJYIZIAYb4QgENBCAWHkVhc3ktUlNBIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAd
BgNVHQ4EFgQU9MwUnUDbQKKZKjoeieD2OD5NlAEwgd0GA1UdIwSB1TCB0oAU456i
jsFrYnzHBShLAPpOUqQ+Z2ehga6kgaswgagxCzAJBgNVBAYTAkhLMRAwDgYDVQQI
EwdDZW50cmFsMQswCQYDVQQHEwJISzEYMBYGA1UEChMPU2VjdXJlLVNlcnZlckNB
MQswCQYDVQQLEwJJVDEYMBYGA1UEAxMPU2VjdXJlLVNlcnZlckNBMRgwFgYDVQQp
Ew9TZWN1cmUtU2VydmVyQ0ExHzAdBgkqhkiG9w0BCQEWEG1haWxAaG9zdC5kb21h
aW6CCQDI1xaHqObkpTATBgNVHSUEDDAKBggrBgEFBQcDAjALBgNVHQ8EBAMCB4Aw
DQYJKoZIhvcNAQELBQADggEBAFyFo2VUX/UFixsdPdK9/Yt6mkCWc+XS1xbapGXX
b9U1d+h1iBCIV9odUHgNCXWpz1hR5Uu/OCzaZ0asLE4IFMZlQmJs8sMT0c1tfPPG
W45vxbL0lhqnQ8PNcBH7huNK7VFjUh4szXRKmaQPaM4S91R3L4CaNfVeHfAg7mN2
m9Zn5Gto1Q1/CFMGKu2hxwGEw5p+X1czBWEvg/O09ckx/ggkkI1NcZsNiYQ+6Pz8
DdGGX3+05YwLZu94+O6iIMrzxl/il0eK83g3YPbsOrASARvw6w/8sOnJCK5eOacl
21oww875KisnYdWjHB1FiI+VzQ1/gyoDsL5kPTJVuu2CoG8=
—–END CERTIFICATE—–
EOF

Creating an OpenVPN static key (TLS) file

root@OpenWrt:~# cat >> /etc/openvpn/Wdc.key << EOF

# 2048 bit OpenVPN static key
—–BEGIN OpenVPN Static key V1—–
e30af995f56d07426d9ba1f824730521
d4283db4b4d0cdda9c6e8759a3799dcb
7939b6a5989160c9660de0f6125cbb1f
585b41c074b2fe88ecfcf17eab9a33be
1352379cdf74952b588fb161a93e13df
9135b2b29038231e02d657a6225705e6
868ccb0c384ed11614690a1894bfbeb2
74cebf1fe9c2329bdd5c8a40fe882062
4d2ea7540cd79ab76892db51fc371a3a
c5fc9573afecb3fffe3281e61d72e915
79d9b03d8cbf7909b3aebf4d90850321
ee6b7d0a7846d15c27d8290e031e951e
19438a4654663cad975e138f5bc5af89
c737ad822f27e19057731f41e1e254cc
9c95b7175c622422cde9f1f2cfd3510a
dd94498b4d7133d3729dd214a16b27fb
—–END OpenVPN Static key V1—–
EOF

Starting OpenVPN Service

root@OpenWrt:~# service openvpn start


Method 2

Configuring Ivacy VPN Service through LUCI Web Interface

Installing OpenVPN Client Packages

First, connect to LUCI (the interface on your router) by going through your browser. By default, your router should have the IP address 192.168.1.1.

Login as root using your regular password for the router. Navigate to System → Software and click on Update lists.

Under Download and install package, search for the following packages:

6in4 luci-proto-ipv6
openvpn-easy-rsa
luci-app-openvpn
install openvpn-openssl
install ip-full

 Press OK on each of them to download and install them.

OpenWrt Packages Update

Downloading OpenVPN Configuration Files

From Ivacy website listed below:

If you are setting a router / SBC you need to download and extract the following zip file OpenVPN-Configs.zip which contains Openvpn configuration files:

DD-WRT / Linux / Android / iOS Click Here to Download File

     These are the files needed to configure Ivacy VPN:

  • ca.crt (Certificate Authority).
  • Wdc.key (Secret Key).
  • Secure-client.key -> renamed to client.key
  • Secure-client.crt  -> renamed to client.crt
  • United States-Chicago-UDP (server configuration file used as reference).

OpenVPN-Configs.zip content     

Ivacy VPN OpenVPN configs.jpg

Creating a login file

SSH with your ROOT account via PuTTY or other SSH clients to your router / SBC IP address: 192.168.1.1

Using “TextPad” or similar create a new text file and put your user-name in the first line and your pass in the second line and save it as “userpass.txt“. Make sure you choose UNIX file format when saving!!

userpass.txt file content:

Your_Ivacy_Username
Your_Ivacy_Password

Connect to the router and upload configuration files:

  1. Next, download WinSCP from here: Click untrustedopen, softwareHere
  2. Launch WinSCP.
Ivacy OpenVPN WinSCP

Enter the following settings and information:

Hostname: your router’s IP (it’s 192.168.1.1 unless you changed it)
Port number: 22
User Name: root
Password: your password to your router
Private key file: just leave it blank
File protocol: SCP

Click “Login” (Ignore the error about user groups.)

3. Using WinSCP transfer your files to /etc/openvpn directory of your router.

  • ca.crt
  • client.crt
  • client.key
  • userpass.txt

Configuring OpenVPN Client

Configuration category: Services

Navigate to Configuration category: Service

Type the name of the OpenVPN instance (e.g. Ivacy). Select Client configuration for a router multi-client VPN and click Add.

Ivacy openvpn client

 Finally, Click on the Save button.

Ivacy OpenVPN Client

Click on the Edit button next to the Ivacy client name you just created.


Next, click on the dropdown that says ‘— Additional Field–‘ at the bottom and add the following options listed in the table below:

verb3
port53
dev_typetun
nobindShould be selected
clientShould be selected
remoteusil1-ovpn-udp.ivacy.net
ca/etc/openvpn/ca.crt
cert/etc/openvpn/client.crt
key/etc/openvpn/client.key
protoudp
Ivacy OpenVPN Client

Finally, Click on the Save button.


  1. Next, click on Switch to advanced configuration. Note the new default main subcategory of menu items will be Service.
  2. Uploading OpenVPN Configuration Files: Point each file in the folder one by one where you extracted the OpenVPN-Configs.zip.

         Make sure the settings are as followed:

verb 3
mlock Should not be selected
disable_occ Should not be selected
passtos Should not be selected
suppress_timestamps Should not be selected
fast_io Should not be selected
down_pre
Should not be selected
up_restart Should not be selected
client_disconnect Should not be selected
Ivacy OpenVPN Client Advanced

Finally, Click on the Save button.

Configuration category: Networking

  • Click on the dropdown that says ‘— Additional Field–‘ at the bottom of the page and add the following settings:
port53
devtun
dev_typetun
nobindShould be selected
floatShould be selected
persiste-keyShould be selected
persiste-tunShould be selected
Ivacy OpenVPN Client Networking

Finally, Click on the Save button.

Configuration category: VPN

  • Click on the dropdown that says ‘— Additional Field–‘ at the bottom of the page. Select ‘auth_user_pass’ and click on ‘Add’.
ClientShould be selected
auth_user_pass/etc/openvpn/userpass.txt
remoteusil1-ovpn-udp.ivacy.net
remote_randomShould not be selected
 protoudp
http_proxy_retryShould not be selected
resolv_retryinfinite
Ivacy OpenVPN Client VPN

Finally, Click on the Save button.

Configuration category: Cryptography

Click on the dropdown that says — Additional Field– at the bottom of the page. Make sure the settings are as followed:

Ivacy OpenVPN Client Crypto

Finally, Click on the Save & Apply button.

Configure the interface

Navigate to Networking → Interfaces. Click on Add new interface.

Make sure the settings are as followed:

Name of the new interface Ivacy
The protocol of the new interface Unmanaged
Cover the following interface Custom interface: tun
Ivacy OpenVPN Interface

The final result:

Ivacy OpenVPN Interface

Finally, Click Submit


Next, Navigate to Advanced Settings. Make sure the settings are as followed:

Bring up on boot Should be selected
Use builtin IPv6-management Should be selected
Ivacy OpenVPN Interface

Click on the Save & Apply button


Next, Navigate to Firewall Settings.

In the field unspecified -or- create a field, write: ovpn_fw and press the enter key.

Ivacy OpenVPN Interface

Finally, Click on the Save & Apply button.

Configure the firewall

Navigate to Networking → Firewall. Find ovpn_fw in the list of interfaces and click on Edit.

Ivacy OpenVPN Firewall zones

                        Make sure the following settings are applied:

Input reject
Output accept
Forward reject
Masquerading Should be selected
MSS clamping Should be selected

Click on the Save & Apply button.

Scroll down to Inter-Zone Forwarding. Select Allow forward from source zones: lan

Covered networks Should be selected Ivacy
Allow forward from source lan
Forwardreject

Finally, Click on the Save & Apply button.

Connect to Ivacy

Go back to LUCI (the interface on your router) by going through your browser. Navigate to Services → OpenVPN.

Make sure Enabled is selected for the OVPN profile and then click on Save & Apply. Click Start.

After a few seconds, a connection should be established. If you successfully connected to the server, you should see the following:

Ivacy OpenVPN Service

Ivacy VPN Service

Ivacy VPN service offers a very reasonable value for the buck plans, as well as good and intuitive software clients across all mobile devices, including browser add-ons for chrome and firefox. If you are searching for a low-cost VPN to access Netflix, Ivacy service is one of the cheapest VPN providers out there worth considering.

[wptb id="55611" not found ]

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
Previous ArticleXunlong unveil Orange Pi 4 Set 6 Kit with 4G Connectivity Support
Next Article HuskyLens by DFRobot Unveils AI Video Camera Capable of Deep Learning
androidpimp
  • Website

Related Posts

Banana Pi R4 NIC extension board kit is now officially available!

April 13, 2025

2025 Black Friday Usenet Deals & Holiday Specials | Giganews

November 8, 2024
VyprVPN WireGuard

Is WireGuard really fast?VyprVPN Speed Test Benchmarking

June 11, 2020
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Categories
PureVPN
PureVPN Ad Banner
VyprVPN – No. 1 in Anonymity
Vyprvpn 350x260
PrivadoVPN – No. 1 in Parental Control
PrivadoVPN 350x437
Recent Posts
  • LattePanda IOTA Review: 4 Reasons This Tiny Intel SBC Outperforms RPi 5
  • Up to 60% Off AliExpress Mega Promo Codes List | October 2025 Deals
  • Xiaomi 17 Pro Max vs iPhone 17 Pro Max: Specs, Price & Honest Review
  • Premium Budget RGB Gaming Keyboard 2025? Rii RK805 Full Review
  • Orange Pi AI Studio / Pro launched Globally, Rivaling Nvidia Jetson Orin Nano
  • Banana Pi BPI-R4 Pro: Wi-Fi 7 Router with 10G SFP+ Ports Released
  • Orange Pi 4 Pro RISC-V SBC Debuts with Allwinner SoC and WiFi 6 Support
  • Orange Pi 6 Plus 12-core ARM board Official Details & Prices released
  • POCO F8 Ultra: First Leaks Reveal Flagship-Beating Specs, Design & Expected 2025 Launch
  • Redmi Pad 2 Review (2025): The Best Budget Tablet Value? Full Review
  • Orange Pi 600 specs revealed: A compact Intel PC built into a keyboard, featuring an Intel N150 processor
  • Xiaomi 17 series debuts: Aiming to rival the iPhone 17?
  • Orange Pi Mini PC featuring Cixin P1 SoC is gearing up for launch.
  • Poco X8 Ultra & Poco X8 Pro Release date Just Around the Corner Following EEC Certification
  • Orange Pi X debuts with Intel N100/N150 processor, offering an affordable x86 SBC.
  • Orange Pi AI Ultra SBC with Qualcomm QC8550 is coming soon
  • ELEBAO B10 Intel Powered NAS Mini PC features X4 NVMe slots with Dual 2.5GbE
  • Banana Pi BPI-R4 Lite: An Affordable R4 Router Board Variant is now available!
  • PrivadoVPN Review 2025: Is It Good for Streaming & Privacy?
RSS Recent RSS Feed
  • LattePanda IOTA Review: 4 Reasons This Tiny Intel SBC Outperforms RPi 5 October 7, 2025
  • Up to 60% Off AliExpress Mega Promo Codes List | October 2025 Deals October 6, 2025
  • Xiaomi 17 Pro Max vs iPhone 17 Pro Max: Specs, Price & Honest Review October 5, 2025
  • Premium Budget RGB Gaming Keyboard 2025? Rii RK805 Full Review October 3, 2025
  • Orange Pi AI Studio / Pro launched Globally, Rivaling Nvidia Jetson Orin Nano October 2, 2025
Facebook X (Twitter) Instagram Pinterest
@2025 - All Right Reserved. Designed by AndroidPIMP

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

Accessibility
Accessibility modes
Epilepsy Safe Mode
Dampens color and removes blinks
This mode enables people with epilepsy to use the website safely by eliminating the risk of seizures that result from flashing or blinking animations and risky color combinations.
Visually Impaired Mode
Improves website's visuals
This mode adjusts the website for the convenience of users with visual impairments such as Degrading Eyesight, Tunnel Vision, Cataract, Glaucoma, and others.
Cognitive Disability Mode
Helps to focus on specific content
This mode provides different assistive options to help users with cognitive impairments such as Dyslexia, Autism, CVA, and others, to focus on the essential elements of the website more easily.
ADHD Friendly Mode
Reduces distractions and improve focus
This mode helps users with ADHD and Neurodevelopmental disorders to read, browse, and focus on the main website elements more easily while significantly reducing distractions.
Blindness Mode
Allows using the site with your screen-reader
This mode configures the website to be compatible with screen-readers such as JAWS, NVDA, VoiceOver, and TalkBack. A screen-reader is software for blind users that is installed on a computer and smartphone, and websites must be compatible with it.
Readable Experience
Content Scaling
Default
Text Magnifier
Readable Font
Dyslexia Friendly
Highlight Titles
Highlight Links
Font Sizing
Default
Letter Spacing
Default
Left Aligned
Center Aligned
Right Aligned
Visually Pleasing Experience
Dark Contrast
Light Contrast
Monochrome
High Contrast
High Saturation
Low Saturation
Adjust Text Colors
Adjust Title Colors
Adjust Background Colors
Easy Orientation
Mute Sounds
Hide Images
Hide Emoji
Reading Guide
Stop Animations
Reading Mask
Highlight Hover
Highlight Focus
Big Dark Cursor
Big Light Cursor
Cognitive Reading
Virtual Keyboard
Navigation Keys
Voice Navigation

AndroidPIMP

Accessibility Statement

  • www.androidpimp.com
  • October 8, 2025

Compliance status

We firmly believe that the internet should be available and accessible to anyone, and are committed to providing a website that is accessible to the widest possible audience, regardless of circumstance and ability.

To fulfill this, we aim to adhere as strictly as possible to the World Wide Web Consortium’s (W3C) Web Content Accessibility Guidelines 2.1 (WCAG 2.1) at the AA level. These guidelines explain how to make web content accessible to people with a wide array of disabilities. Complying with those guidelines helps us ensure that the website is accessible to all people: blind people, people with motor impairments, visual impairment, cognitive disabilities, and more.

This website utilizes various technologies that are meant to make it as accessible as possible at all times. We utilize an accessibility interface that allows persons with specific disabilities to adjust the website’s UI (user interface) and design it to their personal needs.

Additionally, the website utilizes an AI-based application that runs in the background and optimizes its accessibility level constantly. This application remediates the website’s HTML, adapts Its functionality and behavior for screen-readers used by the blind users, and for keyboard functions used by individuals with motor impairments.

If you’ve found a malfunction or have ideas for improvement, we’ll be happy to hear from you. You can reach out to the website’s operators by using the following email

Screen-reader and keyboard navigation

Our website implements the ARIA attributes (Accessible Rich Internet Applications) technique, alongside various different behavioral changes, to ensure blind users visiting with screen-readers are able to read, comprehend, and enjoy the website’s functions. As soon as a user with a screen-reader enters your site, they immediately receive a prompt to enter the Screen-Reader Profile so they can browse and operate your site effectively. Here’s how our website covers some of the most important screen-reader requirements, alongside console screenshots of code examples:

  1. Screen-reader optimization: we run a background process that learns the website’s components from top to bottom, to ensure ongoing compliance even when updating the website. In this process, we provide screen-readers with meaningful data using the ARIA set of attributes. For example, we provide accurate form labels; descriptions for actionable icons (social media icons, search icons, cart icons, etc.); validation guidance for form inputs; element roles such as buttons, menus, modal dialogues (popups), and others. Additionally, the background process scans all the website’s images and provides an accurate and meaningful image-object-recognition-based description as an ALT (alternate text) tag for images that are not described. It will also extract texts that are embedded within the image, using an OCR (optical character recognition) technology. To turn on screen-reader adjustments at any time, users need only to press the Alt+1 keyboard combination. Screen-reader users also get automatic announcements to turn the Screen-reader mode on as soon as they enter the website.

    These adjustments are compatible with all popular screen readers, including JAWS and NVDA.

  2. Keyboard navigation optimization: The background process also adjusts the website’s HTML, and adds various behaviors using JavaScript code to make the website operable by the keyboard. This includes the ability to navigate the website using the Tab and Shift+Tab keys, operate dropdowns with the arrow keys, close them with Esc, trigger buttons and links using the Enter key, navigate between radio and checkbox elements using the arrow keys, and fill them in with the Spacebar or Enter key.Additionally, keyboard users will find quick-navigation and content-skip menus, available at any time by clicking Alt+1, or as the first elements of the site while navigating with the keyboard. The background process also handles triggered popups by moving the keyboard focus towards them as soon as they appear, and not allow the focus drift outside it.

    Users can also use shortcuts such as “M” (menus), “H” (headings), “F” (forms), “B” (buttons), and “G” (graphics) to jump to specific elements.

Disability profiles supported in our website

  • Epilepsy Safe Mode: this profile enables people with epilepsy to use the website safely by eliminating the risk of seizures that result from flashing or blinking animations and risky color combinations.
  • Visually Impaired Mode: this mode adjusts the website for the convenience of users with visual impairments such as Degrading Eyesight, Tunnel Vision, Cataract, Glaucoma, and others.
  • Cognitive Disability Mode: this mode provides different assistive options to help users with cognitive impairments such as Dyslexia, Autism, CVA, and others, to focus on the essential elements of the website more easily.
  • ADHD Friendly Mode: this mode helps users with ADHD and Neurodevelopmental disorders to read, browse, and focus on the main website elements more easily while significantly reducing distractions.
  • Blindness Mode: this mode configures the website to be compatible with screen-readers such as JAWS, NVDA, VoiceOver, and TalkBack. A screen-reader is software for blind users that is installed on a computer and smartphone, and websites must be compatible with it.
  • Keyboard Navigation Profile (Motor-Impaired): this profile enables motor-impaired persons to operate the website using the keyboard Tab, Shift+Tab, and the Enter keys. Users can also use shortcuts such as “M” (menus), “H” (headings), “F” (forms), “B” (buttons), and “G” (graphics) to jump to specific elements.

Additional UI, design, and readability adjustments

  1. Font adjustments – users, can increase and decrease its size, change its family (type), adjust the spacing, alignment, line height, and more.
  2. Color adjustments – users can select various color contrast profiles such as light, dark, inverted, and monochrome. Additionally, users can swap color schemes of titles, texts, and backgrounds, with over seven different coloring options.
  3. Animations – person with epilepsy can stop all running animations with the click of a button. Animations controlled by the interface include videos, GIFs, and CSS flashing transitions.
  4. Content highlighting – users can choose to emphasize important elements such as links and titles. They can also choose to highlight focused or hovered elements only.
  5. Audio muting – users with hearing devices may experience headaches or other issues due to automatic audio playing. This option lets users mute the entire website instantly.
  6. Cognitive disorders – we utilize a search engine that is linked to Wikipedia and Wiktionary, allowing people with cognitive disorders to decipher meanings of phrases, initials, slang, and others.
  7. Additional functions – we provide users the option to change cursor color and size, use a printing mode, enable a virtual keyboard, and many other functions.

Browser and assistive technology compatibility

We aim to support the widest array of browsers and assistive technologies as possible, so our users can choose the best fitting tools for them, with as few limitations as possible. Therefore, we have worked very hard to be able to support all major systems that comprise over 95% of the user market share including Google Chrome, Mozilla Firefox, Apple Safari, Opera and Microsoft Edge, JAWS and NVDA (screen readers).

Notes, comments, and feedback

Despite our very best efforts to allow anybody to adjust the website to their needs. There may still be pages or sections that are not fully accessible, are in the process of becoming accessible, or are lacking an adequate technological solution to make them accessible. Still, we are continually improving our accessibility, adding, updating and improving its options and features, and developing and adopting new technologies. All this is meant to reach the optimal level of accessibility, following technological advancements. For any assistance, please reach out to

wpDiscuz