Search found 1221 matches

by Tomas
Fri Feb 04, 2022 2:22 am
Forum: General
Topic: [Solved] Github Integration
Replies: 1
Views: 5882

Re: [Solved] Github Integration

Hi, you can use our Backup Exporter, it can sync backups from Unimus into a GIT repo.
There is an article on our Blog that shows how to use it: https://blog.unimus.net/unimus-backup-exporter/
by Tomas
Fri Feb 04, 2022 1:57 am
Forum: Beta
Topic: [BETA] 2.2.0 beta release thread
Replies: 3
Views: 12188

Re: [BETA] 2.2.0 beta release thread

We just pushed out 2.2.0-Beta3. This includes the new Device Variables (a new major feature), as well as other fixes. Here is what's new in Beta3: Features: Added option to set UI session timeout (example "-Dserver.servlet.session.timeout=1h") New Device Variables feature for Config Push -...
by Tomas
Wed Feb 02, 2022 1:29 pm
Forum: Automation
Topic: Locating MAC addresses in the network - MikroTik
Replies: 0
Views: 19210

Locating MAC addresses in the network - MikroTik

This is an example of how to find where a particular MAC address is connected to in your network. These scripts can be used to answer the "Which port is this MAC connected to?" question (assuming that port is on a RouterOS device). You can create a Mass Config Push with this preset and tar...
by Tomas
Thu Jan 06, 2022 7:12 pm
Forum: General
Topic: [Solved] why there is support of unify AP
Replies: 1
Views: 7983

Re: [Solved] why there is support of unify AP

Support for UniFi (not just the APs, but all other devices) was actually requested multiple times by our users before we added it. As for why this is useful, each user/network usually has their own requirements and reasons, but here are a few common use-cases I personally have seen. Change managemen...
by Tomas
Wed Dec 29, 2021 5:48 pm
Forum: Beta
Topic: [BETA] 2.2.0 beta release thread
Replies: 3
Views: 12188

Re: [BETA] 2.2.0 beta release thread

We just pushed out 2.2.0-Beta2 with fixes for issues found in Beta1. We will likely release Beta3 with more new features by the end of January, and are looking to push 2.2.0 into a stable GA release by the end of February. Features: Unmanaged devices are now displayed with Italic font in "Backu...
by Tomas
Wed Dec 29, 2021 4:50 pm
Forum: General
Topic: Ubuntu MySQL setup notes
Replies: 4
Views: 13975

Re: Ubuntu MySQL setup notes

Just a few additional notes: -- The above should work for MySQL and MariaDB just fine. In generally we recommend MariaDB, but DB flavor should really not make much difference in a one-off deploy that will be used for Unimus only. -- You probably want to change the default memory allocations for buff...
by Tomas
Mon Dec 20, 2021 5:51 pm
Forum: Feature requests
Topic: [Implemented] Aruba 6.2.1.5 support
Replies: 3
Views: 3439

Re: [Implemented] Aruba 6.2.1.5 support

Just a small update that support for older ArubaOS (such as v6) versions is now available starting with Unimus 2.2.0-Beta1.
by Tomas
Mon Dec 20, 2021 3:07 pm
Forum: Support
Topic: [Solved] Mikrotik Config Push error
Replies: 1
Views: 2614

Re: [Solved] Mikrotik Config Push error

Sorry for the later reply - last week was super busy here with the log4j mess and our 2.2.0-Beta1 release. Example. If I run this push script on a router with no entries in the address list it works fine. ... But if the address list already contains the 172.16.0.0/12 entry Unimus stops running the c...
by Tomas
Mon Dec 20, 2021 2:58 pm
Forum: Automation
Topic: Address list management on MikroTik
Replies: 3
Views: 14569

Re: Address list management on MikroTik

This sweet little script seems to be working as advertised. One question though, is there a way to add a comment to each address as they get added? Sure, here is a modification that includes setting descriptions: :do { # set your list name and addresses desired in the list :local listName "tes...
by Tomas
Sun Dec 19, 2021 7:35 pm
Forum: Support
Topic: [Solved] Ignored data filter not working
Replies: 5
Views: 3004

Re: [Solved] Ignored data filter not working

Hi, the best approach in this case would likely be just to delete the line all together. You can define a "Delete" filter (instead of an "Ignore" filter), with regex like this: (?m)^\h*speed \d+\h*\n This will remove the line if it's present, and do nothing if it's not. This way ...