Community discussions

MikroTik App

Search found 14 matches

by Gesuino
Mon Mar 13, 2023 6:36 pm
Forum: General
Topic: Open VPN server on CHR trouble with 7.8
Replies: 7
Views: 2448

Re: Open VPN server on CHR trouble with 7.8

Same here, downgrading to 7.7 work again.
by Gesuino
Mon Feb 03, 2020 2:05 pm
Forum: Scripting
Topic: Telegram BlackVS modified script V2
Replies: 2
Views: 6299

Re: Telegram BlackVS modified script V2

Hi, great script i use or globally on my chr.
Someone know a way to send a variable trough command $tgSendMessage text="test $variable"
It give me a syntax error if I try to insert.
by Gesuino
Mon Jan 27, 2020 7:38 pm
Forum: Scripting
Topic: Is possible triggering script by telegram bot?
Replies: 3
Views: 3111

Re: Is possible triggering script by telegram bot?

Did you try to search the forum first? There are many examples. If it's not what you are looking for, explain in more detail what you need. Hi maybe I can't explain well. In the forum (and Google) I find only info for sending text from mikrotik to telegram bot, one way communication. I need to comm...
by Gesuino
Mon Jan 27, 2020 2:52 pm
Forum: Scripting
Topic: Is possible triggering script by telegram bot?
Replies: 3
Views: 3111

Is possible triggering script by telegram bot?

Hi guys i find info only about send message from Mikrotik to Telegram, you know a working method for start routeros script by a telegram bot? My desire is create a button for telegram bot like "Query devices status" Mikrotik receive the command and run a script that do some thing. For now ...
by Gesuino
Thu Nov 07, 2019 6:13 pm
Forum: The Dude
Topic: Dude v6/v7 - Feature request list
Replies: 109
Views: 157498

Re: Dude v6 - Feature request list

Hi, can be precious a system for triggering scripts on server for user map events. An option in map settings with a multiple choises for example action: (you select voices "Adding device" -> on-event-script: (and a box for script) in this way you open a world, i can add a device manually i...
by Gesuino
Wed Oct 02, 2019 2:16 pm
Forum: Scripting
Topic: How to grab via ssh a value
Replies: 3
Views: 2632

Re: How to grab via ssh a value

Use API instead of SSH.
Hi thanks for your answer.
Is possible to use API from a RouterOS machine to another Routeros machine?
by Gesuino
Mon Sep 30, 2019 3:17 pm
Forum: Scripting
Topic: How to grab via ssh a value
Replies: 3
Views: 2632

How to grab via ssh a value

Hi guys. I need a way to have a remote value on a local variable, i have ssh configured with public keys, no password required from machine1 to machine2 :global Status ([/system ssh-exec address=10.50.0.243 user=admin-ssh command=":put [/system identity get \"name\"]" as-value]->...
by Gesuino
Mon Sep 30, 2019 1:58 pm
Forum: Scripting
Topic: Help with function
Replies: 0
Views: 2172

Help with function

Hi guys, i am trying to learn funcion for simplify some of my autoprovisioning script, having some trouble for remote ssh output interpretation. This is an example: /foreach aDev in=[/ppp secret find comment="Autoprovisioning"] do={ #Funcion :global aIP [/ppp secret get $aDev "remote-...
by Gesuino
Mon Sep 02, 2019 1:37 pm
Forum: Scripting
Topic: Delete profile in ppp secret last logged out older than 1 Month
Replies: 3
Views: 3016

Re: Delete profile in ppp secret last logged out older than 1 Month

Hi thanks for your answer, i tried the script on page but it seems can't process output of /ppp secret get last-logged-out very well, so i modified this with my needs:
https://wiki.mikrotik.com/wiki/Expire_u ... er_of_days.
by Gesuino
Mon Aug 19, 2019 12:08 pm
Forum: Scripting
Topic: Delete profile in ppp secret last logged out older than 1 Month
Replies: 3
Views: 3016

Delete profile in ppp secret last logged out older than 1 Month

Hi guys, need a help. I need a script for deleting older profile in /ppp secret for clients that haven't connected for one month. I dont understand how to processing "latest logged out" value, it is not simple: put [ppp secret get [find name=mgmt] last-logged-out] aug/16/2019 12:10:58 <-Ho...
by Gesuino
Fri Jul 26, 2019 9:11 pm
Forum: General
Topic: Feature request for v7.x
Replies: 296
Views: 107587

Re: Feature request for v7.x

Hi please improve dude settings from cli, i love routeros scripting language. I need some instrument for auto adding devices to graphical map, in routeros style like: /dude network-maps rescan "home" that can be triggered by scripts; /dude device add name=" " ip-address =" &...
by Gesuino
Fri Jul 26, 2019 8:53 pm
Forum: Scripting
Topic: Subtract from get given IP
Replies: 3
Views: 3004

Re: Subtract from get given IP

Thanks for your answer after many attempt i have found a solution. If you do an addiction to variable +0 is ok, then you can subtract without problems.
Here an example
:set $IP ($IP+0); :set $IP ($IP-1)
by Gesuino
Tue Jun 18, 2019 12:19 pm
Forum: General
Topic: PCQ and hotspot, It is possible?
Replies: 1
Views: 1078

PCQ and hotspot, It is possible?

Hi guys, i have a client that have an hotspot radius system, radius is used only for ok or ko no queue limitations. I know the speed incoming from wan (30-DWN / 3-UP) want to equalize entire subnet (10.5.50.0/24) like a normal lan with pcq. I done this: /queue simple add max-limit=3M/30M name=EQ que...
by Gesuino
Mon Jan 21, 2019 5:39 pm
Forum: Scripting
Topic: Subtract from get given IP
Replies: 3
Views: 3004

Subtract from get given IP

Hi, i have this problem:
/global IP [/ip neighbor get number=0 address]; :set "$IP" ($IP-1);
Script Error: cannot substract string from time interval
But it work if i set IP variable manually, there is a way to subtract an ip address given by print or get command?

Thanks