Why? It is useful to have both textual and binary backups since the textual backup (without sensitive data, such as passwords) can be read by a human to understand the router configuration, while ...
Mikrotik - Automate Backups
Mikrotik - Mutiple SSID with CAPsMAN
Pre-requisites The ports on the switches where the APs are to be connected, should be configured with the following VLANs: VLAN 6 (HOME): not tagged VLAN 12 (HOME-Guest): tagged Quickset Mode In...
Mikrotik - Configure cAP
Requirements Requirements are to have two WiFi networks, one with SSID HOME and connected to the Home VLAN (6), and a guest WiFI network, with SSID HOME-Guest and connected to the Guest VLAN (12)....
Linux - Install Fail2ban
Installation First, install Fail2ban using apt: sudo apt update sudo apt install fail2ban Configuration The default Fail2ban installation comes with two configuration files, /etc/fail2ban/jail...
Linux - Check Services
This script is to check if a service is running. If not, restarts the service and send an email to a specific recipient. Preparing the script First of make an executable bash script: touch chec...
Proxmox - Remove a Node from PVE Cluster
Introduction These are the steps to remove a node from an existing Proxmox cluster. Warning: This tutorial may only be used if you want to delete permanently a node from an existing Proxmox cl...
Linux - Install WordPress
Installation Lets start by creating MySQL user and a database for WordPress: mysql -u root -p mysql> CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; mysql> ...
Linux - Install Certbot
Installation Install Certbot’s Apache package with apt: sudo apt install certbot Configuration Now use Certbot to obtain the SSL certificate: sudo certbot --apache -d your_domain -d www.your_...
Linux - Install phpMyAdmin
Installation Use apt to install phpMyAdmin and additional complimentary packages: sudo apt update sudo apt install phpmyadmin php-mbstring php-gettext This will ask you a few questions in order...
Linux - Install PHP
Installation Use apt to install PHP. In addition, include some helper packages this time so that PHP code can run under the Apache server and talk to your MySQL database: sudo apt install php lib...