Archive

Tag Archives of : commands

Send telegram messages from Mikrotik RouterOS

If you are here you probably already know what telegram is. If not you can read about it here. I created a simple script (SendToTelegram) that allows you to send messages to telegram: :global telegramMessage :local botid :local chatid set botid "sdfzgasf7126jwsd7a8s12>" # <- change this set chatid "21156423187"...

gmail configuration for Mikrotik router OS mail

Usually I would say something about the tool that I talk about, but this time a quote from wiki.mikrotik.com (link) will do the job: E-mail tool is the utility that allows to send e-mails from the router. Tool can be used to send regular configuration backups and exports to...

Step by Step: How to configure a PPTP VPN Client on Mikrotik RouterOS

Intro Last time I wrote how to configure a PPTP VPN Server on Mikrotik RouterOS Today I will show you how to configure a PPTP VPN Client on Mikrotik RouterOS. Before we start I will try to explain what I want to do… My home network: 192.168.1.0/24 - Private...

Temporary Disabling Bash History

Let’s assume that you want execute some command that you don’t want in your history (e.g. commands with  passwords), but you don’t want to clear your entire history because of these. all you need to do is to run the following command: unset HISTFILE or HISTFILE=/dev/null this will disable...