返回列表 發帖

【RouterOS】—— Scripting

本帖最後由 角色 於 2014-12-29 01:24 編輯

因为想分析log file里的信息,所以不想再Windows里做,而在RouterOS里自己做,看看是否能成功。

资源:
http://wiki.mikrotik.com/wiki/Manual:Scripting
http://wiki.mikrotik.com/wiki/Scripts
http://wiki.mikrotik.com/wiki/Manual:Scripting-examples

RouterOS (old version)
https://www.mikrotik.com/documentation

In particular V2.9
https://www.mikrotik.com/testdocs/ros/2.9

TOP

本帖最後由 角色 於 2014-12-28 14:51 編輯

How to run the script in folder "/file"?
  1. /import file-name=sample.rsc
複製代碼
Or simply
  1. /import sample.rsc
複製代碼

TOP

本帖最後由 角色 於 2014-12-28 19:46 編輯

How to read a file:

http://forum.mikrotik.com/viewtopic.php?f=9&t=64659
http://wiki.mikrotik.com/wiki/Us ... dd_IP_Address_Lists

TOP

How to remove a global variable
  1. /system script environment print
複製代碼
  1. /system remove (the number in the above print)
複製代碼

TOP

In order to master the scripting techniques, we have to learn how to save a line operation and assign the result to a global variable.

http://wiki.mikrotik.com/wiki/Manual:Console

TOP

返回列表