Community discussions

MikroTik App

Search found 4 matches

by marcelosantos
Thu Apr 06, 2017 10:27 pm
Forum: Scripting
Topic: Complete DELPHI API client: update 4
Replies: 69
Views: 51397

Re: Complete DELPHI API client: update 4

True, I spent so much time trying to do with script that I did not think of using logic in delphi

Thank's
by marcelosantos
Wed Apr 05, 2017 5:47 pm
Forum: Scripting
Topic: Complete DELPHI API client: update 4
Replies: 69
Views: 51397

Re: Complete DELPHI API client: update 4

Hello, I have the following need I need to print / list all my PPP secrets that are not online I can list all the names with the code /ppp/secret/print =.proplist=name The answer at the exit is !re=name=marcelo !re=name=xxxxxx .... I can't do is get these names and search with the following script :...
by marcelosantos
Tue Apr 04, 2017 1:11 pm
Forum: Scripting
Topic: PPPoE Script
Replies: 1
Views: 1204

Re: PPPoE Script

Explaining better

In place of the "m" I would like to put all the names of the secrets

And if you have not been connected save to a list and then show
by marcelosantos
Tue Apr 04, 2017 4:21 am
Forum: Scripting
Topic: PPPoE Script
Replies: 1
Views: 1204

PPPoE Script

Hello I'm trying to make a script that lists all the "PPPoE Secrets" that are not connected. Starting from this script :global list ""; :foreach i in [/ppp active find] do={:if ([:find \ [/ppp active get $i name] "m"]=0) do={:set list ($list . "," . $i);}}; \ ...