Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tecno-consultores/mtk-tools
Scripts to backup routeros and perform other activities such as changing the password for a capsman SSID and generating its QR, includes fprobe and nfdump.
https://github.com/tecno-consultores/mtk-tools
acl backup capsman docker-image mikrotik qrcode routeros scripts security-tools
Last synced: about 15 hours ago
JSON representation
Scripts to backup routeros and perform other activities such as changing the password for a capsman SSID and generating its QR, includes fprobe and nfdump.
- Host: GitHub
- URL: https://github.com/tecno-consultores/mtk-tools
- Owner: tecno-consultores
- License: gpl-2.0
- Created: 2024-12-08T22:47:57.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-17T19:59:19.000Z (19 days ago)
- Last Synced: 2025-01-17T20:36:07.829Z (19 days ago)
- Topics: acl, backup, capsman, docker-image, mikrotik, qrcode, routeros, scripts, security-tools
- Language: Shell
- Homepage: https://hub.docker.com/r/sinfallas/mtk-tools
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# mtk-tools
Scripts to backup routeros and perform other activities such as changing the password for a capsman SSID and generating its QR. includes fprobe and nfdump.
# change SSID password and generate QR image.
First place the information necessary in the **qr-env** file, then mount the folder that contains said file as a volume in /app.
```bash
docker run -it --rm --name qr --pull always --env-file ./qr-env --volume ./:/app sinfallas/mtk-tools:latest capsmanqr
```# change ACL for wifi.
First place the information necessary in the **acl-env** and **maclist.txt** files, then mount the folder that contains said file as a volume in /app.
```bash
docker run -it --rm --name acl --pull always --env-file ./acl-env --volume ./:/app sinfallas/mtk-tools:latest capsmanacl
```# backup RouterOS
First place the information necessary in the **mtkback-env** file, then mount the folder that contains said file as a volume in /app.
```bash
docker run -it --rm --name backup --pull always --env-file ./mtkback-env --volume ./:/app sinfallas/mtk-tools:latest mtkback
```# Run Sara: RouterOS Security Inspector (https://github.com/casterbyte/Sara)
First place the your **.rsc** file, then mount the folder that contains said file as a volume in /app.
```bash
docker run -it --rm --name mtk-tools --pull always --volume ./:/app sinfallas/mtk-tools:latest sara --config-file example.rsc
```