Tutorial

Block Ads Through Mikrotik Firewall Raw

To combat disruptive ads while browsing the internet, you can simply add the following list and rules to your Mikrotik router. Firstly, add the following address list: /ip firewall address-list add address=analytics.google.com list=Ads add address=clientmetrics-pa.googleapis.com list=Ads add address=google-analytics.com list=Ads add address=googleadservices.com list=Ads add address=googlesyndication.com list=Ads add address=l.google.com list=Ads add address=adservices.google.com list=Ads add address=wintricksbanner.googlepages.com list=Ads add

Block Ads Through Mikrotik Firewall Raw Read More »

Script Mikrotik with static IP for client without DHCP server and only allows internet access to clients with assigned IP

To configure a MikroTik router to allow only specific devices with assigned static IP addresses to access the internet, you can create a script that assigns static IP addresses to clients and only allows internet access to clients with assigned IPs. Below is an example script that you can use as a starting point: #

Script Mikrotik with static IP for client without DHCP server and only allows internet access to clients with assigned IP Read More »

Mikrotik load balance with 3 ISP, 2 ISP with ECMP and 1 ISP for static routing

Configuring load balancing with MikroTik for three ISPs, where two ISPs use Equal-Cost Multi-Path (ECMP) and the third ISP employs static routing, involves a combination of routing policies and firewall rules. Below is a general guide to help you set up this scenario. Note that specific details may vary based on your network architecture and

Mikrotik load balance with 3 ISP, 2 ISP with ECMP and 1 ISP for static routing Read More »

Script Mikrotik Collection part 1 (with alaphabet A)

Anti Hack Protected BootLoader – MikroTik Script RouterOS The way this script works is simple but smart, this script will monitor anyone who intends to activate the Mirotik Protected Bootloader, it will be detected immediately and the router will automatically shutdown immediately, when the router is turned on again, all the Protected Bootloader settings will

Script Mikrotik Collection part 1 (with alaphabet A) Read More »

Mikrotik Ninja, Hide MikroTik device from Internet Service Provider (ISP)

Hiding a MikroTik device from an Internet Service Provider (ISP) or concealing it from a Wide Area Network (WAN) is a crucial consideration for MikroTik users. Outside the network, numerous bots engage in WAN scanning to target unprotected devices. It is imperative to employ a firewall on your MikroTik device. However, if you have compelling

Mikrotik Ninja, Hide MikroTik device from Internet Service Provider (ISP) Read More »

Install wordpress using remote mysql database

SETUP REMOTE MYSQL SERVER Let ip address of mysql server is 192.168.33.12 and ip address of wordpress server is 192.168.33.11 sudo apt update sudo apt install mysql-server sudo mysql_secure_installation sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf Add items shown below… bind-address = 192.168.33.12 mysqlx-bind-address = 192.168.33.12 require_secure_transport=ON # The following values assume you have at least 32M ram [mysqld]

Install wordpress using remote mysql database Read More »

Implementing DNS-over-HTTPS (DoH) with Google DNS on MikroTik

As internet privacy and security concerns grow, the use of DNS-over-HTTPS (DoH) has gained popularity as a means of encrypting DNS queries and protecting user data. MikroTik routers, known for their versatility and powerful networking capabilities, allow users to implement DoH with popular DNS providers like Google DNS. In this article, we’ll guide you through

Implementing DNS-over-HTTPS (DoH) with Google DNS on MikroTik Read More »

Building a Running Text Clock with Arduino in 24-Hour Format

Introduction Creating a clock with a running text display using an Arduino is a fun and educational project. In this tutorial, we will guide you through the process of building a 24-hour format clock that displays the time in a scrolling text format. By the end of this project, you’ll have a unique and functional

Building a Running Text Clock with Arduino in 24-Hour Format Read More »

Scroll to Top