Make your router run Scripts!

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ค. 2024
  • Mikrotik routers have their own scripting language and it is incredible what you can do with it.
    help.mikrotik.com/docs/displa...
    0:00 Intro
    1:04 add script
    1:21 script editor
    1:47 variables
    2:01 local-global and :put
    3:12 environment
    3:55 operators and :set
    4:35 conditional statements
    5:05 functions and loops
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 26

  • @qsergii
    @qsergii หลายเดือนก่อน +4

    Debugger is missing! But perfect feature! Thank you!

  • @zactodd3144
    @zactodd3144 หลายเดือนก่อน +5

    Have been scripting for years and finally have some of my questions answered, plus some I didn't know I had.
    Keep up the great work

  • @dhiaahmed5420
    @dhiaahmed5420 หลายเดือนก่อน +2

    very informative tutorial, I wish you could do more videos about scripting 😊

  • @Gooloso98
    @Gooloso98 หลายเดือนก่อน +2

    Ty 🙏 for adding newer methods to fetch. Now I can use cloudflare's API

  • @user-zt1fd9ld7d
    @user-zt1fd9ld7d หลายเดือนก่อน

    Perfect explaining!

  • @Fu86
    @Fu86 หลายเดือนก่อน

    Nice easter egg in the endcard :)

  • @RenzoRosales-sn4vb
    @RenzoRosales-sn4vb หลายเดือนก่อน

    Nice haircut! Great video

  • @achillecisco
    @achillecisco หลายเดือนก่อน

    Nice !!!

  • @olpchk1115
    @olpchk1115 12 วันที่ผ่านมา

    Need more diagnostics and more available events for handling

  • @M4dM1ke
    @M4dM1ke หลายเดือนก่อน

    Nice!

  • @XxSpYxX
    @XxSpYxX หลายเดือนก่อน +1

    I wish scripting and scripts got into the UI

  • @JB-df3ek
    @JB-df3ek หลายเดือนก่อน +1

    What is replacement for RB911-5HacD?

    • @mikrotik
      @mikrotik  หลายเดือนก่อน +2

      L11UG-5HaxD

  • @zenmaster24
    @zenmaster24 หลายเดือนก่อน +1

    can scripts be triggered on events? eg a port gets unplugged/plugged in

    • @mikrotik
      @mikrotik  หลายเดือนก่อน

      Most likely you can use Netwatch as a trigger, but if you want a realtime layer2 trigger, you could create a script that runs a 'while true' loop and parse the interface data on each step.

    • @olpchk1115
      @olpchk1115 12 วันที่ผ่านมา

      @@mikrotik what a waste!

  • @Accountnummer
    @Accountnummer หลายเดือนก่อน

    So, is there also a script to make that when there is one wan-port failing, and a second WAN is ging to work as a failover, to delete all the running connections?

    • @raminrajabioskouei781
      @raminrajabioskouei781 หลายเดือนก่อน +2

      yep

    • @Accountnummer
      @Accountnummer หลายเดือนก่อน

      Thanks guys. But, the issue i got is that when the internet fails over to the 2nd WAN, the connections are not failing over with port 5060 (SIP). I'm looking for a solution for that, and thought this could be an oppurtunity.

    • @jferdom
      @jferdom หลายเดือนก่อน +1

      @@Accountnummer Of course you can do that.. the command to kill the connections would be like this:
      /ip firewall connection remove [ find where dst-address~"^123.123.123.123:" || dst-address~"^231.231.231.231:" ]
      All of this supposing your PBX´s addresses are 123.123.123.123 and 231.231.231.231.
      Now you need to do some checks (with ping, for example) to only execute that at the right time. Wrap it all in a script, schedule it, and enjoy!
      You can search by dst-port instead of dst-address if you wish... Controlling RouterOS via CLI/Scripts is awesome.
      P.S. Mikrotik, please... Implement a DEBUGGER. PLEASE!!

  • @FinlayDaG33k
    @FinlayDaG33k หลายเดือนก่อน +1

    TIL: There is a built-in script editor.

  • @alexhawes-hm3xt
    @alexhawes-hm3xt หลายเดือนก่อน

    instead of showing an example script of multiplying numbers can you show a real world script of internet failover between 2 connections that do not have static addresses please, this is a huge omission from ROS7, i've tried several scripts posted on the internet but nothing works consistently

    • @stevebot
      @stevebot หลายเดือนก่อน +2

      There are too many different failure and failover scenarios for there to be a single solution. At the most basic in your case, you let your WAN interfaces get their IP information and set their default routes, then you make a routing rule to push traffic out the interface you want to be primary and use gateway checking to let the router determine if they are viable and deactivate them as necessary. Good luck, failover is not an easy nut to crack and different failure modes with different carriers behave differently.

    • @alexhawes-hm3xt
      @alexhawes-hm3xt หลายเดือนก่อน

      @@stevebot Thanks, looks like I have some reading to do.
      I do love a good technical challenge but MT would be complete if this was a built-in feature.