Search found 5 matches

by bommi
Wed Dec 07, 2022 8:37 pm
Forum: Automation
Topic: [Solved] Uploading big files using API
Replies: 4
Views: 12231

Re: Uploading big files using API

I found a solution for my issue! Please find my quick and dirty backup script to verify this procedure: #!/bin/bash # Convert the original backup file into a bas64 file: base64 -w 0 backup-file > base64-backup-file # Surround the base64 data with the json structure: awk 'FNR==1 {print "{\"...
by bommi
Tue Dec 06, 2022 10:36 pm
Forum: Automation
Topic: [Solved] Uploading big files using API
Replies: 4
Views: 12231

Re: Uploading big files using API

I created a simplified backup script like this: #!/bin/bash encodedbackup=$(base64 -w 0 pcs-binary.conf) testbackup=$(base64 -w 0 test-backup.conf) curl -s -H "Accept: application/json" -H "Content-type: application/json" -H "Authorization: Bearer MYSECRETAPITOKEN" -d '...
by bommi
Tue Dec 06, 2022 9:06 pm
Forum: Automation
Topic: [Solved] Uploading big files using API
Replies: 4
Views: 12231

[Solved] Uploading big files using API

Hi! I am currently trying to implement the API backup like described here: https://blog.unimus.net/automating-mikrotik-swos-with-unimus-a-how-to-guide/ For smaller files everything is ok, but in my case I need to send binary files which are quite big. In my case the file is 55 megabytes, but in my c...
by bommi
Tue Feb 08, 2022 9:30 pm
Forum: Feature requests
Topic: Support for Checkpoint and Cisco Ironport
Replies: 5
Views: 4710

Re: Support for Checkpoint and Cisco Ironport

Thank you for your fast answer!
Should I create a seperate ticket per platform or one ticket for both?
by bommi
Tue Feb 08, 2022 9:16 pm
Forum: Feature requests
Topic: Support for Checkpoint and Cisco Ironport
Replies: 5
Views: 4710

Support for Checkpoint and Cisco Ironport

Hi! the company I work for is currently searching for a new config backup tool. Almost all of our currently used network vendors are supported by unimus except the following: Checkpoint Firewalls / Checkpoint Smartcenter Cisco IronPort (E-Mailsecurity Gateway) What does it need, to be able to also s...